diff --git a/docs/frontend/tailwind-css.md b/docs/frontend/tailwind-css.md new file mode 100644 index 00000000..e7745280 --- /dev/null +++ b/docs/frontend/tailwind-css.md @@ -0,0 +1,313 @@ +# Tailwind CSS Build Guide + +**Version:** 1.0 +**Last Updated:** December 2024 +**Audience:** Frontend Developers + +--- + +## Overview + +The platform uses [Tailwind CSS](https://tailwindcss.com/) for styling with a **dual-layer architecture**: + +1. **Base Layer (CDN):** Tailwind CSS v2.2.19 loaded via CDN with local fallback +2. **Override Layer (npm build):** Custom Windmill Dashboard theme built from Tailwind v1.4.6 + +This layered approach allows: +- Fast loading via CDN for base utilities +- Custom theme extensions (colors, dark mode, forms) via npm build +- Offline support via local fallback + +> **Note:** A migration to Tailwind v3.4 is planned. See [Migration Plan](tailwind-migration-plan.md). + +--- + +## Architecture + +### How It Works + +``` +Browser loads: +1. CDN Tailwind 2.2.19 (base utilities) + └── Fallback: static/shared/css/tailwind.min.css + +2. Custom tailwind.output.css (overrides/extensions) + └── Built from: static/admin/css/tailwind.css + └── Contains: Windmill Dashboard theme, custom colors, dark mode +``` + +### Key Files + +| File | Version | Purpose | +|------|---------|---------| +| CDN `tailwindcss@2.2.19` | 2.2.19 | Base Tailwind utilities | +| `static/shared/css/tailwind.min.css` | 2.2.19 | Local fallback for CDN | +| `tailwind.config.js` | 1.4.6 | Custom build configuration | +| `static/admin/css/tailwind.css` | - | Source file with directives | +| `static/admin/css/tailwind.output.css` | 1.4.6 | Compiled custom styles | +| `static/vendor/css/tailwind.output.css` | 1.4.6 | Compiled custom styles | + +### Template Loading Order + +```html + + + + + +``` + +See [CDN Fallback Strategy](cdn-fallback-strategy.md) for details on offline support. + +--- + +## How Tailwind Purging Works + +Tailwind generates thousands of utility classes. To keep the CSS file small, it "purges" (removes) unused classes by scanning your source files. + +### Content Paths + +The `purge.content` array in `tailwind.config.js` tells Tailwind where to look for class usage: + +```javascript +purge: { + content: [ + 'public/**/*.html', + 'app/templates/**/*.html', // Jinja2 templates + 'static/**/*.js', // Alpine.js components + ], + // ... +} +``` + +### Safelist + +Some classes are used dynamically in Alpine.js expressions and can't be detected by scanning. These must be added to the `safelist`: + +```javascript +purge: { + content: [...], + safelist: [ + 'bg-orange-600', + 'bg-green-600', + 'bg-red-600', + 'hover:bg-orange-700', + 'hover:bg-green-700', + 'hover:bg-red-700', + ], +} +``` + +**When to add to safelist:** + +- Classes used in Alpine.js `:class` bindings with dynamic conditions +- Classes constructed from variables (e.g., `bg-${color}-500`) +- Classes used only in JavaScript, not in HTML templates + +--- + +## Building Tailwind CSS + +### Prerequisites + +Install Node.js dependencies (one-time setup): + +```bash +npm install +``` + +Or using Make: + +```bash +make npm-install +``` + +### Development Build + +For development, build without purging (includes all classes, larger file): + +```bash +# Build admin CSS +npm run tailwind:admin + +# Build vendor CSS +npm run tailwind:vendor + +# Or using Make +make tailwind-dev +``` + +### Production Build + +For production, build with purging and minification (smaller file): + +```bash +npm run build + +# Or using Make +make tailwind-build +``` + +--- + +## Available npm Scripts + +| Script | Command | Description | +|--------|---------|-------------| +| `npm run tailwind:admin` | Build admin CSS (dev) | Fast, includes all classes | +| `npm run tailwind:vendor` | Build vendor CSS (dev) | Fast, includes all classes | +| `npm run build:admin` | Build admin CSS (prod) | Purged and minified | +| `npm run build:vendor` | Build vendor CSS (prod) | Purged and minified | +| `npm run build` | Build all (prod) | Runs both production builds | + +--- + +## Adding New Utility Classes + +If you need a class that doesn't exist in the compiled CSS: + +### Option 1: Check if it's being purged + +The class might exist but is being removed. Add it to the `safelist` in `tailwind.config.js`: + +```javascript +safelist: [ + 'your-new-class', + // ... +] +``` + +### Option 2: Extend the theme + +Add custom values to `tailwind.config.js`: + +```javascript +theme: { + extend: { + colors: { + 'brand': '#123456', + }, + spacing: { + '128': '32rem', + }, + }, +} +``` + +### Option 3: Rebuild CSS + +After any config change, rebuild the CSS: + +```bash +make tailwind-dev +``` + +--- + +## Troubleshooting + +### Classes not appearing + +1. **Check purge paths** - Ensure your file is in a scanned directory +2. **Check safelist** - Dynamic classes need to be safelisted +3. **Rebuild CSS** - Run `make tailwind-dev` after config changes + +### Dynamic classes in Alpine.js + +**Problem:** Classes in `:class` bindings may be purged. + +```html + +
+``` + +**Solution:** Add to safelist: + +```javascript +safelist: ['bg-green-600', 'bg-red-600'] +``` + +### Large CSS file in development + +Development builds include all Tailwind classes (~1.2MB). This is normal. + +Production builds purge unused classes, resulting in much smaller files (~50-100KB typically). + +--- + +## Configuration Reference + +### tailwind.config.js Structure + +```javascript +module.exports = { + // Where to scan for class usage + purge: { + content: [...], + safelist: [...], + }, + + // Theme customization + theme: { + // Override defaults + colors: {...}, + + // Extend defaults + extend: { + fontFamily: {...}, + maxHeight: {...}, + }, + }, + + // Variant configuration (hover, focus, dark mode, etc.) + variants: { + backgroundColor: ['hover', 'focus', 'dark', 'dark:hover'], + textColor: ['hover', 'dark'], + // ... + }, + + // Plugins + plugins: [ + require('tailwindcss-multi-theme'), + require('@tailwindcss/custom-forms'), + ], +} +``` + +### Dark Mode + +The platform uses `tailwindcss-multi-theme` for dark mode. Dark mode classes use the `.theme-dark` parent selector: + +```css +/* Light mode */ +.bg-white { ... } + +/* Dark mode */ +.theme-dark .dark\:bg-gray-800 { ... } +``` + +--- + +## Best Practices + +1. **Always rebuild after config changes** + ```bash + make tailwind-dev + ``` + +2. **Add dynamic classes to safelist** to prevent purging + +3. **Use production builds for deployment** to minimize file size + +4. **Check existing classes first** before adding custom ones - Tailwind likely has what you need + +5. **Use consistent color scales** (e.g., `purple-600`, `purple-700`) for hover states + +--- + +## Related Documentation + +- [Frontend Overview](overview.md) +- [UI Components](shared/ui-components.md) +- [Tailwind CSS Official Docs](https://tailwindcss.com/docs) diff --git a/docs/frontend/tailwind-migration-plan.md b/docs/frontend/tailwind-migration-plan.md new file mode 100644 index 00000000..1af20a47 --- /dev/null +++ b/docs/frontend/tailwind-migration-plan.md @@ -0,0 +1,361 @@ +# Tailwind CSS Migration Plan: v1.4/v2.2 → v3.4 + +**Created:** December 2024 +**Status:** Planned +**Estimated Time:** 2-3 hours + +--- + +## Current State + +### Two Tailwind Setups + +| Component | Version | Source | Purpose | +|-----------|---------|--------|---------| +| Base styles | 2.2.19 | CDN + local fallback | Core Tailwind utilities for all frontends | +| Custom overrides | 1.4.6 | npm build | Windmill Dashboard theme (admin/vendor) | + +### Current Files + +``` +package.json # tailwindcss: 1.4.6 +tailwind.config.js # v1.4 format config +static/shared/css/tailwind.min.css # CDN fallback (v2.2.19) +static/admin/css/tailwind.output.css # Built overrides +static/vendor/css/tailwind.output.css # Built overrides +``` + +### Current Plugins + +```json +{ + "@tailwindcss/custom-forms": "0.2.1", // DEPRECATED in v3 + "tailwindcss-multi-theme": "1.0.3" // May not work with v3 +} +``` + +--- + +## Migration Goals + +1. Upgrade npm Tailwind to v3.4.x (latest stable) +2. Upgrade CDN Tailwind to v3.4.x +3. Update local fallback file +4. Replace deprecated plugins +5. Update config to v3 format +6. Verify all frontends work correctly + +--- + +## Step-by-Step Migration + +### Phase 1: Backup Current State + +```bash +# Create backup branch +git checkout -b backup/tailwind-v1.4 +git add -A +git commit -m "Backup before Tailwind v3 migration" +git checkout master + +# Create migration branch +git checkout -b feat/tailwind-v3-upgrade +``` + +### Phase 2: Update npm Dependencies + +```bash +# Remove old packages +npm uninstall tailwindcss tailwindcss-multi-theme @tailwindcss/custom-forms + +# Install new packages +npm install -D tailwindcss@latest postcss@latest autoprefixer@latest +npm install -D @tailwindcss/forms @tailwindcss/typography + +# Verify versions +npm list tailwindcss +``` + +**Expected versions:** +- tailwindcss: ^3.4.x +- postcss: ^8.4.x +- autoprefixer: ^10.4.x + +### Phase 3: Update tailwind.config.js + +Replace the entire config file: + +```javascript +// tailwind.config.js - Tailwind CSS v3.4 +/** @type {import('tailwindcss').Config} */ +module.exports = { + // v3: 'content' replaces 'purge' + content: [ + 'app/templates/**/*.html', + 'static/**/*.js', + ], + + // v3: safelist for dynamic classes + safelist: [ + 'bg-orange-600', + 'bg-green-600', + 'bg-red-600', + 'hover:bg-orange-700', + 'hover:bg-green-700', + 'hover:bg-red-700', + // Add any other dynamic classes used in Alpine.js + ], + + // v3: darkMode replaces tailwindcss-multi-theme + darkMode: 'class', // or 'media' for OS preference + + theme: { + extend: { + // Custom colors from Windmill Dashboard + colors: { + gray: { + 50: '#f9fafb', + 100: '#f4f5f7', + 200: '#e5e7eb', + 300: '#d5d6d7', + 400: '#9e9e9e', + 500: '#707275', + 600: '#4c4f52', + 700: '#24262d', + 800: '#1a1c23', + 900: '#121317', + }, + purple: { + 50: '#f6f5ff', + 100: '#edebfe', + 200: '#dcd7fe', + 300: '#cabffd', + 400: '#ac94fa', + 500: '#9061f9', + 600: '#7e3af2', + 700: '#6c2bd9', + 800: '#5521b5', + 900: '#4a1d96', + }, + // Add other custom colors as needed + }, + fontFamily: { + sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'], + }, + maxHeight: { + 'xl': '36rem', + }, + }, + }, + + plugins: [ + require('@tailwindcss/forms'), // Replaces @tailwindcss/custom-forms + require('@tailwindcss/typography'), // Optional: for prose content + ], +} +``` + +### Phase 4: Update CSS Source File + +Update `static/admin/css/tailwind.css`: + +```css +/* Tailwind CSS v3 directives */ +@tailwind base; +@tailwind components; +@tailwind utilities; + +/* Custom component classes if needed */ +@layer components { + .form-input { + @apply block w-full rounded-md border-gray-300 shadow-sm + focus:border-purple-500 focus:ring-purple-500; + } + + .form-select { + @apply block w-full rounded-md border-gray-300 shadow-sm + focus:border-purple-500 focus:ring-purple-500; + } + + .form-checkbox { + @apply rounded border-gray-300 text-purple-600 + focus:ring-purple-500; + } +} +``` + +### Phase 5: Update postcss.config.js + +```javascript +// postcss.config.js +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + ...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {}) + } +} +``` + +### Phase 6: Update package.json Scripts + +```json +{ + "scripts": { + "tailwind:admin": "npx tailwindcss -i static/admin/css/tailwind.css -o static/admin/css/tailwind.output.css", + "tailwind:vendor": "npx tailwindcss -i static/admin/css/tailwind.css -o static/vendor/css/tailwind.output.css", + "tailwind:watch": "npx tailwindcss -i static/admin/css/tailwind.css -o static/admin/css/tailwind.output.css --watch", + "build:admin": "npx tailwindcss -i static/admin/css/tailwind.css -o static/admin/css/tailwind.output.css --minify", + "build:vendor": "npx tailwindcss -i static/admin/css/tailwind.css -o static/vendor/css/tailwind.output.css --minify", + "build": "npm run build:admin && npm run build:vendor" + } +} +``` + +### Phase 7: Update Dark Mode Implementation + +**Old approach (tailwindcss-multi-theme):** +```html + +
+``` + +**New approach (Tailwind v3 native):** +```html + +
+``` + +**Files to update:** +1. `app/templates/admin/base.html` - Change `theme-dark` to `dark` +2. `app/templates/vendor/base.html` - Change `theme-dark` to `dark` +3. `static/admin/js/init-alpine.js` - Update dark mode toggle logic +4. `static/vendor/js/init-alpine.js` - Update dark mode toggle logic + +**JavaScript update example:** +```javascript +// Old +document.body.classList.toggle('theme-dark'); + +// New +document.documentElement.classList.toggle('dark'); +``` + +### Phase 8: Update CDN and Local Fallback + +**Option A: Use Tailwind Play CDN (development only)** +```html + +``` + +**Option B: Build and serve locally (recommended for production)** + +Since Tailwind v3 doesn't have a pre-built CDN CSS file (it's JIT-only), the recommended approach is: + +1. Remove CDN loading from templates +2. Load only the built `tailwind.output.css` +3. Include all needed utilities in your build + +**Update base templates:** +```html + + + + + + +``` + +### Phase 9: Build and Test + +```bash +# Install dependencies +npm install + +# Build CSS +npm run tailwind:admin +npm run tailwind:vendor + +# Start development server +make dev + +# Test all frontends: +# - http://localhost:8000/admin/dashboard +# - http://localhost:8000/vendor/{code}/dashboard +# - http://localhost:8000/ (shop) +``` + +### Phase 10: Verify Checklist + +- [ ] Admin dashboard loads correctly +- [ ] Vendor dashboard loads correctly +- [ ] Shop frontend loads correctly +- [ ] Dark mode toggle works +- [ ] All buttons have correct colors +- [ ] Forms display correctly (inputs, selects, checkboxes) +- [ ] Responsive design works (mobile/tablet/desktop) +- [ ] No console errors +- [ ] Production build works (`npm run build`) + +--- + +## Breaking Changes Reference + +### Class Name Changes (v2 → v3) + +| v2.x | v3.x | Notes | +|------|------|-------| +| `overflow-ellipsis` | `text-ellipsis` | Renamed | +| `flex-grow-0` | `grow-0` | Shortened | +| `flex-shrink-0` | `shrink-0` | Shortened | +| `decoration-clone` | `box-decoration-clone` | Renamed | + +### Plugin Changes + +| Old Plugin | New Plugin | Notes | +|------------|------------|-------| +| `@tailwindcss/custom-forms` | `@tailwindcss/forms` | Complete rewrite | +| `tailwindcss-multi-theme` | Built-in `darkMode: 'class'` | Native support | + +### Config Changes + +| v1.x/v2.x | v3.x | +|-----------|------| +| `purge: [...]` | `content: [...]` | +| `variants: {...}` | Removed (JIT generates all) | +| `mode: 'jit'` | Default (not needed) | + +--- + +## Rollback Plan + +If issues arise: + +```bash +# Switch back to backup branch +git checkout backup/tailwind-v1.4 + +# Or reset changes +git checkout master +git reset --hard HEAD~1 +``` + +--- + +## Post-Migration Tasks + +1. Update `docs/frontend/tailwind-css.md` with v3 information +2. Update `docs/frontend/cdn-fallback-strategy.md` (or remove CDN references) +3. Remove `static/shared/css/tailwind.min.css` if no longer needed +4. Update any documentation referencing old class names +5. Consider adding Tailwind IntelliSense VS Code extension config + +--- + +## Resources + +- [Tailwind CSS v3 Upgrade Guide](https://tailwindcss.com/docs/upgrade-guide) +- [Tailwind CSS v3 Documentation](https://tailwindcss.com/docs) +- [@tailwindcss/forms Plugin](https://github.com/tailwindlabs/tailwindcss-forms) +- [Dark Mode in Tailwind v3](https://tailwindcss.com/docs/dark-mode) diff --git a/package.json b/package.json new file mode 100644 index 00000000..8a639a72 --- /dev/null +++ b/package.json @@ -0,0 +1,55 @@ +{ + "name": "windmill-dashboard", + "version": "1.0.2", + "description": "A multi theme, completely accessible, with components and pages examples, ready for production dashboard.", + "scripts": { + "tailwind:admin": "tailwindcss build static/admin/css/tailwind.css -o static/admin/css/tailwind.output.css", + "tailwind:vendor": "tailwindcss build static/admin/css/tailwind.css -o static/vendor/css/tailwind.output.css", + "build:admin": "env NODE_ENV=production postcss static/admin/css/tailwind.css -o static/admin/css/tailwind.output.css", + "build:vendor": "env NODE_ENV=production postcss static/admin/css/tailwind.css -o static/vendor/css/tailwind.output.css", + "build": "npm run build:admin && npm run build:vendor", + "cz": "git-cz", + "release": "release-it" + }, + "author": "Estevan Maito ", + "license": "MIT", + "devDependencies": { + "@release-it/conventional-changelog": "1.1.4", + "@tailwindcss/custom-forms": "0.2.1", + "autoprefixer": "9.8.0", + "color": "3.1.2", + "commitizen": "4.1.2", + "cssnano": "4.1.10", + "cz-conventional-changelog": "3.2.0", + "postcss-cli": "7.1.1", + "release-it": "13.6.4", + "tailwindcss": "1.4.6", + "tailwindcss-multi-theme": "1.0.3" + }, + "keywords": [ + "tailwind", + "windmill", + "dashboard", + "template", + "admin" + ], + "release-it": { + "github": { + "release": true + }, + "npm": { + "publish": false + }, + "plugins": { + "@release-it/conventional-changelog": { + "preset": "angular", + "infile": "CHANGELOG.md" + } + } + }, + "config": { + "commitizen": { + "path": "./node_modules/cz-conventional-changelog" + } + } +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 00000000..40e713d8 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,9 @@ +module.exports = { + plugins: [ + require('tailwindcss'), + require('autoprefixer'), + require('cssnano')({ + preset: 'default', + }), + ], +} diff --git a/static/admin/css/tailwind.css b/static/admin/css/tailwind.css new file mode 100644 index 00000000..9a66ffd7 --- /dev/null +++ b/static/admin/css/tailwind.css @@ -0,0 +1,4 @@ +/* Tailwind CSS source file for admin panel */ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/static/admin/css/tailwind.output.css b/static/admin/css/tailwind.output.css index b174bcd6..13f8b7f8 100644 --- a/static/admin/css/tailwind.output.css +++ b/static/admin/css/tailwind.output.css @@ -1 +1,65240 @@ -/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none;padding:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{box-sizing:border-box;border:0 solid #d5d6d7}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-input::-moz-placeholder{color:#9e9e9e;opacity:1}.form-input:-ms-input-placeholder{color:#9e9e9e;opacity:1}.form-input::-ms-input-placeholder{color:#9e9e9e;opacity:1}.form-input::placeholder{color:#9e9e9e;opacity:1}.form-input:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-textarea::-moz-placeholder{color:#9e9e9e;opacity:1}.form-textarea:-ms-input-placeholder{color:#9e9e9e;opacity:1}.form-textarea::-ms-input-placeholder{color:#9e9e9e;opacity:1}.form-textarea::placeholder{color:#9e9e9e;opacity:1}.form-textarea:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-multiselect:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0aec0'%3E%3Cpath d='M15.3 9.3a1 1 0 011.4 1.4l-4 4a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4l3.3 3.29 3.3-3.3z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;background-repeat:no-repeat;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem;padding:.5rem 2.5rem .5rem .75rem;font-size:1rem;line-height:1.5;background-position:right .5rem center;background-size:1.5em 1.5em}.form-select::-ms-expand{color:#a0aec0;border:none}@media not print{.form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.form-select{padding-right:.75rem}}.form-select:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex-shrink:0;height:1em;width:1em;color:#4299e1;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem}.form-checkbox:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-checkbox::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-checkbox:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex-shrink:0;border-radius:100%;height:1em;width:1em;color:#4299e1;background-color:#fff;border-color:#e2e8f0;border-width:1px}.form-radio:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-radio::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-radio:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.5rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.5rem*var(--space-y-reverse))}.space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0.75rem*var(--space-x-reverse));margin-left:calc(0.75rem*(1 - var(--space-x-reverse)))}.space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1rem*var(--space-y-reverse))}.space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem*var(--space-x-reverse));margin-left:calc(1rem*(1 - var(--space-x-reverse)))}.space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.5rem*var(--space-x-reverse));margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))}.divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px*var(--divide-y-reverse))}.theme-dark .dark\:divide-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#24262d;border-color:rgba(36,38,45,var(--divide-opacity))}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.hover\:bg-purple-700:hover{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.focus\:bg-white:focus{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.active\:bg-transparent:active{background-color:transparent}.active\:bg-purple-600:active{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.theme-dark .dark\:bg-gray-700{--bg-opacity:1;background-color:#24262d;background-color:rgba(36,38,45,var(--bg-opacity))}.theme-dark .dark\:bg-gray-800{--bg-opacity:1;background-color:#1a1c23;background-color:rgba(26,28,35,var(--bg-opacity))}.theme-dark .dark\:bg-gray-900{--bg-opacity:1;background-color:#121317;background-color:rgba(18,19,23,var(--bg-opacity))}.theme-dark .dark\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.theme-dark .dark\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.theme-dark .dark\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.theme-dark .dark\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.theme-dark .dark\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.theme-dark .dark\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.theme-dark .dark\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.theme-dark .dark\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.theme-dark .dark\:hover\:bg-gray-800:hover{--bg-opacity:1;background-color:#1a1c23;background-color:rgba(26,28,35,var(--bg-opacity))}.bg-opacity-50{--bg-opacity:0.5}.border-transparent{border-color:transparent}.border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.border-gray-300{--border-opacity:1;border-color:#d5d6d7;border-color:rgba(213,214,215,var(--border-opacity))}.border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.focus\:border-gray-500:focus{--border-opacity:1;border-color:#707275;border-color:rgba(112,114,117,var(--border-opacity))}.focus\:border-red-400:focus{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.focus\:border-green-400:focus{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.focus\:border-purple-300:focus{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.focus\:border-purple-400:focus{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.hover\:border-gray-500:hover{--border-opacity:1;border-color:#707275;border-color:rgba(112,114,117,var(--border-opacity))}.theme-dark .dark\:border-gray-600{--border-opacity:1;border-color:#4c4f52;border-color:rgba(76,79,82,var(--border-opacity))}.theme-dark .dark\:border-gray-700{--border-opacity:1;border-color:#24262d;border-color:rgba(36,38,45,var(--border-opacity))}.theme-dark .dark\:border-gray-800{--border-opacity:1;border-color:#1a1c23;border-color:rgba(26,28,35,var(--border-opacity))}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-t-lg{border-top-left-radius:.5rem}.rounded-r-lg,.rounded-t-lg{border-top-right-radius:.5rem}.rounded-r-lg{border-bottom-right-radius:.5rem}.rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.rounded-tr-lg{border-top-right-radius:.5rem}.rounded-br-lg{border-bottom-right-radius:.5rem}.border-0{border-width:0}.border-2{border-width:2px}.border{border-width:1px}.border-r-0{border-right-width:0}.border-t{border-top-width:1px}.border-b{border-bottom-width:1px}.cursor-not-allowed{cursor:not-allowed}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.theme-dark .dark\:block{display:block}.theme-dark .dark\:hidden{display:none}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-12{height:3rem}.h-32{height:8rem}.h-full{height:100%}.h-screen{height:100vh}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-6xl{font-size:4rem}.leading-5{line-height:1.25rem}.leading-none{line-height:1}.leading-tight{line-height:1.25}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mx-auto{margin-left:auto;margin-right:auto}.-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.mt-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.mb-2{margin-bottom:.5rem}.ml-2{margin-left:.5rem}.mr-3{margin-right:.75rem}.ml-3{margin-left:.75rem}.mt-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-4{margin-bottom:1rem}.ml-4{margin-left:1rem}.mr-5{margin-right: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-8{margin-top:2rem}.mb-8{margin-bottom:2rem}.mt-16{margin-top:4rem}.-mr-1{margin-right:-.25rem}.-ml-1{margin-left:-.25rem}.-mb-4{margin-bottom:-1rem}.max-h-0{max-height:0}.max-h-xl{max-height:36rem}.max-w-xl{max-width:36rem}.max-w-2xl{max-width:42rem}.max-w-4xl{max-width:56rem}.min-h-screen{min-height:100vh}.min-w-0{min-width:0}.object-cover{-o-object-fit:cover;object-fit:cover}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-100{opacity:1}.focus\:outline-none:focus{outline:0}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.pr-2{padding-right:.5rem}.pl-2{padding-left:.5rem}.pl-8{padding-left:2rem}.pr-10{padding-right:2.5rem}.pl-10{padding-left:2.5rem}.pb-16{padding-bottom:4rem}.pr-20{padding-right:5rem}.pl-20{padding-left:5rem}.placeholder-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.placeholder-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.placeholder-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.placeholder-gray-600::placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus::placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:placeholder-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:placeholder-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:placeholder-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:placeholder-gray-500::placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:focus\:placeholder-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.theme-dark .dark\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.theme-dark .dark\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.theme-dark .dark\:focus\:placeholder-gray-600:focus::placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.pointer-events-none{pointer-events:none}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.top-0{top:0}.right-0{right:0}.left-0{left:0}.shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.fill-current{fill:currentColor}.text-left{text-align:left}.text-center{text-align:center}.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#9e9e9e;color:rgba(158,158,158,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#707275;color:rgba(112,114,117,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#24262d;color:rgba(36,38,45,var(--text-opacity))}.text-gray-800{--text-opacity:1;color:#1a1c23;color:rgba(26,28,35,var(--text-opacity))}.text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.focus-within\:text-purple-500:focus-within{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.focus-within\:text-purple-600:focus-within{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.hover\:text-gray-700:hover{--text-opacity:1;color:#24262d;color:rgba(36,38,45,var(--text-opacity))}.hover\:text-gray-800:hover{--text-opacity:1;color:#1a1c23;color:rgba(26,28,35,var(--text-opacity))}.active\:text-gray-500:active{--text-opacity:1;color:#707275;color:rgba(112,114,117,var(--text-opacity))}.theme-dark .dark\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.theme-dark .dark\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.theme-dark .dark\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.theme-dark .dark\:text-gray-300{--text-opacity:1;color:#d5d6d7;color:rgba(213,214,215,var(--text-opacity))}.theme-dark .dark\:text-gray-400{--text-opacity:1;color:#9e9e9e;color:rgba(158,158,158,var(--text-opacity))}.theme-dark .dark\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.theme-dark .dark\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.theme-dark .dark\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.theme-dark .dark\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.theme-dark .dark\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.theme-dark .dark\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.theme-dark .dark\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.theme-dark .dark\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.theme-dark .dark\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.theme-dark .dark\:focus-within\:text-purple-400:focus-within{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.theme-dark .dark\:hover\:text-gray-200:hover{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.uppercase{text-transform:uppercase}.hover\:underline:hover,.underline{text-decoration:underline}.tracking-wide{letter-spacing:.025em}.align-middle{vertical-align:middle}.whitespace-no-wrap{white-space:nowrap}.w-1{width:.25rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-12{width:3rem}.w-56{width:14rem}.w-64{width:16rem}.w-full{width:100%}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.gap-6{grid-gap:1.5rem;gap:1.5rem}.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}.transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.translate-x-1{--transform-translate-x:0.25rem}.-translate-x-20{--transform-translate-x:-5rem}.-translate-y-1{--transform-translate-y:-0.25rem}.translate-y-1\/2{--transform-translate-y:50%}.transition-all{transition-property:all}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform}.transition-colors{transition-property:background-color,border-color,color,fill,stroke}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-150{transition-duration:.15s}.duration-300{transition-duration:.3s}.focus\:shadow-outline-gray:focus{box-shadow:0 0 0 3px rgba(213,214,215,.45)}.focus\:shadow-outline-red:focus{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.focus\:shadow-outline-green:focus{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.focus\:shadow-outline-purple:focus{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.theme-dark .dark\:focus\:shadow-outline-gray:focus{box-shadow:0 0 0 3px rgba(213,214,215,.45)}@media (min-width:640px){.sm\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px*(1 - var(--space-y-reverse)));margin-bottom:calc(0px*var(--space-y-reverse))}.sm\:space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.5rem*var(--space-x-reverse));margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))}.sm\:rounded-lg{border-radius:.5rem}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:justify-end{justify-content:flex-end}.sm\:justify-center{justify-content:center}.sm\:m-4{margin:1rem}.sm\:mt-auto{margin-top:auto}.sm\:max-w-xl{max-width:36rem}.sm\:p-12{padding:3rem}.sm\:py-2{padding-top:.5rem;padding-bottom:.5rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:w-auto{width:auto}.sm\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}}@media (min-width:768px){.md\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem*var(--space-x-reverse));margin-left:calc(1rem*(1 - var(--space-x-reverse)))}.md\:block{display:block}.md\:hidden{display:none}.md\:flex-row{flex-direction:row}.md\:items-end{align-items:flex-end}.md\:h-auto{height:auto}.md\:w-1\/2{width:50%}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.lg\:mr-32{margin-right:8rem}}@media (min-width:1280px){.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}} \ No newline at end of file +/* Tailwind CSS source file for admin panel */ + +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 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; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, 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; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* 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 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 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. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-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. + */ + +[type="search"]::-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 Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +} + +/** + * 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; + padding: 0; +} + +/** + * 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, 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 */ +} + +/** + * 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: #d5d6d7; /* 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::-moz-placeholder, textarea::-moz-placeholder { + color: #a0aec0; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder { + color: #a0aec0; +} + +input::-ms-input-placeholder, textarea::-ms-input-placeholder { + color: #a0aec0; +} + +input::placeholder, +textarea::placeholder { + color: #a0aec0; +} + +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: 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; + } +} + +.form-input { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5; +} + +.form-input::-moz-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-input:-ms-input-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-input::-ms-input-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-input::placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-input:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-textarea { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5; +} + +.form-textarea::-moz-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-textarea:-ms-input-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-textarea::-ms-input-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-textarea::placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-textarea:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-multiselect { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5; +} + +.form-multiselect:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-select { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0aec0'%3e%3cpath d='M15.3 9.3a1 1 0 0 1 1.4 1.4l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.4l3.3 3.29 3.3-3.3z'/%3e%3c/svg%3e"); + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-print-color-adjust: exact; + color-adjust: exact; + background-repeat: no-repeat; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; + padding-top: 0.5rem; + padding-right: 2.5rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5; + background-position: right 0.5rem center; + background-size: 1.5em 1.5em; +} + +.form-select::-ms-expand { + color: #a0aec0; + border: none; +} + +@media not print { + .form-select::-ms-expand { + display: none; + } +} + +@media print and (-ms-high-contrast: active), print and (-ms-high-contrast: none) { + .form-select { + padding-right: 0.75rem; + } +} + +.form-select:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-checkbox { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-print-color-adjust: exact; + color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + flex-shrink: 0; + height: 1em; + width: 1em; + color: #4299e1; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; +} + +.form-checkbox:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +@media not print { + .form-checkbox::-ms-check { + border-width: 1px; + color: transparent; + background: inherit; + border-color: inherit; + border-radius: inherit; + } +} + +.form-checkbox:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-radio { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-print-color-adjust: exact; + color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + flex-shrink: 0; + border-radius: 100%; + height: 1em; + width: 1em; + color: #4299e1; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; +} + +.form-radio:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +@media not print { + .form-radio::-ms-check { + border-width: 1px; + color: transparent; + background: inherit; + border-color: inherit; + border-radius: inherit; + } +} + +.form-radio:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); +} + +.space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); +} + +.space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); +} + +.space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); +} + +.space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); +} + +.space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); +} + +.space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); +} + +.space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); +} + +.space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); +} + +.space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); +} + +.space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); +} + +.space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); +} + +.space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); +} + +.space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); +} + +.space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); +} + +.space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); +} + +.space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); +} + +.space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); +} + +.space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); +} + +.space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); +} + +.space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); +} + +.-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); +} + +.-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); +} + +.-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); +} + +.-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); +} + +.-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); +} + +.-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); +} + +.-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); +} + +.-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); +} + +.-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); +} + +.-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); +} + +.-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); +} + +.-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); +} + +.-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); +} + +.-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); +} + +.-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); +} + +.-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); +} + +.-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); +} + +.-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); +} + +.-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); +} + +.space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; +} + +.space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; +} + +.divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); +} + +.divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); +} + +.divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); +} + +.divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); +} + +.divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); +} + +.divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; +} + +.divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; +} + +.divide-transparent > :not(template) ~ :not(template) { + border-color: transparent; +} + +.divide-white > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--divide-opacity)); +} + +.divide-black > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--divide-opacity)); +} + +.divide-gray-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--divide-opacity)); +} + +.divide-gray-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--divide-opacity)); +} + +.divide-gray-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--divide-opacity)); +} + +.divide-gray-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--divide-opacity)); +} + +.divide-gray-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--divide-opacity)); +} + +.divide-gray-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--divide-opacity)); +} + +.divide-gray-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--divide-opacity)); +} + +.divide-gray-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--divide-opacity)); +} + +.divide-gray-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--divide-opacity)); +} + +.divide-gray-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--divide-opacity)); +} + +.divide-cool-gray-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--divide-opacity)); +} + +.divide-cool-gray-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--divide-opacity)); +} + +.divide-cool-gray-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--divide-opacity)); +} + +.divide-cool-gray-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--divide-opacity)); +} + +.divide-cool-gray-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--divide-opacity)); +} + +.divide-cool-gray-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--divide-opacity)); +} + +.divide-cool-gray-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--divide-opacity)); +} + +.divide-cool-gray-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--divide-opacity)); +} + +.divide-cool-gray-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--divide-opacity)); +} + +.divide-cool-gray-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--divide-opacity)); +} + +.divide-red-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--divide-opacity)); +} + +.divide-red-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--divide-opacity)); +} + +.divide-red-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--divide-opacity)); +} + +.divide-red-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--divide-opacity)); +} + +.divide-red-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--divide-opacity)); +} + +.divide-red-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--divide-opacity)); +} + +.divide-red-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--divide-opacity)); +} + +.divide-red-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--divide-opacity)); +} + +.divide-red-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--divide-opacity)); +} + +.divide-red-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--divide-opacity)); +} + +.divide-orange-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--divide-opacity)); +} + +.divide-orange-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--divide-opacity)); +} + +.divide-orange-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--divide-opacity)); +} + +.divide-orange-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--divide-opacity)); +} + +.divide-orange-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--divide-opacity)); +} + +.divide-orange-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--divide-opacity)); +} + +.divide-orange-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--divide-opacity)); +} + +.divide-orange-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--divide-opacity)); +} + +.divide-orange-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--divide-opacity)); +} + +.divide-orange-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--divide-opacity)); +} + +.divide-yellow-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--divide-opacity)); +} + +.divide-yellow-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--divide-opacity)); +} + +.divide-yellow-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--divide-opacity)); +} + +.divide-yellow-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--divide-opacity)); +} + +.divide-yellow-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--divide-opacity)); +} + +.divide-yellow-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--divide-opacity)); +} + +.divide-yellow-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--divide-opacity)); +} + +.divide-yellow-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--divide-opacity)); +} + +.divide-yellow-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--divide-opacity)); +} + +.divide-yellow-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--divide-opacity)); +} + +.divide-green-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--divide-opacity)); +} + +.divide-green-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--divide-opacity)); +} + +.divide-green-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--divide-opacity)); +} + +.divide-green-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--divide-opacity)); +} + +.divide-green-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--divide-opacity)); +} + +.divide-green-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--divide-opacity)); +} + +.divide-green-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--divide-opacity)); +} + +.divide-green-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--divide-opacity)); +} + +.divide-green-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--divide-opacity)); +} + +.divide-green-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--divide-opacity)); +} + +.divide-teal-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--divide-opacity)); +} + +.divide-teal-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--divide-opacity)); +} + +.divide-teal-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--divide-opacity)); +} + +.divide-teal-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--divide-opacity)); +} + +.divide-teal-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--divide-opacity)); +} + +.divide-teal-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--divide-opacity)); +} + +.divide-teal-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--divide-opacity)); +} + +.divide-teal-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--divide-opacity)); +} + +.divide-teal-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--divide-opacity)); +} + +.divide-teal-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--divide-opacity)); +} + +.divide-blue-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--divide-opacity)); +} + +.divide-blue-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--divide-opacity)); +} + +.divide-blue-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--divide-opacity)); +} + +.divide-blue-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--divide-opacity)); +} + +.divide-blue-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--divide-opacity)); +} + +.divide-blue-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--divide-opacity)); +} + +.divide-blue-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--divide-opacity)); +} + +.divide-blue-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--divide-opacity)); +} + +.divide-blue-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--divide-opacity)); +} + +.divide-blue-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--divide-opacity)); +} + +.divide-indigo-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--divide-opacity)); +} + +.divide-indigo-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--divide-opacity)); +} + +.divide-indigo-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--divide-opacity)); +} + +.divide-indigo-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--divide-opacity)); +} + +.divide-indigo-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--divide-opacity)); +} + +.divide-indigo-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--divide-opacity)); +} + +.divide-indigo-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--divide-opacity)); +} + +.divide-indigo-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--divide-opacity)); +} + +.divide-indigo-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--divide-opacity)); +} + +.divide-indigo-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--divide-opacity)); +} + +.divide-purple-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--divide-opacity)); +} + +.divide-purple-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--divide-opacity)); +} + +.divide-purple-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--divide-opacity)); +} + +.divide-purple-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--divide-opacity)); +} + +.divide-purple-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--divide-opacity)); +} + +.divide-purple-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--divide-opacity)); +} + +.divide-purple-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--divide-opacity)); +} + +.divide-purple-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--divide-opacity)); +} + +.divide-purple-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--divide-opacity)); +} + +.divide-purple-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--divide-opacity)); +} + +.divide-pink-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--divide-opacity)); +} + +.divide-pink-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--divide-opacity)); +} + +.divide-pink-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--divide-opacity)); +} + +.divide-pink-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--divide-opacity)); +} + +.divide-pink-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--divide-opacity)); +} + +.divide-pink-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--divide-opacity)); +} + +.divide-pink-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--divide-opacity)); +} + +.divide-pink-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--divide-opacity)); +} + +.divide-pink-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--divide-opacity)); +} + +.divide-pink-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-transparent > :not(template) ~ :not(template) { + border-color: transparent; +} + +.theme-dark .dark\:divide-white > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-black > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--divide-opacity)); +} + +.divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; +} + +.divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; +} + +.divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; +} + +.divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; +} + +.divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +.not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; +} + +.focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +.focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; +} + +.appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.bg-fixed { + background-attachment: fixed; +} + +.bg-local { + background-attachment: local; +} + +.bg-scroll { + background-attachment: scroll; +} + +.bg-transparent { + background-color: transparent; +} + +.bg-white { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.bg-black { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.bg-gray-50 { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.bg-gray-100 { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.bg-gray-200 { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.bg-gray-300 { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.bg-gray-400 { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.bg-gray-500 { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.bg-gray-600 { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.bg-gray-700 { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.bg-gray-800 { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.bg-gray-900 { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.bg-cool-gray-50 { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.bg-cool-gray-100 { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.bg-cool-gray-200 { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.bg-cool-gray-300 { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.bg-cool-gray-400 { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.bg-cool-gray-500 { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.bg-cool-gray-600 { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.bg-cool-gray-700 { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.bg-cool-gray-800 { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.bg-cool-gray-900 { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.bg-red-50 { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.bg-red-100 { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.bg-red-200 { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.bg-red-300 { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.bg-red-400 { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.bg-red-500 { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.bg-red-600 { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.bg-red-700 { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.bg-red-800 { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.bg-red-900 { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.bg-orange-50 { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.bg-orange-100 { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.bg-orange-200 { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.bg-orange-300 { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.bg-orange-400 { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.bg-orange-500 { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.bg-orange-600 { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.bg-orange-700 { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.bg-orange-800 { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.bg-orange-900 { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.bg-yellow-50 { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.bg-yellow-100 { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.bg-yellow-200 { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.bg-yellow-300 { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.bg-yellow-400 { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.bg-yellow-500 { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.bg-yellow-600 { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.bg-yellow-700 { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.bg-yellow-800 { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.bg-yellow-900 { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.bg-green-50 { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.bg-green-100 { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.bg-green-200 { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.bg-green-300 { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.bg-green-400 { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.bg-green-500 { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.bg-green-600 { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.bg-green-700 { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.bg-green-800 { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.bg-green-900 { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.bg-teal-50 { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.bg-teal-100 { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.bg-teal-200 { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.bg-teal-300 { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.bg-teal-400 { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.bg-teal-500 { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.bg-teal-600 { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.bg-teal-700 { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.bg-teal-800 { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.bg-teal-900 { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.bg-blue-50 { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.bg-blue-100 { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.bg-blue-200 { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.bg-blue-300 { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.bg-blue-400 { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.bg-blue-500 { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.bg-blue-600 { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.bg-blue-700 { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.bg-blue-800 { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.bg-blue-900 { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.bg-indigo-50 { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.bg-indigo-100 { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.bg-indigo-200 { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.bg-indigo-300 { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.bg-indigo-400 { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.bg-indigo-500 { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.bg-indigo-600 { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.bg-indigo-700 { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.bg-indigo-800 { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.bg-indigo-900 { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.bg-purple-50 { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.bg-purple-100 { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.bg-purple-200 { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.bg-purple-300 { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.bg-purple-400 { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.bg-purple-500 { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.bg-purple-600 { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.bg-purple-700 { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.bg-purple-800 { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.bg-purple-900 { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.bg-pink-50 { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.bg-pink-100 { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.bg-pink-200 { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.bg-pink-300 { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.bg-pink-400 { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.bg-pink-500 { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.bg-pink-600 { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.bg-pink-700 { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.bg-pink-800 { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.bg-pink-900 { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.hover\:bg-transparent:hover { + background-color: transparent; +} + +.hover\:bg-white:hover { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.hover\:bg-black:hover { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.hover\:bg-gray-50:hover { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.hover\:bg-gray-100:hover { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.hover\:bg-gray-200:hover { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.hover\:bg-gray-300:hover { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.hover\:bg-gray-400:hover { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.hover\:bg-gray-500:hover { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.hover\:bg-gray-600:hover { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.hover\:bg-gray-700:hover { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.hover\:bg-gray-800:hover { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.hover\:bg-gray-900:hover { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-50:hover { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-100:hover { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-200:hover { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-300:hover { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-400:hover { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-500:hover { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-600:hover { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-700:hover { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-800:hover { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-900:hover { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.hover\:bg-red-50:hover { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.hover\:bg-red-100:hover { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.hover\:bg-red-200:hover { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.hover\:bg-red-300:hover { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.hover\:bg-red-400:hover { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.hover\:bg-red-500:hover { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.hover\:bg-red-600:hover { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.hover\:bg-red-700:hover { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.hover\:bg-red-800:hover { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.hover\:bg-red-900:hover { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.hover\:bg-orange-50:hover { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.hover\:bg-orange-100:hover { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.hover\:bg-orange-200:hover { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.hover\:bg-orange-300:hover { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.hover\:bg-orange-400:hover { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.hover\:bg-orange-500:hover { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.hover\:bg-orange-600:hover { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.hover\:bg-orange-700:hover { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.hover\:bg-orange-800:hover { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.hover\:bg-orange-900:hover { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.hover\:bg-yellow-50:hover { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.hover\:bg-yellow-100:hover { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.hover\:bg-yellow-200:hover { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.hover\:bg-yellow-300:hover { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.hover\:bg-yellow-400:hover { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.hover\:bg-yellow-500:hover { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.hover\:bg-yellow-600:hover { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.hover\:bg-yellow-700:hover { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.hover\:bg-yellow-800:hover { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.hover\:bg-yellow-900:hover { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.hover\:bg-green-50:hover { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.hover\:bg-green-100:hover { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.hover\:bg-green-200:hover { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.hover\:bg-green-300:hover { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.hover\:bg-green-400:hover { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.hover\:bg-green-500:hover { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.hover\:bg-green-600:hover { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.hover\:bg-green-700:hover { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.hover\:bg-green-800:hover { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.hover\:bg-green-900:hover { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.hover\:bg-teal-50:hover { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.hover\:bg-teal-100:hover { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.hover\:bg-teal-200:hover { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.hover\:bg-teal-300:hover { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.hover\:bg-teal-400:hover { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.hover\:bg-teal-500:hover { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.hover\:bg-teal-600:hover { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.hover\:bg-teal-700:hover { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.hover\:bg-teal-800:hover { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.hover\:bg-teal-900:hover { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.hover\:bg-blue-50:hover { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.hover\:bg-blue-100:hover { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.hover\:bg-blue-200:hover { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.hover\:bg-blue-300:hover { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.hover\:bg-blue-400:hover { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.hover\:bg-blue-500:hover { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.hover\:bg-blue-600:hover { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.hover\:bg-blue-700:hover { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.hover\:bg-blue-800:hover { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.hover\:bg-blue-900:hover { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.hover\:bg-indigo-50:hover { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.hover\:bg-indigo-100:hover { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.hover\:bg-indigo-200:hover { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.hover\:bg-indigo-300:hover { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.hover\:bg-indigo-400:hover { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.hover\:bg-indigo-500:hover { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.hover\:bg-indigo-600:hover { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.hover\:bg-indigo-700:hover { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.hover\:bg-indigo-800:hover { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.hover\:bg-indigo-900:hover { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.hover\:bg-purple-50:hover { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.hover\:bg-purple-100:hover { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.hover\:bg-purple-200:hover { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.hover\:bg-purple-300:hover { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.hover\:bg-purple-400:hover { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.hover\:bg-purple-500:hover { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.hover\:bg-purple-600:hover { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.hover\:bg-purple-700:hover { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.hover\:bg-purple-800:hover { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.hover\:bg-purple-900:hover { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.hover\:bg-pink-50:hover { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.hover\:bg-pink-100:hover { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.hover\:bg-pink-200:hover { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.hover\:bg-pink-300:hover { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.hover\:bg-pink-400:hover { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.hover\:bg-pink-500:hover { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.hover\:bg-pink-600:hover { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.hover\:bg-pink-700:hover { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.hover\:bg-pink-800:hover { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.hover\:bg-pink-900:hover { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.focus\:bg-transparent:focus { + background-color: transparent; +} + +.focus\:bg-white:focus { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.focus\:bg-black:focus { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.focus\:bg-gray-50:focus { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.focus\:bg-gray-100:focus { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.focus\:bg-gray-200:focus { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.focus\:bg-gray-300:focus { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.focus\:bg-gray-400:focus { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.focus\:bg-gray-500:focus { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.focus\:bg-gray-600:focus { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.focus\:bg-gray-700:focus { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.focus\:bg-gray-800:focus { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.focus\:bg-gray-900:focus { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-50:focus { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-100:focus { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-200:focus { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-300:focus { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-400:focus { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-500:focus { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-600:focus { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-700:focus { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-800:focus { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-900:focus { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.focus\:bg-red-50:focus { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.focus\:bg-red-100:focus { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.focus\:bg-red-200:focus { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.focus\:bg-red-300:focus { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.focus\:bg-red-400:focus { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.focus\:bg-red-500:focus { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.focus\:bg-red-600:focus { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.focus\:bg-red-700:focus { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.focus\:bg-red-800:focus { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.focus\:bg-red-900:focus { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.focus\:bg-orange-50:focus { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.focus\:bg-orange-100:focus { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.focus\:bg-orange-200:focus { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.focus\:bg-orange-300:focus { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.focus\:bg-orange-400:focus { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.focus\:bg-orange-500:focus { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.focus\:bg-orange-600:focus { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.focus\:bg-orange-700:focus { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.focus\:bg-orange-800:focus { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.focus\:bg-orange-900:focus { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.focus\:bg-yellow-50:focus { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.focus\:bg-yellow-100:focus { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.focus\:bg-yellow-200:focus { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.focus\:bg-yellow-300:focus { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.focus\:bg-yellow-400:focus { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.focus\:bg-yellow-500:focus { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.focus\:bg-yellow-600:focus { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.focus\:bg-yellow-700:focus { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.focus\:bg-yellow-800:focus { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.focus\:bg-yellow-900:focus { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.focus\:bg-green-50:focus { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.focus\:bg-green-100:focus { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.focus\:bg-green-200:focus { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.focus\:bg-green-300:focus { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.focus\:bg-green-400:focus { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.focus\:bg-green-500:focus { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.focus\:bg-green-600:focus { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.focus\:bg-green-700:focus { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.focus\:bg-green-800:focus { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.focus\:bg-green-900:focus { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.focus\:bg-teal-50:focus { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.focus\:bg-teal-100:focus { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.focus\:bg-teal-200:focus { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.focus\:bg-teal-300:focus { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.focus\:bg-teal-400:focus { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.focus\:bg-teal-500:focus { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.focus\:bg-teal-600:focus { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.focus\:bg-teal-700:focus { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.focus\:bg-teal-800:focus { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.focus\:bg-teal-900:focus { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.focus\:bg-blue-50:focus { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.focus\:bg-blue-100:focus { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.focus\:bg-blue-200:focus { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.focus\:bg-blue-300:focus { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.focus\:bg-blue-400:focus { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.focus\:bg-blue-500:focus { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.focus\:bg-blue-600:focus { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.focus\:bg-blue-700:focus { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.focus\:bg-blue-800:focus { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.focus\:bg-blue-900:focus { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.focus\:bg-indigo-50:focus { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.focus\:bg-indigo-100:focus { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.focus\:bg-indigo-200:focus { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.focus\:bg-indigo-300:focus { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.focus\:bg-indigo-400:focus { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.focus\:bg-indigo-500:focus { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.focus\:bg-indigo-600:focus { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.focus\:bg-indigo-700:focus { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.focus\:bg-indigo-800:focus { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.focus\:bg-indigo-900:focus { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.focus\:bg-purple-50:focus { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.focus\:bg-purple-100:focus { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.focus\:bg-purple-200:focus { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.focus\:bg-purple-300:focus { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.focus\:bg-purple-400:focus { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.focus\:bg-purple-500:focus { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.focus\:bg-purple-600:focus { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.focus\:bg-purple-700:focus { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.focus\:bg-purple-800:focus { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.focus\:bg-purple-900:focus { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.focus\:bg-pink-50:focus { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.focus\:bg-pink-100:focus { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.focus\:bg-pink-200:focus { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.focus\:bg-pink-300:focus { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.focus\:bg-pink-400:focus { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.focus\:bg-pink-500:focus { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.focus\:bg-pink-600:focus { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.focus\:bg-pink-700:focus { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.focus\:bg-pink-800:focus { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.focus\:bg-pink-900:focus { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.active\:bg-transparent:active { + background-color: transparent; +} + +.active\:bg-white:active { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.active\:bg-black:active { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.active\:bg-gray-50:active { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.active\:bg-gray-100:active { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.active\:bg-gray-200:active { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.active\:bg-gray-300:active { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.active\:bg-gray-400:active { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.active\:bg-gray-500:active { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.active\:bg-gray-600:active { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.active\:bg-gray-700:active { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.active\:bg-gray-800:active { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.active\:bg-gray-900:active { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.active\:bg-cool-gray-50:active { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.active\:bg-cool-gray-100:active { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.active\:bg-cool-gray-200:active { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.active\:bg-cool-gray-300:active { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.active\:bg-cool-gray-400:active { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.active\:bg-cool-gray-500:active { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.active\:bg-cool-gray-600:active { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.active\:bg-cool-gray-700:active { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.active\:bg-cool-gray-800:active { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.active\:bg-cool-gray-900:active { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.active\:bg-red-50:active { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.active\:bg-red-100:active { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.active\:bg-red-200:active { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.active\:bg-red-300:active { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.active\:bg-red-400:active { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.active\:bg-red-500:active { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.active\:bg-red-600:active { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.active\:bg-red-700:active { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.active\:bg-red-800:active { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.active\:bg-red-900:active { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.active\:bg-orange-50:active { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.active\:bg-orange-100:active { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.active\:bg-orange-200:active { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.active\:bg-orange-300:active { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.active\:bg-orange-400:active { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.active\:bg-orange-500:active { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.active\:bg-orange-600:active { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.active\:bg-orange-700:active { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.active\:bg-orange-800:active { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.active\:bg-orange-900:active { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.active\:bg-yellow-50:active { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.active\:bg-yellow-100:active { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.active\:bg-yellow-200:active { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.active\:bg-yellow-300:active { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.active\:bg-yellow-400:active { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.active\:bg-yellow-500:active { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.active\:bg-yellow-600:active { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.active\:bg-yellow-700:active { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.active\:bg-yellow-800:active { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.active\:bg-yellow-900:active { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.active\:bg-green-50:active { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.active\:bg-green-100:active { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.active\:bg-green-200:active { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.active\:bg-green-300:active { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.active\:bg-green-400:active { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.active\:bg-green-500:active { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.active\:bg-green-600:active { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.active\:bg-green-700:active { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.active\:bg-green-800:active { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.active\:bg-green-900:active { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.active\:bg-teal-50:active { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.active\:bg-teal-100:active { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.active\:bg-teal-200:active { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.active\:bg-teal-300:active { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.active\:bg-teal-400:active { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.active\:bg-teal-500:active { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.active\:bg-teal-600:active { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.active\:bg-teal-700:active { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.active\:bg-teal-800:active { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.active\:bg-teal-900:active { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.active\:bg-blue-50:active { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.active\:bg-blue-100:active { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.active\:bg-blue-200:active { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.active\:bg-blue-300:active { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.active\:bg-blue-400:active { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.active\:bg-blue-500:active { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.active\:bg-blue-600:active { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.active\:bg-blue-700:active { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.active\:bg-blue-800:active { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.active\:bg-blue-900:active { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.active\:bg-indigo-50:active { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.active\:bg-indigo-100:active { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.active\:bg-indigo-200:active { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.active\:bg-indigo-300:active { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.active\:bg-indigo-400:active { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.active\:bg-indigo-500:active { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.active\:bg-indigo-600:active { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.active\:bg-indigo-700:active { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.active\:bg-indigo-800:active { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.active\:bg-indigo-900:active { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.active\:bg-purple-50:active { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.active\:bg-purple-100:active { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.active\:bg-purple-200:active { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.active\:bg-purple-300:active { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.active\:bg-purple-400:active { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.active\:bg-purple-500:active { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.active\:bg-purple-600:active { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.active\:bg-purple-700:active { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.active\:bg-purple-800:active { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.active\:bg-purple-900:active { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.active\:bg-pink-50:active { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.active\:bg-pink-100:active { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.active\:bg-pink-200:active { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.active\:bg-pink-300:active { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.active\:bg-pink-400:active { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.active\:bg-pink-500:active { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.active\:bg-pink-600:active { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.active\:bg-pink-700:active { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.active\:bg-pink-800:active { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.active\:bg-pink-900:active { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.odd\:bg-transparent:nth-child(odd) { + background-color: transparent; +} + +.odd\:bg-white:nth-child(odd) { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.odd\:bg-black:nth-child(odd) { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.odd\:bg-gray-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.odd\:bg-gray-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.odd\:bg-gray-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.odd\:bg-gray-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.odd\:bg-gray-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.odd\:bg-gray-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.odd\:bg-gray-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.odd\:bg-gray-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.odd\:bg-gray-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.odd\:bg-gray-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.odd\:bg-red-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.odd\:bg-red-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.odd\:bg-red-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.odd\:bg-red-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.odd\:bg-red-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.odd\:bg-red-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.odd\:bg-red-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.odd\:bg-red-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.odd\:bg-red-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.odd\:bg-red-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.odd\:bg-orange-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.odd\:bg-orange-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.odd\:bg-orange-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.odd\:bg-orange-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.odd\:bg-orange-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.odd\:bg-orange-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.odd\:bg-orange-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.odd\:bg-orange-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.odd\:bg-orange-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.odd\:bg-orange-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.odd\:bg-yellow-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.odd\:bg-yellow-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.odd\:bg-yellow-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.odd\:bg-yellow-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.odd\:bg-yellow-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.odd\:bg-yellow-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.odd\:bg-yellow-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.odd\:bg-yellow-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.odd\:bg-yellow-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.odd\:bg-yellow-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.odd\:bg-green-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.odd\:bg-green-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.odd\:bg-green-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.odd\:bg-green-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.odd\:bg-green-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.odd\:bg-green-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.odd\:bg-green-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.odd\:bg-green-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.odd\:bg-green-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.odd\:bg-green-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.odd\:bg-teal-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.odd\:bg-teal-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.odd\:bg-teal-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.odd\:bg-teal-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.odd\:bg-teal-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.odd\:bg-teal-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.odd\:bg-teal-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.odd\:bg-teal-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.odd\:bg-teal-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.odd\:bg-teal-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.odd\:bg-blue-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.odd\:bg-blue-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.odd\:bg-blue-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.odd\:bg-blue-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.odd\:bg-blue-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.odd\:bg-blue-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.odd\:bg-blue-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.odd\:bg-blue-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.odd\:bg-blue-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.odd\:bg-blue-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.odd\:bg-indigo-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.odd\:bg-indigo-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.odd\:bg-indigo-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.odd\:bg-indigo-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.odd\:bg-indigo-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.odd\:bg-indigo-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.odd\:bg-indigo-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.odd\:bg-indigo-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.odd\:bg-indigo-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.odd\:bg-indigo-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.odd\:bg-purple-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.odd\:bg-purple-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.odd\:bg-purple-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.odd\:bg-purple-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.odd\:bg-purple-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.odd\:bg-purple-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.odd\:bg-purple-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.odd\:bg-purple-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.odd\:bg-purple-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.odd\:bg-purple-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.odd\:bg-pink-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.odd\:bg-pink-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.odd\:bg-pink-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.odd\:bg-pink-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.odd\:bg-pink-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.odd\:bg-pink-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.odd\:bg-pink-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.odd\:bg-pink-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.odd\:bg-pink-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.odd\:bg-pink-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-transparent { + background-color: transparent; +} + +.theme-dark .dark\:bg-white { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-black { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-50 { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-100 { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-200 { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-300 { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-400 { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-500 { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-600 { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-700 { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-800 { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-900 { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-50 { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-100 { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-200 { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-300 { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-400 { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-500 { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-600 { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-700 { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-800 { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-900 { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-50 { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-100 { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-200 { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-300 { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-400 { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-500 { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-600 { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-700 { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-800 { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-900 { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-50 { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-100 { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-200 { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-300 { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-400 { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-500 { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-600 { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-700 { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-800 { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-900 { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-50 { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-100 { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-200 { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-300 { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-400 { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-500 { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-600 { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-700 { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-800 { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-900 { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-50 { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-100 { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-200 { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-300 { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-400 { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-500 { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-600 { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-700 { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-800 { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-900 { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-50 { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-100 { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-200 { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-300 { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-400 { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-500 { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-600 { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-700 { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-800 { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-900 { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-50 { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-100 { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-200 { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-300 { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-400 { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-500 { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-600 { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-700 { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-800 { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-900 { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-50 { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-100 { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-200 { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-300 { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-400 { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-500 { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-600 { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-700 { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-800 { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-900 { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-50 { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-100 { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-200 { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-300 { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-400 { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-500 { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-600 { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-700 { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-800 { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-900 { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-50 { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-100 { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-200 { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-300 { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-400 { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-500 { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-600 { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-700 { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-800 { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-900 { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-transparent:hover { + background-color: transparent; +} + +.theme-dark .dark\:hover\:bg-white:hover { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-black:hover { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-50:hover { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-100:hover { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-200:hover { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-300:hover { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-400:hover { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-500:hover { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-600:hover { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-700:hover { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-800:hover { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-900:hover { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-50:hover { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-100:hover { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-200:hover { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-300:hover { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-400:hover { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-500:hover { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-600:hover { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-700:hover { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-800:hover { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-900:hover { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-50:hover { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-100:hover { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-200:hover { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-300:hover { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-400:hover { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-500:hover { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-600:hover { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-700:hover { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-800:hover { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-900:hover { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-50:hover { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-100:hover { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-200:hover { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-300:hover { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-400:hover { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-500:hover { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-600:hover { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-700:hover { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-800:hover { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-900:hover { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-50:hover { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-100:hover { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-200:hover { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-300:hover { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-400:hover { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-500:hover { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-600:hover { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-700:hover { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-800:hover { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-900:hover { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-50:hover { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-100:hover { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-200:hover { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-300:hover { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-400:hover { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-500:hover { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-600:hover { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-700:hover { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-800:hover { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-900:hover { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-50:hover { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-100:hover { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-200:hover { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-300:hover { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-400:hover { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-500:hover { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-600:hover { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-700:hover { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-800:hover { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-900:hover { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-50:hover { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-100:hover { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-200:hover { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-300:hover { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-400:hover { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-500:hover { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-600:hover { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-700:hover { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-800:hover { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-900:hover { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-50:hover { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-100:hover { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-200:hover { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-300:hover { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-400:hover { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-500:hover { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-600:hover { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-700:hover { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-800:hover { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-900:hover { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-50:hover { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-100:hover { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-200:hover { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-300:hover { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-400:hover { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-500:hover { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-600:hover { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-700:hover { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-800:hover { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-900:hover { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-50:hover { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-100:hover { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-200:hover { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-300:hover { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-400:hover { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-500:hover { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-600:hover { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-700:hover { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-800:hover { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-900:hover { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-transparent:focus { + background-color: transparent; +} + +.theme-dark .dark\:focus\:bg-white:focus { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-black:focus { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-50:focus { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-100:focus { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-200:focus { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-300:focus { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-400:focus { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-500:focus { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-600:focus { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-700:focus { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-800:focus { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-900:focus { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-50:focus { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-100:focus { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-200:focus { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-300:focus { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-400:focus { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-500:focus { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-600:focus { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-700:focus { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-800:focus { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-900:focus { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-50:focus { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-100:focus { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-200:focus { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-300:focus { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-400:focus { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-500:focus { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-600:focus { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-700:focus { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-800:focus { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-900:focus { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-50:focus { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-100:focus { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-200:focus { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-300:focus { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-400:focus { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-500:focus { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-600:focus { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-700:focus { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-800:focus { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-900:focus { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-50:focus { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-100:focus { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-200:focus { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-300:focus { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-400:focus { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-500:focus { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-600:focus { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-700:focus { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-800:focus { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-900:focus { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-50:focus { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-100:focus { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-200:focus { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-300:focus { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-400:focus { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-500:focus { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-600:focus { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-700:focus { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-800:focus { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-900:focus { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-50:focus { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-100:focus { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-200:focus { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-300:focus { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-400:focus { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-500:focus { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-600:focus { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-700:focus { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-800:focus { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-900:focus { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-50:focus { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-100:focus { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-200:focus { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-300:focus { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-400:focus { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-500:focus { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-600:focus { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-700:focus { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-800:focus { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-900:focus { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-50:focus { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-100:focus { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-200:focus { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-300:focus { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-400:focus { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-500:focus { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-600:focus { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-700:focus { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-800:focus { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-900:focus { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-50:focus { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-100:focus { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-200:focus { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-300:focus { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-400:focus { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-500:focus { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-600:focus { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-700:focus { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-800:focus { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-900:focus { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-50:focus { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-100:focus { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-200:focus { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-300:focus { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-400:focus { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-500:focus { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-600:focus { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-700:focus { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-800:focus { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-900:focus { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-transparent:active { + background-color: transparent; +} + +.theme-dark .dark\:active\:bg-white:active { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-black:active { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-50:active { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-100:active { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-200:active { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-300:active { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-400:active { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-500:active { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-600:active { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-700:active { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-800:active { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-900:active { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-50:active { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-100:active { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-200:active { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-300:active { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-400:active { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-500:active { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-600:active { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-700:active { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-800:active { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-900:active { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-50:active { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-100:active { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-200:active { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-300:active { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-400:active { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-500:active { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-600:active { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-700:active { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-800:active { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-900:active { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-50:active { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-100:active { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-200:active { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-300:active { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-400:active { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-500:active { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-600:active { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-700:active { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-800:active { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-900:active { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-50:active { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-100:active { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-200:active { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-300:active { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-400:active { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-500:active { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-600:active { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-700:active { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-800:active { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-900:active { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-50:active { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-100:active { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-200:active { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-300:active { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-400:active { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-500:active { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-600:active { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-700:active { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-800:active { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-900:active { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-50:active { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-100:active { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-200:active { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-300:active { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-400:active { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-500:active { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-600:active { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-700:active { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-800:active { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-900:active { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-50:active { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-100:active { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-200:active { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-300:active { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-400:active { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-500:active { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-600:active { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-700:active { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-800:active { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-900:active { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-50:active { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-100:active { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-200:active { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-300:active { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-400:active { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-500:active { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-600:active { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-700:active { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-800:active { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-900:active { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-50:active { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-100:active { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-200:active { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-300:active { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-400:active { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-500:active { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-600:active { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-700:active { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-800:active { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-900:active { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-50:active { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-100:active { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-200:active { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-300:active { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-400:active { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-500:active { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-600:active { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-700:active { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-800:active { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-900:active { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-transparent:nth-child(odd) { + background-color: transparent; +} + +.theme-dark .dark\:odd\:bg-white:nth-child(odd) { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-black:nth-child(odd) { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.bg-opacity-0 { + --bg-opacity: 0; +} + +.bg-opacity-25 { + --bg-opacity: 0.25; +} + +.bg-opacity-50 { + --bg-opacity: 0.5; +} + +.bg-opacity-75 { + --bg-opacity: 0.75; +} + +.bg-opacity-100 { + --bg-opacity: 1; +} + +.hover\:bg-opacity-0:hover { + --bg-opacity: 0; +} + +.hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; +} + +.hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; +} + +.hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; +} + +.hover\:bg-opacity-100:hover { + --bg-opacity: 1; +} + +.focus\:bg-opacity-0:focus { + --bg-opacity: 0; +} + +.focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; +} + +.focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; +} + +.focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; +} + +.focus\:bg-opacity-100:focus { + --bg-opacity: 1; +} + +.bg-bottom { + background-position: bottom; +} + +.bg-center { + background-position: center; +} + +.bg-left { + background-position: left; +} + +.bg-left-bottom { + background-position: left bottom; +} + +.bg-left-top { + background-position: left top; +} + +.bg-right { + background-position: right; +} + +.bg-right-bottom { + background-position: right bottom; +} + +.bg-right-top { + background-position: right top; +} + +.bg-top { + background-position: top; +} + +.bg-repeat { + background-repeat: repeat; +} + +.bg-no-repeat { + background-repeat: no-repeat; +} + +.bg-repeat-x { + background-repeat: repeat-x; +} + +.bg-repeat-y { + background-repeat: repeat-y; +} + +.bg-repeat-round { + background-repeat: round; +} + +.bg-repeat-space { + background-repeat: space; +} + +.bg-auto { + background-size: auto; +} + +.bg-cover { + background-size: cover; +} + +.bg-contain { + background-size: contain; +} + +.border-collapse { + border-collapse: collapse; +} + +.border-separate { + border-collapse: separate; +} + +.border-transparent { + border-color: transparent; +} + +.border-white { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.border-black { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.border-gray-50 { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.border-gray-100 { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.border-gray-200 { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.border-gray-300 { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.border-gray-400 { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.border-gray-500 { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.border-gray-600 { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.border-gray-700 { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.border-gray-800 { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.border-gray-900 { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.border-cool-gray-50 { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.border-cool-gray-100 { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.border-cool-gray-200 { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.border-cool-gray-300 { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.border-cool-gray-400 { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.border-cool-gray-500 { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.border-cool-gray-600 { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.border-cool-gray-700 { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.border-cool-gray-800 { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.border-cool-gray-900 { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.border-red-50 { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.border-red-100 { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.border-red-200 { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.border-red-300 { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.border-red-400 { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.border-red-500 { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.border-red-600 { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.border-red-700 { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.border-red-800 { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.border-red-900 { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.border-orange-50 { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.border-orange-100 { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.border-orange-200 { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.border-orange-300 { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.border-orange-400 { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.border-orange-500 { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.border-orange-600 { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.border-orange-700 { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.border-orange-800 { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.border-orange-900 { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.border-yellow-50 { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.border-yellow-100 { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.border-yellow-200 { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.border-yellow-300 { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.border-yellow-400 { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.border-yellow-500 { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.border-yellow-600 { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.border-yellow-700 { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.border-yellow-800 { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.border-yellow-900 { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.border-green-50 { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.border-green-100 { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.border-green-200 { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.border-green-300 { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.border-green-400 { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.border-green-500 { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.border-green-600 { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.border-green-700 { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.border-green-800 { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.border-green-900 { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.border-teal-50 { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.border-teal-100 { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.border-teal-200 { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.border-teal-300 { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.border-teal-400 { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.border-teal-500 { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.border-teal-600 { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.border-teal-700 { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.border-teal-800 { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.border-teal-900 { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.border-blue-50 { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.border-blue-100 { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.border-blue-200 { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.border-blue-300 { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.border-blue-400 { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.border-blue-500 { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.border-blue-600 { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.border-blue-700 { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.border-blue-800 { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.border-blue-900 { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.border-indigo-50 { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.border-indigo-100 { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.border-indigo-200 { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.border-indigo-300 { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.border-indigo-400 { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.border-indigo-500 { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.border-indigo-600 { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.border-indigo-700 { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.border-indigo-800 { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.border-indigo-900 { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.border-purple-50 { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.border-purple-100 { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.border-purple-200 { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.border-purple-300 { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.border-purple-400 { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.border-purple-500 { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.border-purple-600 { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.border-purple-700 { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.border-purple-800 { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.border-purple-900 { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.border-pink-50 { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.border-pink-100 { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.border-pink-200 { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.border-pink-300 { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.border-pink-400 { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.border-pink-500 { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.border-pink-600 { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.border-pink-700 { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.border-pink-800 { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.border-pink-900 { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.focus\:border-transparent:focus { + border-color: transparent; +} + +.focus\:border-white:focus { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.focus\:border-black:focus { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.focus\:border-gray-50:focus { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.focus\:border-gray-100:focus { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.focus\:border-gray-200:focus { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.focus\:border-gray-300:focus { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.focus\:border-gray-400:focus { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.focus\:border-gray-500:focus { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.focus\:border-gray-600:focus { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.focus\:border-gray-700:focus { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.focus\:border-gray-800:focus { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.focus\:border-gray-900:focus { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.focus\:border-cool-gray-50:focus { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.focus\:border-cool-gray-100:focus { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.focus\:border-cool-gray-200:focus { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.focus\:border-cool-gray-300:focus { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.focus\:border-cool-gray-400:focus { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.focus\:border-cool-gray-500:focus { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.focus\:border-cool-gray-600:focus { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.focus\:border-cool-gray-700:focus { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.focus\:border-cool-gray-800:focus { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.focus\:border-cool-gray-900:focus { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.focus\:border-red-50:focus { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.focus\:border-red-100:focus { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.focus\:border-red-200:focus { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.focus\:border-red-300:focus { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.focus\:border-red-400:focus { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.focus\:border-red-500:focus { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.focus\:border-red-600:focus { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.focus\:border-red-700:focus { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.focus\:border-red-800:focus { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.focus\:border-red-900:focus { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.focus\:border-orange-50:focus { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.focus\:border-orange-100:focus { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.focus\:border-orange-200:focus { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.focus\:border-orange-300:focus { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.focus\:border-orange-400:focus { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.focus\:border-orange-500:focus { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.focus\:border-orange-600:focus { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.focus\:border-orange-700:focus { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.focus\:border-orange-800:focus { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.focus\:border-orange-900:focus { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.focus\:border-yellow-50:focus { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.focus\:border-yellow-100:focus { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.focus\:border-yellow-200:focus { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.focus\:border-yellow-300:focus { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.focus\:border-yellow-400:focus { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.focus\:border-yellow-500:focus { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.focus\:border-yellow-600:focus { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.focus\:border-yellow-700:focus { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.focus\:border-yellow-800:focus { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.focus\:border-yellow-900:focus { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.focus\:border-green-50:focus { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.focus\:border-green-100:focus { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.focus\:border-green-200:focus { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.focus\:border-green-300:focus { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.focus\:border-green-400:focus { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.focus\:border-green-500:focus { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.focus\:border-green-600:focus { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.focus\:border-green-700:focus { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.focus\:border-green-800:focus { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.focus\:border-green-900:focus { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.focus\:border-teal-50:focus { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.focus\:border-teal-100:focus { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.focus\:border-teal-200:focus { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.focus\:border-teal-300:focus { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.focus\:border-teal-400:focus { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.focus\:border-teal-500:focus { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.focus\:border-teal-600:focus { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.focus\:border-teal-700:focus { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.focus\:border-teal-800:focus { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.focus\:border-teal-900:focus { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.focus\:border-blue-50:focus { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.focus\:border-blue-100:focus { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.focus\:border-blue-200:focus { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.focus\:border-blue-300:focus { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.focus\:border-blue-400:focus { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.focus\:border-blue-500:focus { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.focus\:border-blue-600:focus { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.focus\:border-blue-700:focus { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.focus\:border-blue-800:focus { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.focus\:border-blue-900:focus { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.focus\:border-indigo-50:focus { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.focus\:border-indigo-100:focus { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.focus\:border-indigo-200:focus { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.focus\:border-indigo-300:focus { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.focus\:border-indigo-400:focus { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.focus\:border-indigo-500:focus { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.focus\:border-indigo-600:focus { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.focus\:border-indigo-700:focus { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.focus\:border-indigo-800:focus { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.focus\:border-indigo-900:focus { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.focus\:border-purple-50:focus { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.focus\:border-purple-100:focus { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.focus\:border-purple-200:focus { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.focus\:border-purple-300:focus { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.focus\:border-purple-400:focus { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.focus\:border-purple-500:focus { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.focus\:border-purple-600:focus { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.focus\:border-purple-700:focus { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.focus\:border-purple-800:focus { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.focus\:border-purple-900:focus { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.focus\:border-pink-50:focus { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.focus\:border-pink-100:focus { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.focus\:border-pink-200:focus { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.focus\:border-pink-300:focus { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.focus\:border-pink-400:focus { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.focus\:border-pink-500:focus { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.focus\:border-pink-600:focus { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.focus\:border-pink-700:focus { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.focus\:border-pink-800:focus { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.focus\:border-pink-900:focus { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.hover\:border-transparent:hover { + border-color: transparent; +} + +.hover\:border-white:hover { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.hover\:border-black:hover { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.hover\:border-gray-50:hover { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.hover\:border-gray-100:hover { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.hover\:border-gray-200:hover { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.hover\:border-gray-300:hover { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.hover\:border-gray-400:hover { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.hover\:border-gray-500:hover { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.hover\:border-gray-600:hover { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.hover\:border-gray-700:hover { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.hover\:border-gray-800:hover { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.hover\:border-gray-900:hover { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.hover\:border-cool-gray-50:hover { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.hover\:border-cool-gray-100:hover { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.hover\:border-cool-gray-200:hover { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.hover\:border-cool-gray-300:hover { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.hover\:border-cool-gray-400:hover { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.hover\:border-cool-gray-500:hover { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.hover\:border-cool-gray-600:hover { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.hover\:border-cool-gray-700:hover { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.hover\:border-cool-gray-800:hover { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.hover\:border-cool-gray-900:hover { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.hover\:border-red-50:hover { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.hover\:border-red-100:hover { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.hover\:border-red-200:hover { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.hover\:border-red-300:hover { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.hover\:border-red-400:hover { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.hover\:border-red-500:hover { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.hover\:border-red-600:hover { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.hover\:border-red-700:hover { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.hover\:border-red-800:hover { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.hover\:border-red-900:hover { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.hover\:border-orange-50:hover { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.hover\:border-orange-100:hover { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.hover\:border-orange-200:hover { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.hover\:border-orange-300:hover { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.hover\:border-orange-400:hover { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.hover\:border-orange-500:hover { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.hover\:border-orange-600:hover { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.hover\:border-orange-700:hover { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.hover\:border-orange-800:hover { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.hover\:border-orange-900:hover { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.hover\:border-yellow-50:hover { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.hover\:border-yellow-100:hover { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.hover\:border-yellow-200:hover { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.hover\:border-yellow-300:hover { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.hover\:border-yellow-400:hover { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.hover\:border-yellow-500:hover { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.hover\:border-yellow-600:hover { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.hover\:border-yellow-700:hover { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.hover\:border-yellow-800:hover { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.hover\:border-yellow-900:hover { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.hover\:border-green-50:hover { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.hover\:border-green-100:hover { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.hover\:border-green-200:hover { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.hover\:border-green-300:hover { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.hover\:border-green-400:hover { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.hover\:border-green-500:hover { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.hover\:border-green-600:hover { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.hover\:border-green-700:hover { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.hover\:border-green-800:hover { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.hover\:border-green-900:hover { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.hover\:border-teal-50:hover { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.hover\:border-teal-100:hover { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.hover\:border-teal-200:hover { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.hover\:border-teal-300:hover { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.hover\:border-teal-400:hover { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.hover\:border-teal-500:hover { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.hover\:border-teal-600:hover { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.hover\:border-teal-700:hover { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.hover\:border-teal-800:hover { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.hover\:border-teal-900:hover { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.hover\:border-blue-50:hover { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.hover\:border-blue-100:hover { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.hover\:border-blue-200:hover { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.hover\:border-blue-300:hover { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.hover\:border-blue-400:hover { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.hover\:border-blue-500:hover { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.hover\:border-blue-600:hover { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.hover\:border-blue-700:hover { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.hover\:border-blue-800:hover { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.hover\:border-blue-900:hover { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.hover\:border-indigo-50:hover { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.hover\:border-indigo-100:hover { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.hover\:border-indigo-200:hover { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.hover\:border-indigo-300:hover { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.hover\:border-indigo-400:hover { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.hover\:border-indigo-500:hover { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.hover\:border-indigo-600:hover { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.hover\:border-indigo-700:hover { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.hover\:border-indigo-800:hover { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.hover\:border-indigo-900:hover { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.hover\:border-purple-50:hover { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.hover\:border-purple-100:hover { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.hover\:border-purple-200:hover { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.hover\:border-purple-300:hover { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.hover\:border-purple-400:hover { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.hover\:border-purple-500:hover { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.hover\:border-purple-600:hover { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.hover\:border-purple-700:hover { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.hover\:border-purple-800:hover { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.hover\:border-purple-900:hover { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.hover\:border-pink-50:hover { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.hover\:border-pink-100:hover { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.hover\:border-pink-200:hover { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.hover\:border-pink-300:hover { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.hover\:border-pink-400:hover { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.hover\:border-pink-500:hover { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.hover\:border-pink-600:hover { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.hover\:border-pink-700:hover { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.hover\:border-pink-800:hover { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.hover\:border-pink-900:hover { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.theme-dark .dark\:border-transparent { + border-color: transparent; +} + +.theme-dark .dark\:border-white { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-black { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-50 { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-100 { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-200 { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-300 { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-400 { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-500 { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-600 { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-700 { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-800 { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-900 { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-50 { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-100 { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-200 { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-300 { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-400 { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-500 { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-600 { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-700 { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-800 { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-900 { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-50 { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-100 { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-200 { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-300 { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-400 { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-500 { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-600 { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-700 { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-800 { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-900 { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-50 { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-100 { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-200 { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-300 { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-400 { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-500 { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-600 { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-700 { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-800 { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-900 { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-50 { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-100 { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-200 { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-300 { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-400 { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-500 { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-600 { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-700 { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-800 { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-900 { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-50 { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-100 { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-200 { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-300 { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-400 { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-500 { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-600 { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-700 { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-800 { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-900 { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-50 { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-100 { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-200 { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-300 { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-400 { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-500 { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-600 { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-700 { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-800 { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-900 { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-50 { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-100 { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-200 { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-300 { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-400 { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-500 { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-600 { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-700 { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-800 { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-900 { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-50 { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-100 { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-200 { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-300 { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-400 { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-500 { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-600 { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-700 { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-800 { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-900 { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-50 { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-100 { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-200 { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-300 { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-400 { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-500 { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-600 { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-700 { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-800 { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-900 { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-50 { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-100 { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-200 { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-300 { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-400 { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-500 { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-600 { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-700 { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-800 { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-900 { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-transparent:focus { + border-color: transparent; +} + +.theme-dark .dark\:focus\:border-white:focus { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-black:focus { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-50:focus { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-100:focus { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-200:focus { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-300:focus { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-400:focus { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-500:focus { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-600:focus { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-700:focus { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-800:focus { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-900:focus { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-50:focus { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-100:focus { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-200:focus { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-300:focus { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-400:focus { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-500:focus { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-600:focus { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-700:focus { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-800:focus { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-900:focus { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-50:focus { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-100:focus { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-200:focus { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-300:focus { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-400:focus { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-500:focus { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-600:focus { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-700:focus { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-800:focus { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-900:focus { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-50:focus { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-100:focus { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-200:focus { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-300:focus { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-400:focus { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-500:focus { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-600:focus { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-700:focus { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-800:focus { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-900:focus { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-50:focus { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-100:focus { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-200:focus { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-300:focus { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-400:focus { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-500:focus { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-600:focus { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-700:focus { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-800:focus { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-900:focus { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-50:focus { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-100:focus { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-200:focus { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-300:focus { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-400:focus { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-500:focus { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-600:focus { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-700:focus { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-800:focus { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-900:focus { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-50:focus { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-100:focus { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-200:focus { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-300:focus { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-400:focus { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-500:focus { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-600:focus { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-700:focus { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-800:focus { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-900:focus { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-50:focus { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-100:focus { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-200:focus { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-300:focus { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-400:focus { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-500:focus { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-600:focus { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-700:focus { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-800:focus { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-900:focus { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-50:focus { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-100:focus { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-200:focus { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-300:focus { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-400:focus { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-500:focus { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-600:focus { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-700:focus { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-800:focus { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-900:focus { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-50:focus { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-100:focus { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-200:focus { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-300:focus { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-400:focus { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-500:focus { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-600:focus { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-700:focus { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-800:focus { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-900:focus { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-50:focus { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-100:focus { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-200:focus { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-300:focus { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-400:focus { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-500:focus { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-600:focus { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-700:focus { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-800:focus { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-900:focus { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-transparent:hover { + border-color: transparent; +} + +.theme-dark .dark\:hover\:border-white:hover { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-black:hover { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-50:hover { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-100:hover { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-200:hover { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-300:hover { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-400:hover { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-500:hover { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-600:hover { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-700:hover { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-800:hover { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-900:hover { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-50:hover { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-100:hover { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-200:hover { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-300:hover { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-400:hover { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-500:hover { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-600:hover { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-700:hover { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-800:hover { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-900:hover { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-50:hover { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-100:hover { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-200:hover { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-300:hover { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-400:hover { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-500:hover { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-600:hover { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-700:hover { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-800:hover { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-900:hover { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-50:hover { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-100:hover { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-200:hover { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-300:hover { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-400:hover { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-500:hover { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-600:hover { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-700:hover { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-800:hover { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-900:hover { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-50:hover { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-100:hover { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-200:hover { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-300:hover { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-400:hover { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-500:hover { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-600:hover { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-700:hover { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-800:hover { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-900:hover { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-50:hover { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-100:hover { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-200:hover { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-300:hover { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-400:hover { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-500:hover { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-600:hover { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-700:hover { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-800:hover { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-900:hover { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-50:hover { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-100:hover { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-200:hover { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-300:hover { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-400:hover { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-500:hover { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-600:hover { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-700:hover { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-800:hover { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-900:hover { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-50:hover { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-100:hover { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-200:hover { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-300:hover { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-400:hover { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-500:hover { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-600:hover { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-700:hover { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-800:hover { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-900:hover { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-50:hover { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-100:hover { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-200:hover { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-300:hover { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-400:hover { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-500:hover { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-600:hover { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-700:hover { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-800:hover { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-900:hover { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-50:hover { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-100:hover { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-200:hover { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-300:hover { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-400:hover { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-500:hover { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-600:hover { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-700:hover { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-800:hover { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-900:hover { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-50:hover { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-100:hover { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-200:hover { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-300:hover { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-400:hover { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-500:hover { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-600:hover { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-700:hover { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-800:hover { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-900:hover { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.border-opacity-0 { + --border-opacity: 0; +} + +.border-opacity-25 { + --border-opacity: 0.25; +} + +.border-opacity-50 { + --border-opacity: 0.5; +} + +.border-opacity-75 { + --border-opacity: 0.75; +} + +.border-opacity-100 { + --border-opacity: 1; +} + +.hover\:border-opacity-0:hover { + --border-opacity: 0; +} + +.hover\:border-opacity-25:hover { + --border-opacity: 0.25; +} + +.hover\:border-opacity-50:hover { + --border-opacity: 0.5; +} + +.hover\:border-opacity-75:hover { + --border-opacity: 0.75; +} + +.hover\:border-opacity-100:hover { + --border-opacity: 1; +} + +.focus\:border-opacity-0:focus { + --border-opacity: 0; +} + +.focus\:border-opacity-25:focus { + --border-opacity: 0.25; +} + +.focus\:border-opacity-50:focus { + --border-opacity: 0.5; +} + +.focus\:border-opacity-75:focus { + --border-opacity: 0.75; +} + +.focus\:border-opacity-100:focus { + --border-opacity: 1; +} + +.rounded-none { + border-radius: 0; +} + +.rounded-sm { + border-radius: 0.125rem; +} + +.rounded { + border-radius: 0.25rem; +} + +.rounded-md { + border-radius: 0.375rem; +} + +.rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; +} + +.rounded-tr-full { + border-top-right-radius: 9999px; +} + +.rounded-br-full { + border-bottom-right-radius: 9999px; +} + +.rounded-bl-full { + border-bottom-left-radius: 9999px; +} + +.border-solid { + border-style: solid; +} + +.border-dashed { + border-style: dashed; +} + +.border-dotted { + border-style: dotted; +} + +.border-double { + border-style: double; +} + +.border-none { + border-style: none; +} + +.border-0 { + border-width: 0; +} + +.border-2 { + border-width: 2px; +} + +.border-4 { + border-width: 4px; +} + +.border-8 { + border-width: 8px; +} + +.border { + border-width: 1px; +} + +.border-t-0 { + border-top-width: 0; +} + +.border-r-0 { + border-right-width: 0; +} + +.border-b-0 { + border-bottom-width: 0; +} + +.border-l-0 { + border-left-width: 0; +} + +.border-t-2 { + border-top-width: 2px; +} + +.border-r-2 { + border-right-width: 2px; +} + +.border-b-2 { + border-bottom-width: 2px; +} + +.border-l-2 { + border-left-width: 2px; +} + +.border-t-4 { + border-top-width: 4px; +} + +.border-r-4 { + border-right-width: 4px; +} + +.border-b-4 { + border-bottom-width: 4px; +} + +.border-l-4 { + border-left-width: 4px; +} + +.border-t-8 { + border-top-width: 8px; +} + +.border-r-8 { + border-right-width: 8px; +} + +.border-b-8 { + border-bottom-width: 8px; +} + +.border-l-8 { + border-left-width: 8px; +} + +.border-t { + border-top-width: 1px; +} + +.border-r { + border-right-width: 1px; +} + +.border-b { + border-bottom-width: 1px; +} + +.border-l { + border-left-width: 1px; +} + +.box-border { + box-sizing: border-box; +} + +.box-content { + box-sizing: content-box; +} + +.cursor-auto { + cursor: auto; +} + +.cursor-default { + cursor: default; +} + +.cursor-pointer { + cursor: pointer; +} + +.cursor-wait { + cursor: wait; +} + +.cursor-text { + cursor: text; +} + +.cursor-move { + cursor: move; +} + +.cursor-not-allowed { + cursor: not-allowed; +} + +.block { + display: block; +} + +.inline-block { + display: inline-block; +} + +.inline { + display: inline; +} + +.flex { + display: flex; +} + +.inline-flex { + display: inline-flex; +} + +.table { + display: table; +} + +.table-caption { + display: table-caption; +} + +.table-cell { + display: table-cell; +} + +.table-column { + display: table-column; +} + +.table-column-group { + display: table-column-group; +} + +.table-footer-group { + display: table-footer-group; +} + +.table-header-group { + display: table-header-group; +} + +.table-row-group { + display: table-row-group; +} + +.table-row { + display: table-row; +} + +.flow-root { + display: flow-root; +} + +.grid { + display: grid; +} + +.inline-grid { + display: inline-grid; +} + +.hidden { + display: none; +} + +.theme-dark .dark\:block { + display: block; +} + +.theme-dark .dark\:inline-block { + display: inline-block; +} + +.theme-dark .dark\:inline { + display: inline; +} + +.theme-dark .dark\:flex { + display: flex; +} + +.theme-dark .dark\:inline-flex { + display: inline-flex; +} + +.theme-dark .dark\:table { + display: table; +} + +.theme-dark .dark\:table-caption { + display: table-caption; +} + +.theme-dark .dark\:table-cell { + display: table-cell; +} + +.theme-dark .dark\:table-column { + display: table-column; +} + +.theme-dark .dark\:table-column-group { + display: table-column-group; +} + +.theme-dark .dark\:table-footer-group { + display: table-footer-group; +} + +.theme-dark .dark\:table-header-group { + display: table-header-group; +} + +.theme-dark .dark\:table-row-group { + display: table-row-group; +} + +.theme-dark .dark\:table-row { + display: table-row; +} + +.theme-dark .dark\:flow-root { + display: flow-root; +} + +.theme-dark .dark\:grid { + display: grid; +} + +.theme-dark .dark\:inline-grid { + display: inline-grid; +} + +.theme-dark .dark\:hidden { + display: none; +} + +.flex-row { + flex-direction: row; +} + +.flex-row-reverse { + flex-direction: row-reverse; +} + +.flex-col { + flex-direction: column; +} + +.flex-col-reverse { + flex-direction: column-reverse; +} + +.flex-wrap { + flex-wrap: wrap; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse; +} + +.flex-no-wrap { + flex-wrap: nowrap; +} + +.items-start { + align-items: flex-start; +} + +.items-end { + align-items: flex-end; +} + +.items-center { + align-items: center; +} + +.items-baseline { + align-items: baseline; +} + +.items-stretch { + align-items: stretch; +} + +.self-auto { + align-self: auto; +} + +.self-start { + align-self: flex-start; +} + +.self-end { + align-self: flex-end; +} + +.self-center { + align-self: center; +} + +.self-stretch { + align-self: stretch; +} + +.justify-start { + justify-content: flex-start; +} + +.justify-end { + justify-content: flex-end; +} + +.justify-center { + justify-content: center; +} + +.justify-between { + justify-content: space-between; +} + +.justify-around { + justify-content: space-around; +} + +.justify-evenly { + justify-content: space-evenly; +} + +.content-center { + align-content: center; +} + +.content-start { + align-content: flex-start; +} + +.content-end { + align-content: flex-end; +} + +.content-between { + align-content: space-between; +} + +.content-around { + align-content: space-around; +} + +.flex-1 { + flex: 1 1 0%; +} + +.flex-auto { + flex: 1 1 auto; +} + +.flex-initial { + flex: 0 1 auto; +} + +.flex-none { + flex: none; +} + +.flex-grow-0 { + flex-grow: 0; +} + +.flex-grow { + flex-grow: 1; +} + +.flex-shrink-0 { + flex-shrink: 0; +} + +.flex-shrink { + flex-shrink: 1; +} + +.order-1 { + order: 1; +} + +.order-2 { + order: 2; +} + +.order-3 { + order: 3; +} + +.order-4 { + order: 4; +} + +.order-5 { + order: 5; +} + +.order-6 { + order: 6; +} + +.order-7 { + order: 7; +} + +.order-8 { + order: 8; +} + +.order-9 { + order: 9; +} + +.order-10 { + order: 10; +} + +.order-11 { + order: 11; +} + +.order-12 { + order: 12; +} + +.order-first { + order: -9999; +} + +.order-last { + order: 9999; +} + +.order-none { + order: 0; +} + +.float-right { + float: right; +} + +.float-left { + float: left; +} + +.float-none { + float: none; +} + +.clearfix:after { + content: ""; + display: table; + clear: both; +} + +.clear-left { + clear: left; +} + +.clear-right { + clear: right; +} + +.clear-both { + clear: both; +} + +.clear-none { + clear: none; +} + +.font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +.font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; +} + +.font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +.font-hairline { + font-weight: 100; +} + +.font-thin { + font-weight: 200; +} + +.font-light { + font-weight: 300; +} + +.font-normal { + font-weight: 400; +} + +.font-medium { + font-weight: 500; +} + +.font-semibold { + font-weight: 600; +} + +.font-bold { + font-weight: 700; +} + +.font-extrabold { + font-weight: 800; +} + +.font-black { + font-weight: 900; +} + +.hover\:font-hairline:hover { + font-weight: 100; +} + +.hover\:font-thin:hover { + font-weight: 200; +} + +.hover\:font-light:hover { + font-weight: 300; +} + +.hover\:font-normal:hover { + font-weight: 400; +} + +.hover\:font-medium:hover { + font-weight: 500; +} + +.hover\:font-semibold:hover { + font-weight: 600; +} + +.hover\:font-bold:hover { + font-weight: 700; +} + +.hover\:font-extrabold:hover { + font-weight: 800; +} + +.hover\:font-black:hover { + font-weight: 900; +} + +.focus\:font-hairline:focus { + font-weight: 100; +} + +.focus\:font-thin:focus { + font-weight: 200; +} + +.focus\:font-light:focus { + font-weight: 300; +} + +.focus\:font-normal:focus { + font-weight: 400; +} + +.focus\:font-medium:focus { + font-weight: 500; +} + +.focus\:font-semibold:focus { + font-weight: 600; +} + +.focus\:font-bold:focus { + font-weight: 700; +} + +.focus\:font-extrabold:focus { + font-weight: 800; +} + +.focus\:font-black:focus { + font-weight: 900; +} + +.h-0 { + height: 0; +} + +.h-1 { + height: 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-8 { + height: 2rem; +} + +.h-10 { + height: 2.5rem; +} + +.h-12 { + height: 3rem; +} + +.h-16 { + height: 4rem; +} + +.h-20 { + height: 5rem; +} + +.h-24 { + height: 6rem; +} + +.h-32 { + height: 8rem; +} + +.h-40 { + height: 10rem; +} + +.h-48 { + height: 12rem; +} + +.h-56 { + height: 14rem; +} + +.h-64 { + height: 16rem; +} + +.h-auto { + height: auto; +} + +.h-px { + height: 1px; +} + +.h-full { + height: 100%; +} + +.h-screen { + height: 100vh; +} + +.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: 4rem; +} + +.leading-3 { + line-height: .75rem; +} + +.leading-4 { + line-height: 1rem; +} + +.leading-5 { + line-height: 1.25rem; +} + +.leading-6 { + line-height: 1.5rem; +} + +.leading-7 { + line-height: 1.75rem; +} + +.leading-8 { + line-height: 2rem; +} + +.leading-9 { + line-height: 2.25rem; +} + +.leading-10 { + line-height: 2.5rem; +} + +.leading-none { + line-height: 1; +} + +.leading-tight { + line-height: 1.25; +} + +.leading-snug { + line-height: 1.375; +} + +.leading-normal { + line-height: 1.5; +} + +.leading-relaxed { + line-height: 1.625; +} + +.leading-loose { + line-height: 2; +} + +.list-inside { + list-style-position: inside; +} + +.list-outside { + list-style-position: outside; +} + +.list-none { + list-style-type: none; +} + +.list-disc { + list-style-type: disc; +} + +.list-decimal { + list-style-type: decimal; +} + +.m-0 { + margin: 0; +} + +.m-1 { + margin: 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-8 { + margin: 2rem; +} + +.m-10 { + margin: 2.5rem; +} + +.m-12 { + margin: 3rem; +} + +.m-16 { + margin: 4rem; +} + +.m-20 { + margin: 5rem; +} + +.m-24 { + margin: 6rem; +} + +.m-32 { + margin: 8rem; +} + +.m-40 { + margin: 10rem; +} + +.m-48 { + margin: 12rem; +} + +.m-56 { + margin: 14rem; +} + +.m-64 { + margin: 16rem; +} + +.m-auto { + margin: auto; +} + +.m-px { + margin: 1px; +} + +.-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-8 { + margin: -2rem; +} + +.-m-10 { + margin: -2.5rem; +} + +.-m-12 { + margin: -3rem; +} + +.-m-16 { + margin: -4rem; +} + +.-m-20 { + margin: -5rem; +} + +.-m-24 { + margin: -6rem; +} + +.-m-32 { + margin: -8rem; +} + +.-m-40 { + margin: -10rem; +} + +.-m-48 { + margin: -12rem; +} + +.-m-56 { + margin: -14rem; +} + +.-m-64 { + margin: -16rem; +} + +.-m-px { + margin: -1px; +} + +.my-0 { + margin-top: 0; + margin-bottom: 0; +} + +.mx-0 { + margin-left: 0; + margin-right: 0; +} + +.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-8 { + margin-top: 2rem; + margin-bottom: 2rem; +} + +.mx-8 { + margin-left: 2rem; + margin-right: 2rem; +} + +.my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; +} + +.mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; +} + +.my-12 { + margin-top: 3rem; + margin-bottom: 3rem; +} + +.mx-12 { + margin-left: 3rem; + margin-right: 3rem; +} + +.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-32 { + margin-top: 8rem; + margin-bottom: 8rem; +} + +.mx-32 { + margin-left: 8rem; + margin-right: 8rem; +} + +.my-40 { + margin-top: 10rem; + margin-bottom: 10rem; +} + +.mx-40 { + margin-left: 10rem; + margin-right: 10rem; +} + +.my-48 { + margin-top: 12rem; + margin-bottom: 12rem; +} + +.mx-48 { + margin-left: 12rem; + margin-right: 12rem; +} + +.my-56 { + margin-top: 14rem; + margin-bottom: 14rem; +} + +.mx-56 { + margin-left: 14rem; + margin-right: 14rem; +} + +.my-64 { + margin-top: 16rem; + margin-bottom: 16rem; +} + +.mx-64 { + margin-left: 16rem; + margin-right: 16rem; +} + +.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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; +} + +.-mx-8 { + margin-left: -2rem; + margin-right: -2rem; +} + +.-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; +} + +.-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; +} + +.-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; +} + +.-mx-12 { + margin-left: -3rem; + margin-right: -3rem; +} + +.-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-32 { + margin-top: -8rem; + margin-bottom: -8rem; +} + +.-mx-32 { + margin-left: -8rem; + margin-right: -8rem; +} + +.-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; +} + +.-mx-40 { + margin-left: -10rem; + margin-right: -10rem; +} + +.-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; +} + +.-mx-48 { + margin-left: -12rem; + margin-right: -12rem; +} + +.-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; +} + +.-mx-56 { + margin-left: -14rem; + margin-right: -14rem; +} + +.-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; +} + +.-mx-64 { + margin-left: -16rem; + margin-right: -16rem; +} + +.-my-px { + margin-top: -1px; + margin-bottom: -1px; +} + +.-mx-px { + margin-left: -1px; + margin-right: -1px; +} + +.mt-0 { + margin-top: 0; +} + +.mr-0 { + margin-right: 0; +} + +.mb-0 { + margin-bottom: 0; +} + +.ml-0 { + margin-left: 0; +} + +.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-8 { + margin-top: 2rem; +} + +.mr-8 { + margin-right: 2rem; +} + +.mb-8 { + margin-bottom: 2rem; +} + +.ml-8 { + margin-left: 2rem; +} + +.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-12 { + margin-top: 3rem; +} + +.mr-12 { + margin-right: 3rem; +} + +.mb-12 { + margin-bottom: 3rem; +} + +.ml-12 { + margin-left: 3rem; +} + +.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-32 { + margin-top: 8rem; +} + +.mr-32 { + margin-right: 8rem; +} + +.mb-32 { + margin-bottom: 8rem; +} + +.ml-32 { + margin-left: 8rem; +} + +.mt-40 { + margin-top: 10rem; +} + +.mr-40 { + margin-right: 10rem; +} + +.mb-40 { + margin-bottom: 10rem; +} + +.ml-40 { + margin-left: 10rem; +} + +.mt-48 { + margin-top: 12rem; +} + +.mr-48 { + margin-right: 12rem; +} + +.mb-48 { + margin-bottom: 12rem; +} + +.ml-48 { + margin-left: 12rem; +} + +.mt-56 { + margin-top: 14rem; +} + +.mr-56 { + margin-right: 14rem; +} + +.mb-56 { + margin-bottom: 14rem; +} + +.ml-56 { + margin-left: 14rem; +} + +.mt-64 { + margin-top: 16rem; +} + +.mr-64 { + margin-right: 16rem; +} + +.mb-64 { + margin-bottom: 16rem; +} + +.ml-64 { + margin-left: 16rem; +} + +.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-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-8 { + margin-top: -2rem; +} + +.-mr-8 { + margin-right: -2rem; +} + +.-mb-8 { + margin-bottom: -2rem; +} + +.-ml-8 { + margin-left: -2rem; +} + +.-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-12 { + margin-top: -3rem; +} + +.-mr-12 { + margin-right: -3rem; +} + +.-mb-12 { + margin-bottom: -3rem; +} + +.-ml-12 { + margin-left: -3rem; +} + +.-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-32 { + margin-top: -8rem; +} + +.-mr-32 { + margin-right: -8rem; +} + +.-mb-32 { + margin-bottom: -8rem; +} + +.-ml-32 { + margin-left: -8rem; +} + +.-mt-40 { + margin-top: -10rem; +} + +.-mr-40 { + margin-right: -10rem; +} + +.-mb-40 { + margin-bottom: -10rem; +} + +.-ml-40 { + margin-left: -10rem; +} + +.-mt-48 { + margin-top: -12rem; +} + +.-mr-48 { + margin-right: -12rem; +} + +.-mb-48 { + margin-bottom: -12rem; +} + +.-ml-48 { + margin-left: -12rem; +} + +.-mt-56 { + margin-top: -14rem; +} + +.-mr-56 { + margin-right: -14rem; +} + +.-mb-56 { + margin-bottom: -14rem; +} + +.-ml-56 { + margin-left: -14rem; +} + +.-mt-64 { + margin-top: -16rem; +} + +.-mr-64 { + margin-right: -16rem; +} + +.-mb-64 { + margin-bottom: -16rem; +} + +.-ml-64 { + margin-left: -16rem; +} + +.-mt-px { + margin-top: -1px; +} + +.-mr-px { + margin-right: -1px; +} + +.-mb-px { + margin-bottom: -1px; +} + +.-ml-px { + margin-left: -1px; +} + +.max-h-0 { + max-height: 0; +} + +.max-h-full { + max-height: 100%; +} + +.max-h-screen { + max-height: 100vh; +} + +.max-h-xl { + max-height: 36rem; +} + +.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-full { + max-width: 100%; +} + +.max-w-screen-sm { + max-width: 640px; +} + +.max-w-screen-md { + max-width: 768px; +} + +.max-w-screen-lg { + max-width: 1024px; +} + +.max-w-screen-xl { + max-width: 1280px; +} + +.min-h-0 { + min-height: 0; +} + +.min-h-full { + min-height: 100%; +} + +.min-h-screen { + min-height: 100vh; +} + +.min-w-0 { + min-width: 0; +} + +.min-w-full { + min-width: 100%; +} + +.object-contain { + -o-object-fit: contain; + object-fit: contain; +} + +.object-cover { + -o-object-fit: cover; + object-fit: cover; +} + +.object-fill { + -o-object-fit: fill; + object-fit: fill; +} + +.object-none { + -o-object-fit: none; + object-fit: none; +} + +.object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; +} + +.object-bottom { + -o-object-position: bottom; + object-position: bottom; +} + +.object-center { + -o-object-position: center; + object-position: center; +} + +.object-left { + -o-object-position: left; + object-position: left; +} + +.object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; +} + +.object-left-top { + -o-object-position: left top; + object-position: left top; +} + +.object-right { + -o-object-position: right; + object-position: right; +} + +.object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; +} + +.object-right-top { + -o-object-position: right top; + object-position: right top; +} + +.object-top { + -o-object-position: top; + object-position: top; +} + +.opacity-0 { + opacity: 0; +} + +.opacity-25 { + opacity: 0.25; +} + +.opacity-50 { + opacity: 0.5; +} + +.opacity-75 { + opacity: 0.75; +} + +.opacity-100 { + opacity: 1; +} + +.hover\:opacity-0:hover { + opacity: 0; +} + +.hover\:opacity-25:hover { + opacity: 0.25; +} + +.hover\:opacity-50:hover { + opacity: 0.5; +} + +.hover\:opacity-75:hover { + opacity: 0.75; +} + +.hover\:opacity-100:hover { + opacity: 1; +} + +.focus\:opacity-0:focus { + opacity: 0; +} + +.focus\:opacity-25:focus { + opacity: 0.25; +} + +.focus\:opacity-50:focus { + opacity: 0.5; +} + +.focus\:opacity-75:focus { + opacity: 0.75; +} + +.focus\:opacity-100:focus { + opacity: 1; +} + +.outline-none { + outline: 0; +} + +.focus\:outline-none:focus { + outline: 0; +} + +.overflow-auto { + overflow: auto; +} + +.overflow-hidden { + overflow: hidden; +} + +.overflow-visible { + overflow: visible; +} + +.overflow-scroll { + overflow: scroll; +} + +.overflow-x-auto { + overflow-x: auto; +} + +.overflow-y-auto { + overflow-y: auto; +} + +.overflow-x-hidden { + overflow-x: hidden; +} + +.overflow-y-hidden { + overflow-y: hidden; +} + +.overflow-x-visible { + overflow-x: visible; +} + +.overflow-y-visible { + overflow-y: visible; +} + +.overflow-x-scroll { + overflow-x: scroll; +} + +.overflow-y-scroll { + overflow-y: scroll; +} + +.scrolling-touch { + -webkit-overflow-scrolling: touch; +} + +.scrolling-auto { + -webkit-overflow-scrolling: auto; +} + +.p-0 { + padding: 0; +} + +.p-1 { + padding: 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-8 { + padding: 2rem; +} + +.p-10 { + padding: 2.5rem; +} + +.p-12 { + padding: 3rem; +} + +.p-16 { + padding: 4rem; +} + +.p-20 { + padding: 5rem; +} + +.p-24 { + padding: 6rem; +} + +.p-32 { + padding: 8rem; +} + +.p-40 { + padding: 10rem; +} + +.p-48 { + padding: 12rem; +} + +.p-56 { + padding: 14rem; +} + +.p-64 { + padding: 16rem; +} + +.p-px { + padding: 1px; +} + +.py-0 { + padding-top: 0; + padding-bottom: 0; +} + +.px-0 { + padding-left: 0; + padding-right: 0; +} + +.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-8 { + padding-top: 2rem; + padding-bottom: 2rem; +} + +.px-8 { + padding-left: 2rem; + padding-right: 2rem; +} + +.py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; +} + +.px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; +} + +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; +} + +.px-12 { + padding-left: 3rem; + padding-right: 3rem; +} + +.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-32 { + padding-top: 8rem; + padding-bottom: 8rem; +} + +.px-32 { + padding-left: 8rem; + padding-right: 8rem; +} + +.py-40 { + padding-top: 10rem; + padding-bottom: 10rem; +} + +.px-40 { + padding-left: 10rem; + padding-right: 10rem; +} + +.py-48 { + padding-top: 12rem; + padding-bottom: 12rem; +} + +.px-48 { + padding-left: 12rem; + padding-right: 12rem; +} + +.py-56 { + padding-top: 14rem; + padding-bottom: 14rem; +} + +.px-56 { + padding-left: 14rem; + padding-right: 14rem; +} + +.py-64 { + padding-top: 16rem; + padding-bottom: 16rem; +} + +.px-64 { + padding-left: 16rem; + padding-right: 16rem; +} + +.py-px { + padding-top: 1px; + padding-bottom: 1px; +} + +.px-px { + padding-left: 1px; + padding-right: 1px; +} + +.pt-0 { + padding-top: 0; +} + +.pr-0 { + padding-right: 0; +} + +.pb-0 { + padding-bottom: 0; +} + +.pl-0 { + padding-left: 0; +} + +.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-8 { + padding-top: 2rem; +} + +.pr-8 { + padding-right: 2rem; +} + +.pb-8 { + padding-bottom: 2rem; +} + +.pl-8 { + padding-left: 2rem; +} + +.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-12 { + padding-top: 3rem; +} + +.pr-12 { + padding-right: 3rem; +} + +.pb-12 { + padding-bottom: 3rem; +} + +.pl-12 { + padding-left: 3rem; +} + +.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-32 { + padding-top: 8rem; +} + +.pr-32 { + padding-right: 8rem; +} + +.pb-32 { + padding-bottom: 8rem; +} + +.pl-32 { + padding-left: 8rem; +} + +.pt-40 { + padding-top: 10rem; +} + +.pr-40 { + padding-right: 10rem; +} + +.pb-40 { + padding-bottom: 10rem; +} + +.pl-40 { + padding-left: 10rem; +} + +.pt-48 { + padding-top: 12rem; +} + +.pr-48 { + padding-right: 12rem; +} + +.pb-48 { + padding-bottom: 12rem; +} + +.pl-48 { + padding-left: 12rem; +} + +.pt-56 { + padding-top: 14rem; +} + +.pr-56 { + padding-right: 14rem; +} + +.pb-56 { + padding-bottom: 14rem; +} + +.pl-56 { + padding-left: 14rem; +} + +.pt-64 { + padding-top: 16rem; +} + +.pr-64 { + padding-right: 16rem; +} + +.pb-64 { + padding-bottom: 16rem; +} + +.pl-64 { + padding-left: 16rem; +} + +.pt-px { + padding-top: 1px; +} + +.pr-px { + padding-right: 1px; +} + +.pb-px { + padding-bottom: 1px; +} + +.pl-px { + padding-left: 1px; +} + +.placeholder-transparent::-moz-placeholder { + color: transparent; +} + +.placeholder-transparent:-ms-input-placeholder { + color: transparent; +} + +.placeholder-transparent::-ms-input-placeholder { + color: transparent; +} + +.placeholder-transparent::placeholder { + color: transparent; +} + +.placeholder-white::-moz-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.placeholder-white:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.placeholder-white::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.placeholder-white::placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.placeholder-black::-moz-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.placeholder-black:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.placeholder-black::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.placeholder-black::placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.placeholder-gray-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.placeholder-gray-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.placeholder-gray-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.placeholder-gray-50::placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.placeholder-gray-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.placeholder-gray-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.placeholder-gray-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.placeholder-gray-100::placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.placeholder-gray-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.placeholder-gray-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.placeholder-gray-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.placeholder-gray-200::placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.placeholder-gray-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.placeholder-gray-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.placeholder-gray-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.placeholder-gray-300::placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.placeholder-gray-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.placeholder-gray-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.placeholder-gray-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.placeholder-gray-400::placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.placeholder-gray-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.placeholder-gray-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.placeholder-gray-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.placeholder-gray-500::placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.placeholder-gray-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.placeholder-gray-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.placeholder-gray-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.placeholder-gray-600::placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.placeholder-gray-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.placeholder-gray-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.placeholder-gray-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.placeholder-gray-700::placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.placeholder-gray-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.placeholder-gray-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.placeholder-gray-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.placeholder-gray-800::placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.placeholder-gray-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.placeholder-gray-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.placeholder-gray-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.placeholder-gray-900::placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-50::placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-100::placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-200::placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-300::placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-400::placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-500::placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-600::placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-700::placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-800::placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-900::placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.placeholder-red-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.placeholder-red-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.placeholder-red-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.placeholder-red-50::placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.placeholder-red-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.placeholder-red-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.placeholder-red-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.placeholder-red-100::placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.placeholder-red-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.placeholder-red-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.placeholder-red-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.placeholder-red-200::placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.placeholder-red-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.placeholder-red-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.placeholder-red-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.placeholder-red-300::placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.placeholder-red-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.placeholder-red-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.placeholder-red-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.placeholder-red-400::placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.placeholder-red-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.placeholder-red-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.placeholder-red-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.placeholder-red-500::placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.placeholder-red-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.placeholder-red-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.placeholder-red-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.placeholder-red-600::placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.placeholder-red-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.placeholder-red-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.placeholder-red-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.placeholder-red-700::placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.placeholder-red-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.placeholder-red-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.placeholder-red-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.placeholder-red-800::placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.placeholder-red-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-red-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-red-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-red-900::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-orange-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.placeholder-orange-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.placeholder-orange-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.placeholder-orange-50::placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.placeholder-orange-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.placeholder-orange-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.placeholder-orange-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.placeholder-orange-100::placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.placeholder-orange-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.placeholder-orange-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.placeholder-orange-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.placeholder-orange-200::placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.placeholder-orange-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.placeholder-orange-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.placeholder-orange-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.placeholder-orange-300::placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.placeholder-orange-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.placeholder-orange-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.placeholder-orange-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.placeholder-orange-400::placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.placeholder-orange-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.placeholder-orange-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.placeholder-orange-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.placeholder-orange-500::placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.placeholder-orange-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.placeholder-orange-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.placeholder-orange-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.placeholder-orange-600::placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.placeholder-orange-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.placeholder-orange-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.placeholder-orange-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.placeholder-orange-700::placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.placeholder-orange-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.placeholder-orange-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.placeholder-orange-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.placeholder-orange-800::placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.placeholder-orange-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-orange-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-orange-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-orange-900::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-yellow-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.placeholder-yellow-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.placeholder-yellow-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.placeholder-yellow-50::placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.placeholder-yellow-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.placeholder-yellow-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.placeholder-yellow-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.placeholder-yellow-100::placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.placeholder-yellow-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.placeholder-yellow-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.placeholder-yellow-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.placeholder-yellow-200::placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.placeholder-yellow-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.placeholder-yellow-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.placeholder-yellow-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.placeholder-yellow-300::placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.placeholder-yellow-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.placeholder-yellow-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.placeholder-yellow-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.placeholder-yellow-400::placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.placeholder-yellow-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.placeholder-yellow-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.placeholder-yellow-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.placeholder-yellow-500::placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.placeholder-yellow-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.placeholder-yellow-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.placeholder-yellow-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.placeholder-yellow-600::placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.placeholder-yellow-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.placeholder-yellow-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.placeholder-yellow-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.placeholder-yellow-700::placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.placeholder-yellow-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.placeholder-yellow-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.placeholder-yellow-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.placeholder-yellow-800::placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.placeholder-yellow-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.placeholder-yellow-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.placeholder-yellow-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.placeholder-yellow-900::placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.placeholder-green-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.placeholder-green-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.placeholder-green-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.placeholder-green-50::placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.placeholder-green-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.placeholder-green-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.placeholder-green-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.placeholder-green-100::placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.placeholder-green-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.placeholder-green-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.placeholder-green-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.placeholder-green-200::placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.placeholder-green-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.placeholder-green-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.placeholder-green-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.placeholder-green-300::placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.placeholder-green-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.placeholder-green-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.placeholder-green-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.placeholder-green-400::placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.placeholder-green-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.placeholder-green-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.placeholder-green-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.placeholder-green-500::placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.placeholder-green-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.placeholder-green-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.placeholder-green-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.placeholder-green-600::placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.placeholder-green-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.placeholder-green-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.placeholder-green-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.placeholder-green-700::placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.placeholder-green-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.placeholder-green-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.placeholder-green-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.placeholder-green-800::placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.placeholder-green-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.placeholder-green-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.placeholder-green-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.placeholder-green-900::placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.placeholder-teal-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.placeholder-teal-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.placeholder-teal-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.placeholder-teal-50::placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.placeholder-teal-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.placeholder-teal-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.placeholder-teal-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.placeholder-teal-100::placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.placeholder-teal-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.placeholder-teal-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.placeholder-teal-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.placeholder-teal-200::placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.placeholder-teal-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.placeholder-teal-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.placeholder-teal-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.placeholder-teal-300::placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.placeholder-teal-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.placeholder-teal-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.placeholder-teal-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.placeholder-teal-400::placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.placeholder-teal-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.placeholder-teal-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.placeholder-teal-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.placeholder-teal-500::placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.placeholder-teal-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.placeholder-teal-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.placeholder-teal-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.placeholder-teal-600::placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.placeholder-teal-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.placeholder-teal-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.placeholder-teal-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.placeholder-teal-700::placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.placeholder-teal-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.placeholder-teal-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.placeholder-teal-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.placeholder-teal-800::placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.placeholder-teal-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.placeholder-teal-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.placeholder-teal-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.placeholder-teal-900::placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.placeholder-blue-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-blue-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-blue-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-blue-50::placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-blue-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-100::placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.placeholder-blue-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.placeholder-blue-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.placeholder-blue-200::placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.placeholder-blue-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-300::placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.placeholder-blue-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.placeholder-blue-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.placeholder-blue-400::placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.placeholder-blue-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.placeholder-blue-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.placeholder-blue-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.placeholder-blue-500::placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.placeholder-blue-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.placeholder-blue-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.placeholder-blue-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.placeholder-blue-600::placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.placeholder-blue-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.placeholder-blue-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.placeholder-blue-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.placeholder-blue-700::placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.placeholder-blue-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.placeholder-blue-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.placeholder-blue-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.placeholder-blue-800::placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.placeholder-blue-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.placeholder-blue-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.placeholder-blue-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.placeholder-blue-900::placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.placeholder-indigo-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-50::placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-100::placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.placeholder-indigo-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.placeholder-indigo-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.placeholder-indigo-200::placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.placeholder-indigo-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.placeholder-indigo-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.placeholder-indigo-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.placeholder-indigo-300::placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.placeholder-indigo-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.placeholder-indigo-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.placeholder-indigo-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.placeholder-indigo-400::placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.placeholder-indigo-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.placeholder-indigo-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.placeholder-indigo-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.placeholder-indigo-500::placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.placeholder-indigo-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.placeholder-indigo-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.placeholder-indigo-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.placeholder-indigo-600::placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.placeholder-indigo-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.placeholder-indigo-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.placeholder-indigo-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.placeholder-indigo-700::placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.placeholder-indigo-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.placeholder-indigo-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.placeholder-indigo-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.placeholder-indigo-800::placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.placeholder-indigo-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.placeholder-indigo-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.placeholder-indigo-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.placeholder-indigo-900::placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.placeholder-purple-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-purple-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-purple-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-purple-50::placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-purple-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-100::placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-200::placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.placeholder-purple-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.placeholder-purple-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.placeholder-purple-300::placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.placeholder-purple-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.placeholder-purple-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.placeholder-purple-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.placeholder-purple-400::placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.placeholder-purple-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.placeholder-purple-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.placeholder-purple-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.placeholder-purple-500::placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.placeholder-purple-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.placeholder-purple-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.placeholder-purple-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.placeholder-purple-600::placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.placeholder-purple-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.placeholder-purple-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.placeholder-purple-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.placeholder-purple-700::placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.placeholder-purple-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.placeholder-purple-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.placeholder-purple-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.placeholder-purple-800::placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.placeholder-purple-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.placeholder-purple-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.placeholder-purple-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.placeholder-purple-900::placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.placeholder-pink-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.placeholder-pink-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.placeholder-pink-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.placeholder-pink-50::placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.placeholder-pink-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.placeholder-pink-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.placeholder-pink-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.placeholder-pink-100::placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.placeholder-pink-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.placeholder-pink-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.placeholder-pink-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.placeholder-pink-200::placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.placeholder-pink-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.placeholder-pink-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.placeholder-pink-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.placeholder-pink-300::placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.placeholder-pink-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.placeholder-pink-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.placeholder-pink-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.placeholder-pink-400::placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.placeholder-pink-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.placeholder-pink-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.placeholder-pink-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.placeholder-pink-500::placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.placeholder-pink-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.placeholder-pink-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.placeholder-pink-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.placeholder-pink-600::placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.placeholder-pink-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.placeholder-pink-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.placeholder-pink-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.placeholder-pink-700::placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.placeholder-pink-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.placeholder-pink-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.placeholder-pink-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.placeholder-pink-800::placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.placeholder-pink-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.placeholder-pink-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.placeholder-pink-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.placeholder-pink-900::placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent; +} + +.focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent; +} + +.focus\:placeholder-transparent:focus::-ms-input-placeholder { + color: transparent; +} + +.focus\:placeholder-transparent:focus::placeholder { + color: transparent; +} + +.focus\:placeholder-white:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-white:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-white:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-white:focus::placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-black:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.focus\:placeholder-black:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.focus\:placeholder-black:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.focus\:placeholder-black:focus::placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-100:focus::placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-200:focus::placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-300:focus::placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-400:focus::placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-500:focus::placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-600:focus::placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-700:focus::placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-800:focus::placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-900:focus::placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus::placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus::placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus::placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus::placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus::placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus::placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus::placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-50:focus::placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus::placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus::placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus::placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus::placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus::placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus::placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus::placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus::placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus::placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus::placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus::placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus::placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus::placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus::placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus::placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus::placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus::placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus::placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus::placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus::placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus::placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus::placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus::placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus::placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus::placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-transparent::-moz-placeholder { + color: transparent; +} + +.theme-dark .dark\:placeholder-transparent:-ms-input-placeholder { + color: transparent; +} + +.theme-dark .dark\:placeholder-transparent::-ms-input-placeholder { + color: transparent; +} + +.theme-dark .dark\:placeholder-transparent::placeholder { + color: transparent; +} + +.theme-dark .dark\:placeholder-white::-moz-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-white:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-white::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-white::placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-black::-moz-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-black:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-black::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-black::placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-50::placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-100::placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-200::placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-300::placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-400::placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-500::placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-600::placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-700::placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-800::placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-900::placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-50::placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-100::placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-200::placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-300::placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-400::placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-500::placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-600::placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-700::placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-800::placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-900::placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-50::placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-100::placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-200::placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-300::placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-400::placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-500::placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-600::placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-700::placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-800::placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-900::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-50::placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-100::placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-200::placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-300::placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-400::placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-500::placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-600::placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-700::placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-800::placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-900::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-50::placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-100::placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-200::placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-300::placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-400::placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-500::placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-600::placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-700::placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-800::placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-900::placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-50::placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-100::placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-200::placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-300::placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-400::placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-500::placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-600::placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-700::placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-800::placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-900::placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-50::placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-100::placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-200::placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-300::placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-400::placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-500::placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-600::placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-700::placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-800::placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-900::placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-50::placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-100::placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-200::placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-300::placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-400::placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-500::placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-600::placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-700::placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-800::placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-900::placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-50::placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-100::placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-200::placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-300::placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-400::placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-500::placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-600::placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-700::placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-800::placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-900::placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-50::placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-100::placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-200::placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-300::placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-400::placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-500::placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-600::placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-700::placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-800::placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-900::placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-50::placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-100::placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-200::placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-300::placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-400::placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-500::placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-600::placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-700::placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-800::placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-900::placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent; +} + +.theme-dark .dark\:focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent; +} + +.theme-dark .dark\:focus\:placeholder-transparent:focus::-ms-input-placeholder { + color: transparent; +} + +.theme-dark .dark\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; +} + +.theme-dark .dark\:focus\:placeholder-white:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-white:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-white:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-white:focus::placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-black:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-black:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-black:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-black:focus::placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-100:focus::placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-200:focus::placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-300:focus::placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-400:focus::placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-500:focus::placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-600:focus::placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-700:focus::placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-800:focus::placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-900:focus::placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-100:focus::placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-200:focus::placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-300:focus::placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-400:focus::placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-500:focus::placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-600:focus::placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-700:focus::placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-800:focus::placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-900:focus::placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-300:focus::placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-400:focus::placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-500:focus::placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-600:focus::placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-700:focus::placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-800:focus::placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-900:focus::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-100:focus::placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-300:focus::placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-400:focus::placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-500:focus::placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-600:focus::placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-700:focus::placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-800:focus::placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-900:focus::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-300:focus::placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-400:focus::placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-500:focus::placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-600:focus::placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-700:focus::placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-800:focus::placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-900:focus::placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-100:focus::placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-200:focus::placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-300:focus::placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-400:focus::placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-500:focus::placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-600:focus::placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-700:focus::placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-800:focus::placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-900:focus::placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-50:focus::placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-100:focus::placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-200:focus::placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-300:focus::placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-400:focus::placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-500:focus::placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-600:focus::placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-700:focus::placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-800:focus::placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-900:focus::placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-50:focus::placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-100:focus::placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-200:focus::placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-300:focus::placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-400:focus::placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-500:focus::placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-600:focus::placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-700:focus::placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-800:focus::placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-900:focus::placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-100:focus::placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-200:focus::placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-300:focus::placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-400:focus::placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-500:focus::placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-600:focus::placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-700:focus::placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-800:focus::placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-900:focus::placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-100:focus::placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-200:focus::placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-300:focus::placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-400:focus::placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-500:focus::placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-600:focus::placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-700:focus::placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-800:focus::placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-900:focus::placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-300:focus::placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-400:focus::placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-500:focus::placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-600:focus::placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-700:focus::placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-800:focus::placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-900:focus::placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; +} + +.placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; +} + +.placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; +} + +.placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; +} + +.placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; +} + +.placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; +} + +.placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; +} + +.placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; +} + +.placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; +} + +.placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; +} + +.placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; +} + +.placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; +} + +.placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; +} + +.placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; +} + +.pointer-events-none { + pointer-events: none; +} + +.pointer-events-auto { + pointer-events: auto; +} + +.static { + position: static; +} + +.fixed { + position: fixed; +} + +.absolute { + position: absolute; +} + +.relative { + position: relative; +} + +.sticky { + position: -webkit-sticky; + position: sticky; +} + +.inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; +} + +.inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; +} + +.inset-y-0 { + top: 0; + bottom: 0; +} + +.inset-x-0 { + right: 0; + left: 0; +} + +.inset-y-auto { + top: auto; + bottom: auto; +} + +.inset-x-auto { + right: auto; + left: auto; +} + +.top-0 { + top: 0; +} + +.right-0 { + right: 0; +} + +.bottom-0 { + bottom: 0; +} + +.left-0 { + left: 0; +} + +.top-auto { + top: auto; +} + +.right-auto { + right: auto; +} + +.bottom-auto { + bottom: auto; +} + +.left-auto { + left: auto; +} + +.resize-none { + resize: none; +} + +.resize-y { + resize: vertical; +} + +.resize-x { + resize: horizontal; +} + +.resize { + resize: both; +} + +.shadow-xs { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); +} + +.shadow-sm { + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); +} + +.shadow { + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); +} + +.shadow-md { + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); +} + +.shadow-lg { + box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); +} + +.shadow-xl { + box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); +} + +.shadow-2xl { + box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); +} + +.shadow-inner { + box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); +} + +.shadow-outline { + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); +} + +.shadow-none { + box-shadow: none; +} + +.focus\:shadow-xs:focus { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); +} + +.focus\:shadow-sm:focus { + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); +} + +.focus\:shadow:focus { + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); +} + +.focus\:shadow-md:focus { + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); +} + +.focus\:shadow-lg:focus { + box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); +} + +.focus\:shadow-xl:focus { + box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); +} + +.focus\:shadow-2xl:focus { + box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); +} + +.focus\:shadow-inner:focus { + box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); +} + +.focus\:shadow-outline:focus { + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); +} + +.focus\:shadow-none:focus { + box-shadow: none; +} + +.theme-dark .dark\:focus\:shadow-xs:focus { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); +} + +.theme-dark .dark\:focus\:shadow-sm:focus { + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); +} + +.theme-dark .dark\:focus\:shadow:focus { + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); +} + +.theme-dark .dark\:focus\:shadow-md:focus { + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); +} + +.theme-dark .dark\:focus\:shadow-lg:focus { + box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); +} + +.theme-dark .dark\:focus\:shadow-xl:focus { + box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); +} + +.theme-dark .dark\:focus\:shadow-2xl:focus { + box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); +} + +.theme-dark .dark\:focus\:shadow-inner:focus { + box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); +} + +.theme-dark .dark\:focus\:shadow-outline:focus { + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); +} + +.theme-dark .dark\:focus\:shadow-none:focus { + box-shadow: none; +} + +.fill-current { + fill: currentColor; +} + +.stroke-current { + stroke: currentColor; +} + +.stroke-0 { + stroke-width: 0; +} + +.stroke-1 { + stroke-width: 1; +} + +.stroke-2 { + stroke-width: 2; +} + +.table-auto { + table-layout: auto; +} + +.table-fixed { + table-layout: fixed; +} + +.text-left { + text-align: left; +} + +.text-center { + text-align: center; +} + +.text-right { + text-align: right; +} + +.text-justify { + text-align: justify; +} + +.text-transparent { + color: transparent; +} + +.text-white { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.text-black { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.text-gray-50 { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.text-gray-100 { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.text-gray-200 { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.text-gray-300 { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.text-gray-400 { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.text-gray-500 { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.text-gray-600 { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.text-gray-700 { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.text-gray-800 { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.text-gray-900 { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.text-cool-gray-50 { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.text-cool-gray-100 { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.text-cool-gray-200 { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.text-cool-gray-300 { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.text-cool-gray-400 { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.text-cool-gray-500 { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.text-cool-gray-600 { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.text-cool-gray-700 { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.text-cool-gray-800 { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.text-cool-gray-900 { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.text-red-50 { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.text-red-100 { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.text-red-200 { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.text-red-300 { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.text-red-400 { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.text-red-500 { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.text-red-600 { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.text-red-700 { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.text-red-800 { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.text-red-900 { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.text-orange-50 { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.text-orange-100 { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.text-orange-200 { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.text-orange-300 { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.text-orange-400 { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.text-orange-500 { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.text-orange-600 { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.text-orange-700 { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.text-orange-800 { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.text-orange-900 { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.text-yellow-50 { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.text-yellow-100 { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.text-yellow-200 { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.text-yellow-300 { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.text-yellow-400 { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.text-yellow-500 { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.text-yellow-600 { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.text-yellow-700 { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.text-yellow-800 { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.text-yellow-900 { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.text-green-50 { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.text-green-100 { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.text-green-200 { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.text-green-300 { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.text-green-400 { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.text-green-500 { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.text-green-600 { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.text-green-700 { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.text-green-800 { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.text-green-900 { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.text-teal-50 { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.text-teal-100 { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.text-teal-200 { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.text-teal-300 { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.text-teal-400 { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.text-teal-500 { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.text-teal-600 { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.text-teal-700 { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.text-teal-800 { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.text-teal-900 { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.text-blue-50 { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.text-blue-100 { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.text-blue-200 { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.text-blue-300 { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.text-blue-400 { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.text-blue-500 { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.text-blue-600 { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.text-blue-700 { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.text-blue-800 { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.text-blue-900 { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.text-indigo-50 { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.text-indigo-100 { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.text-indigo-200 { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.text-indigo-300 { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.text-indigo-400 { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.text-indigo-500 { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.text-indigo-600 { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.text-indigo-700 { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.text-indigo-800 { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.text-indigo-900 { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.text-purple-50 { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.text-purple-100 { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.text-purple-200 { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.text-purple-300 { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.text-purple-400 { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.text-purple-500 { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.text-purple-600 { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.text-purple-700 { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.text-purple-800 { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.text-purple-900 { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.text-pink-50 { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.text-pink-100 { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.text-pink-200 { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.text-pink-300 { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.text-pink-400 { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.text-pink-500 { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.text-pink-600 { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.text-pink-700 { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.text-pink-800 { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.text-pink-900 { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.focus-within\:text-transparent:focus-within { + color: transparent; +} + +.focus-within\:text-white:focus-within { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.focus-within\:text-black:focus-within { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.focus-within\:text-gray-50:focus-within { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.focus-within\:text-gray-100:focus-within { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.focus-within\:text-gray-200:focus-within { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.focus-within\:text-gray-300:focus-within { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.focus-within\:text-gray-400:focus-within { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.focus-within\:text-gray-500:focus-within { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.focus-within\:text-gray-600:focus-within { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.focus-within\:text-gray-700:focus-within { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.focus-within\:text-gray-800:focus-within { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.focus-within\:text-gray-900:focus-within { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-50:focus-within { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-100:focus-within { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-200:focus-within { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-300:focus-within { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-400:focus-within { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-500:focus-within { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-600:focus-within { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-700:focus-within { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-800:focus-within { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-900:focus-within { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.focus-within\:text-red-50:focus-within { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.focus-within\:text-red-100:focus-within { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.focus-within\:text-red-200:focus-within { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.focus-within\:text-red-300:focus-within { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.focus-within\:text-red-400:focus-within { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.focus-within\:text-red-500:focus-within { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.focus-within\:text-red-600:focus-within { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.focus-within\:text-red-700:focus-within { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.focus-within\:text-red-800:focus-within { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.focus-within\:text-red-900:focus-within { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.focus-within\:text-orange-50:focus-within { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.focus-within\:text-orange-100:focus-within { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.focus-within\:text-orange-200:focus-within { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.focus-within\:text-orange-300:focus-within { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.focus-within\:text-orange-400:focus-within { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.focus-within\:text-orange-500:focus-within { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.focus-within\:text-orange-600:focus-within { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.focus-within\:text-orange-700:focus-within { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.focus-within\:text-orange-800:focus-within { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.focus-within\:text-orange-900:focus-within { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.focus-within\:text-yellow-50:focus-within { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.focus-within\:text-yellow-100:focus-within { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.focus-within\:text-yellow-200:focus-within { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.focus-within\:text-yellow-300:focus-within { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.focus-within\:text-yellow-400:focus-within { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.focus-within\:text-yellow-500:focus-within { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.focus-within\:text-yellow-600:focus-within { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.focus-within\:text-yellow-700:focus-within { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.focus-within\:text-yellow-800:focus-within { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.focus-within\:text-yellow-900:focus-within { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.focus-within\:text-green-50:focus-within { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.focus-within\:text-green-100:focus-within { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.focus-within\:text-green-200:focus-within { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.focus-within\:text-green-300:focus-within { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.focus-within\:text-green-400:focus-within { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.focus-within\:text-green-500:focus-within { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.focus-within\:text-green-600:focus-within { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.focus-within\:text-green-700:focus-within { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.focus-within\:text-green-800:focus-within { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.focus-within\:text-green-900:focus-within { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.focus-within\:text-teal-50:focus-within { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.focus-within\:text-teal-100:focus-within { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.focus-within\:text-teal-200:focus-within { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.focus-within\:text-teal-300:focus-within { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.focus-within\:text-teal-400:focus-within { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.focus-within\:text-teal-500:focus-within { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.focus-within\:text-teal-600:focus-within { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.focus-within\:text-teal-700:focus-within { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.focus-within\:text-teal-800:focus-within { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.focus-within\:text-teal-900:focus-within { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.focus-within\:text-blue-50:focus-within { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.focus-within\:text-blue-100:focus-within { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.focus-within\:text-blue-200:focus-within { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.focus-within\:text-blue-300:focus-within { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.focus-within\:text-blue-400:focus-within { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.focus-within\:text-blue-500:focus-within { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.focus-within\:text-blue-600:focus-within { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.focus-within\:text-blue-700:focus-within { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.focus-within\:text-blue-800:focus-within { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.focus-within\:text-blue-900:focus-within { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.focus-within\:text-indigo-50:focus-within { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.focus-within\:text-indigo-100:focus-within { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.focus-within\:text-indigo-200:focus-within { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.focus-within\:text-indigo-300:focus-within { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.focus-within\:text-indigo-400:focus-within { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.focus-within\:text-indigo-500:focus-within { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.focus-within\:text-indigo-600:focus-within { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.focus-within\:text-indigo-700:focus-within { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.focus-within\:text-indigo-800:focus-within { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.focus-within\:text-indigo-900:focus-within { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.focus-within\:text-purple-50:focus-within { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.focus-within\:text-purple-100:focus-within { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.focus-within\:text-purple-200:focus-within { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.focus-within\:text-purple-300:focus-within { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.focus-within\:text-purple-400:focus-within { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.focus-within\:text-purple-500:focus-within { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.focus-within\:text-purple-600:focus-within { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.focus-within\:text-purple-700:focus-within { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.focus-within\:text-purple-800:focus-within { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.focus-within\:text-purple-900:focus-within { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.focus-within\:text-pink-50:focus-within { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.focus-within\:text-pink-100:focus-within { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.focus-within\:text-pink-200:focus-within { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.focus-within\:text-pink-300:focus-within { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.focus-within\:text-pink-400:focus-within { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.focus-within\:text-pink-500:focus-within { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.focus-within\:text-pink-600:focus-within { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.focus-within\:text-pink-700:focus-within { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.focus-within\:text-pink-800:focus-within { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.focus-within\:text-pink-900:focus-within { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.hover\:text-transparent:hover { + color: transparent; +} + +.hover\:text-white:hover { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.hover\:text-black:hover { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.hover\:text-gray-50:hover { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.hover\:text-gray-100:hover { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.hover\:text-gray-200:hover { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.hover\:text-gray-300:hover { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.hover\:text-gray-400:hover { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.hover\:text-gray-500:hover { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.hover\:text-gray-600:hover { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.hover\:text-gray-700:hover { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.hover\:text-gray-800:hover { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.hover\:text-gray-900:hover { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.hover\:text-cool-gray-50:hover { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.hover\:text-cool-gray-100:hover { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.hover\:text-cool-gray-200:hover { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.hover\:text-cool-gray-300:hover { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.hover\:text-cool-gray-400:hover { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.hover\:text-cool-gray-500:hover { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.hover\:text-cool-gray-600:hover { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.hover\:text-cool-gray-700:hover { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.hover\:text-cool-gray-800:hover { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.hover\:text-cool-gray-900:hover { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.hover\:text-red-50:hover { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.hover\:text-red-100:hover { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.hover\:text-red-200:hover { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.hover\:text-red-300:hover { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.hover\:text-red-400:hover { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.hover\:text-red-500:hover { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.hover\:text-red-600:hover { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.hover\:text-red-700:hover { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.hover\:text-red-800:hover { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.hover\:text-red-900:hover { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.hover\:text-orange-50:hover { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.hover\:text-orange-100:hover { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.hover\:text-orange-200:hover { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.hover\:text-orange-300:hover { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.hover\:text-orange-400:hover { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.hover\:text-orange-500:hover { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.hover\:text-orange-600:hover { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.hover\:text-orange-700:hover { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.hover\:text-orange-800:hover { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.hover\:text-orange-900:hover { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.hover\:text-yellow-50:hover { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.hover\:text-yellow-100:hover { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.hover\:text-yellow-200:hover { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.hover\:text-yellow-300:hover { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.hover\:text-yellow-400:hover { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.hover\:text-yellow-500:hover { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.hover\:text-yellow-600:hover { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.hover\:text-yellow-700:hover { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.hover\:text-yellow-800:hover { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.hover\:text-yellow-900:hover { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.hover\:text-green-50:hover { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.hover\:text-green-100:hover { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.hover\:text-green-200:hover { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.hover\:text-green-300:hover { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.hover\:text-green-400:hover { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.hover\:text-green-500:hover { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.hover\:text-green-600:hover { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.hover\:text-green-700:hover { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.hover\:text-green-800:hover { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.hover\:text-green-900:hover { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.hover\:text-teal-50:hover { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.hover\:text-teal-100:hover { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.hover\:text-teal-200:hover { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.hover\:text-teal-300:hover { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.hover\:text-teal-400:hover { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.hover\:text-teal-500:hover { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.hover\:text-teal-600:hover { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.hover\:text-teal-700:hover { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.hover\:text-teal-800:hover { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.hover\:text-teal-900:hover { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.hover\:text-blue-50:hover { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.hover\:text-blue-100:hover { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.hover\:text-blue-200:hover { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.hover\:text-blue-300:hover { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.hover\:text-blue-400:hover { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.hover\:text-blue-500:hover { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.hover\:text-blue-600:hover { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.hover\:text-blue-700:hover { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.hover\:text-blue-800:hover { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.hover\:text-blue-900:hover { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.hover\:text-indigo-50:hover { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.hover\:text-indigo-100:hover { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.hover\:text-indigo-200:hover { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.hover\:text-indigo-300:hover { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.hover\:text-indigo-400:hover { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.hover\:text-indigo-500:hover { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.hover\:text-indigo-600:hover { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.hover\:text-indigo-700:hover { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.hover\:text-indigo-800:hover { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.hover\:text-indigo-900:hover { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.hover\:text-purple-50:hover { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.hover\:text-purple-100:hover { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.hover\:text-purple-200:hover { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.hover\:text-purple-300:hover { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.hover\:text-purple-400:hover { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.hover\:text-purple-500:hover { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.hover\:text-purple-600:hover { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.hover\:text-purple-700:hover { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.hover\:text-purple-800:hover { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.hover\:text-purple-900:hover { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.hover\:text-pink-50:hover { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.hover\:text-pink-100:hover { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.hover\:text-pink-200:hover { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.hover\:text-pink-300:hover { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.hover\:text-pink-400:hover { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.hover\:text-pink-500:hover { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.hover\:text-pink-600:hover { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.hover\:text-pink-700:hover { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.hover\:text-pink-800:hover { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.hover\:text-pink-900:hover { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.active\:text-transparent:active { + color: transparent; +} + +.active\:text-white:active { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.active\:text-black:active { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.active\:text-gray-50:active { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.active\:text-gray-100:active { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.active\:text-gray-200:active { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.active\:text-gray-300:active { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.active\:text-gray-400:active { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.active\:text-gray-500:active { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.active\:text-gray-600:active { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.active\:text-gray-700:active { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.active\:text-gray-800:active { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.active\:text-gray-900:active { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.active\:text-cool-gray-50:active { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.active\:text-cool-gray-100:active { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.active\:text-cool-gray-200:active { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.active\:text-cool-gray-300:active { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.active\:text-cool-gray-400:active { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.active\:text-cool-gray-500:active { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.active\:text-cool-gray-600:active { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.active\:text-cool-gray-700:active { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.active\:text-cool-gray-800:active { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.active\:text-cool-gray-900:active { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.active\:text-red-50:active { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.active\:text-red-100:active { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.active\:text-red-200:active { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.active\:text-red-300:active { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.active\:text-red-400:active { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.active\:text-red-500:active { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.active\:text-red-600:active { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.active\:text-red-700:active { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.active\:text-red-800:active { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.active\:text-red-900:active { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.active\:text-orange-50:active { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.active\:text-orange-100:active { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.active\:text-orange-200:active { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.active\:text-orange-300:active { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.active\:text-orange-400:active { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.active\:text-orange-500:active { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.active\:text-orange-600:active { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.active\:text-orange-700:active { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.active\:text-orange-800:active { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.active\:text-orange-900:active { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.active\:text-yellow-50:active { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.active\:text-yellow-100:active { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.active\:text-yellow-200:active { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.active\:text-yellow-300:active { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.active\:text-yellow-400:active { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.active\:text-yellow-500:active { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.active\:text-yellow-600:active { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.active\:text-yellow-700:active { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.active\:text-yellow-800:active { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.active\:text-yellow-900:active { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.active\:text-green-50:active { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.active\:text-green-100:active { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.active\:text-green-200:active { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.active\:text-green-300:active { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.active\:text-green-400:active { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.active\:text-green-500:active { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.active\:text-green-600:active { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.active\:text-green-700:active { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.active\:text-green-800:active { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.active\:text-green-900:active { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.active\:text-teal-50:active { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.active\:text-teal-100:active { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.active\:text-teal-200:active { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.active\:text-teal-300:active { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.active\:text-teal-400:active { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.active\:text-teal-500:active { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.active\:text-teal-600:active { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.active\:text-teal-700:active { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.active\:text-teal-800:active { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.active\:text-teal-900:active { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.active\:text-blue-50:active { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.active\:text-blue-100:active { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.active\:text-blue-200:active { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.active\:text-blue-300:active { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.active\:text-blue-400:active { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.active\:text-blue-500:active { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.active\:text-blue-600:active { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.active\:text-blue-700:active { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.active\:text-blue-800:active { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.active\:text-blue-900:active { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.active\:text-indigo-50:active { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.active\:text-indigo-100:active { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.active\:text-indigo-200:active { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.active\:text-indigo-300:active { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.active\:text-indigo-400:active { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.active\:text-indigo-500:active { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.active\:text-indigo-600:active { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.active\:text-indigo-700:active { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.active\:text-indigo-800:active { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.active\:text-indigo-900:active { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.active\:text-purple-50:active { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.active\:text-purple-100:active { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.active\:text-purple-200:active { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.active\:text-purple-300:active { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.active\:text-purple-400:active { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.active\:text-purple-500:active { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.active\:text-purple-600:active { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.active\:text-purple-700:active { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.active\:text-purple-800:active { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.active\:text-purple-900:active { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.active\:text-pink-50:active { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.active\:text-pink-100:active { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.active\:text-pink-200:active { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.active\:text-pink-300:active { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.active\:text-pink-400:active { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.active\:text-pink-500:active { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.active\:text-pink-600:active { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.active\:text-pink-700:active { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.active\:text-pink-800:active { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.active\:text-pink-900:active { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.theme-dark .dark\:text-transparent { + color: transparent; +} + +.theme-dark .dark\:text-white { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-black { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-50 { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-100 { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-200 { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-300 { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-400 { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-500 { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-600 { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-700 { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-800 { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-900 { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-50 { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-100 { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-200 { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-300 { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-400 { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-500 { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-600 { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-700 { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-800 { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-900 { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-50 { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-100 { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-200 { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-300 { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-400 { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-500 { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-600 { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-700 { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-800 { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-900 { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-50 { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-100 { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-200 { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-300 { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-400 { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-500 { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-600 { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-700 { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-800 { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-900 { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-50 { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-100 { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-200 { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-300 { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-400 { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-500 { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-600 { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-700 { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-800 { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-900 { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-50 { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-100 { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-200 { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-300 { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-400 { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-500 { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-600 { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-700 { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-800 { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-900 { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-50 { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-100 { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-200 { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-300 { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-400 { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-500 { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-600 { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-700 { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-800 { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-900 { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-50 { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-100 { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-200 { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-300 { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-400 { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-500 { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-600 { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-700 { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-800 { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-900 { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-50 { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-100 { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-200 { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-300 { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-400 { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-500 { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-600 { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-700 { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-800 { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-900 { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-50 { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-100 { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-200 { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-300 { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-400 { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-500 { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-600 { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-700 { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-800 { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-900 { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-50 { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-100 { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-200 { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-300 { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-400 { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-500 { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-600 { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-700 { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-800 { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-900 { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-transparent:focus-within { + color: transparent; +} + +.theme-dark .dark\:focus-within\:text-white:focus-within { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-black:focus-within { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-50:focus-within { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-100:focus-within { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-200:focus-within { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-300:focus-within { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-400:focus-within { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-500:focus-within { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-600:focus-within { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-700:focus-within { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-800:focus-within { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-900:focus-within { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-50:focus-within { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-100:focus-within { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-200:focus-within { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-300:focus-within { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-400:focus-within { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-500:focus-within { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-600:focus-within { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-700:focus-within { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-800:focus-within { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-900:focus-within { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-50:focus-within { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-100:focus-within { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-200:focus-within { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-300:focus-within { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-400:focus-within { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-500:focus-within { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-600:focus-within { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-700:focus-within { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-800:focus-within { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-900:focus-within { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-50:focus-within { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-100:focus-within { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-200:focus-within { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-300:focus-within { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-400:focus-within { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-500:focus-within { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-600:focus-within { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-700:focus-within { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-800:focus-within { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-900:focus-within { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-50:focus-within { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-100:focus-within { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-200:focus-within { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-300:focus-within { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-400:focus-within { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-500:focus-within { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-600:focus-within { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-700:focus-within { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-800:focus-within { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-900:focus-within { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-50:focus-within { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-100:focus-within { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-200:focus-within { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-300:focus-within { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-400:focus-within { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-500:focus-within { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-600:focus-within { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-700:focus-within { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-800:focus-within { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-900:focus-within { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-50:focus-within { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-100:focus-within { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-200:focus-within { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-300:focus-within { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-400:focus-within { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-500:focus-within { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-600:focus-within { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-700:focus-within { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-800:focus-within { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-900:focus-within { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-50:focus-within { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-100:focus-within { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-200:focus-within { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-300:focus-within { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-400:focus-within { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-500:focus-within { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-600:focus-within { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-700:focus-within { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-800:focus-within { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-900:focus-within { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-50:focus-within { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-100:focus-within { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-200:focus-within { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-300:focus-within { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-400:focus-within { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-500:focus-within { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-600:focus-within { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-700:focus-within { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-800:focus-within { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-900:focus-within { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-50:focus-within { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-100:focus-within { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-200:focus-within { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-300:focus-within { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-400:focus-within { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-500:focus-within { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-600:focus-within { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-700:focus-within { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-800:focus-within { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-900:focus-within { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-50:focus-within { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-100:focus-within { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-200:focus-within { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-300:focus-within { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-400:focus-within { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-500:focus-within { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-600:focus-within { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-700:focus-within { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-800:focus-within { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-900:focus-within { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-transparent:hover { + color: transparent; +} + +.theme-dark .dark\:hover\:text-white:hover { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-black:hover { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-50:hover { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-100:hover { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-200:hover { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-300:hover { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-400:hover { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-500:hover { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-600:hover { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-700:hover { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-800:hover { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-900:hover { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-50:hover { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-100:hover { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-200:hover { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-300:hover { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-400:hover { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-500:hover { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-600:hover { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-700:hover { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-800:hover { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-900:hover { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-50:hover { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-100:hover { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-200:hover { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-300:hover { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-400:hover { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-500:hover { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-600:hover { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-700:hover { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-800:hover { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-900:hover { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-50:hover { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-100:hover { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-200:hover { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-300:hover { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-400:hover { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-500:hover { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-600:hover { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-700:hover { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-800:hover { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-900:hover { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-50:hover { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-100:hover { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-200:hover { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-300:hover { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-400:hover { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-500:hover { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-600:hover { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-700:hover { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-800:hover { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-900:hover { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-50:hover { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-100:hover { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-200:hover { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-300:hover { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-400:hover { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-500:hover { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-600:hover { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-700:hover { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-800:hover { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-900:hover { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-50:hover { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-100:hover { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-200:hover { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-300:hover { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-400:hover { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-500:hover { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-600:hover { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-700:hover { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-800:hover { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-900:hover { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-50:hover { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-100:hover { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-200:hover { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-300:hover { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-400:hover { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-500:hover { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-600:hover { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-700:hover { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-800:hover { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-900:hover { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-50:hover { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-100:hover { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-200:hover { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-300:hover { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-400:hover { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-500:hover { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-600:hover { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-700:hover { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-800:hover { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-900:hover { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-50:hover { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-100:hover { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-200:hover { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-300:hover { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-400:hover { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-500:hover { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-600:hover { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-700:hover { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-800:hover { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-900:hover { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-50:hover { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-100:hover { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-200:hover { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-300:hover { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-400:hover { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-500:hover { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-600:hover { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-700:hover { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-800:hover { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-900:hover { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-transparent:active { + color: transparent; +} + +.theme-dark .dark\:active\:text-white:active { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-black:active { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-50:active { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-100:active { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-200:active { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-300:active { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-400:active { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-500:active { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-600:active { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-700:active { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-800:active { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-900:active { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-50:active { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-100:active { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-200:active { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-300:active { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-400:active { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-500:active { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-600:active { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-700:active { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-800:active { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-900:active { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-50:active { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-100:active { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-200:active { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-300:active { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-400:active { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-500:active { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-600:active { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-700:active { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-800:active { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-900:active { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-50:active { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-100:active { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-200:active { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-300:active { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-400:active { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-500:active { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-600:active { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-700:active { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-800:active { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-900:active { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-50:active { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-100:active { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-200:active { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-300:active { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-400:active { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-500:active { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-600:active { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-700:active { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-800:active { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-900:active { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-50:active { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-100:active { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-200:active { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-300:active { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-400:active { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-500:active { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-600:active { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-700:active { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-800:active { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-900:active { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-50:active { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-100:active { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-200:active { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-300:active { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-400:active { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-500:active { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-600:active { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-700:active { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-800:active { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-900:active { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-50:active { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-100:active { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-200:active { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-300:active { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-400:active { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-500:active { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-600:active { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-700:active { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-800:active { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-900:active { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-50:active { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-100:active { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-200:active { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-300:active { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-400:active { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-500:active { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-600:active { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-700:active { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-800:active { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-900:active { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-50:active { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-100:active { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-200:active { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-300:active { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-400:active { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-500:active { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-600:active { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-700:active { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-800:active { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-900:active { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-50:active { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-100:active { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-200:active { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-300:active { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-400:active { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-500:active { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-600:active { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-700:active { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-800:active { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-900:active { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.text-opacity-0 { + --text-opacity: 0; +} + +.text-opacity-25 { + --text-opacity: 0.25; +} + +.text-opacity-50 { + --text-opacity: 0.5; +} + +.text-opacity-75 { + --text-opacity: 0.75; +} + +.text-opacity-100 { + --text-opacity: 1; +} + +.hover\:text-opacity-0:hover { + --text-opacity: 0; +} + +.hover\:text-opacity-25:hover { + --text-opacity: 0.25; +} + +.hover\:text-opacity-50:hover { + --text-opacity: 0.5; +} + +.hover\:text-opacity-75:hover { + --text-opacity: 0.75; +} + +.hover\:text-opacity-100:hover { + --text-opacity: 1; +} + +.focus\:text-opacity-0:focus { + --text-opacity: 0; +} + +.focus\:text-opacity-25:focus { + --text-opacity: 0.25; +} + +.focus\:text-opacity-50:focus { + --text-opacity: 0.5; +} + +.focus\:text-opacity-75:focus { + --text-opacity: 0.75; +} + +.focus\:text-opacity-100:focus { + --text-opacity: 1; +} + +.italic { + font-style: italic; +} + +.not-italic { + font-style: normal; +} + +.uppercase { + text-transform: uppercase; +} + +.lowercase { + text-transform: lowercase; +} + +.capitalize { + text-transform: capitalize; +} + +.normal-case { + text-transform: none; +} + +.underline { + text-decoration: underline; +} + +.line-through { + text-decoration: line-through; +} + +.no-underline { + text-decoration: none; +} + +.hover\:underline:hover { + text-decoration: underline; +} + +.hover\:line-through:hover { + text-decoration: line-through; +} + +.hover\:no-underline:hover { + text-decoration: none; +} + +.focus\:underline:focus { + text-decoration: underline; +} + +.focus\:line-through:focus { + text-decoration: line-through; +} + +.focus\:no-underline:focus { + text-decoration: none; +} + +.antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; +} + +.tracking-tighter { + letter-spacing: -0.05em; +} + +.tracking-tight { + letter-spacing: -0.025em; +} + +.tracking-normal { + letter-spacing: 0; +} + +.tracking-wide { + letter-spacing: 0.025em; +} + +.tracking-wider { + letter-spacing: 0.05em; +} + +.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-no-wrap { + white-space: nowrap; +} + +.whitespace-pre { + white-space: pre; +} + +.whitespace-pre-line { + white-space: pre-line; +} + +.whitespace-pre-wrap { + white-space: pre-wrap; +} + +.break-normal { + overflow-wrap: normal; + word-break: normal; +} + +.break-words { + overflow-wrap: break-word; +} + +.break-all { + word-break: break-all; +} + +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.w-0 { + width: 0; +} + +.w-1 { + width: 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-8 { + width: 2rem; +} + +.w-10 { + width: 2.5rem; +} + +.w-12 { + width: 3rem; +} + +.w-16 { + width: 4rem; +} + +.w-20 { + width: 5rem; +} + +.w-24 { + width: 6rem; +} + +.w-32 { + width: 8rem; +} + +.w-40 { + width: 10rem; +} + +.w-48 { + width: 12rem; +} + +.w-56 { + width: 14rem; +} + +.w-64 { + width: 16rem; +} + +.w-auto { + width: auto; +} + +.w-px { + width: 1px; +} + +.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; +} + +.gap-0 { + grid-gap: 0; + gap: 0; +} + +.gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; +} + +.gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; +} + +.gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; +} + +.gap-4 { + grid-gap: 1rem; + gap: 1rem; +} + +.gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; +} + +.gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; +} + +.gap-8 { + grid-gap: 2rem; + gap: 2rem; +} + +.gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; +} + +.gap-12 { + grid-gap: 3rem; + gap: 3rem; +} + +.gap-16 { + grid-gap: 4rem; + gap: 4rem; +} + +.gap-20 { + grid-gap: 5rem; + gap: 5rem; +} + +.gap-24 { + grid-gap: 6rem; + gap: 6rem; +} + +.gap-32 { + grid-gap: 8rem; + gap: 8rem; +} + +.gap-40 { + grid-gap: 10rem; + gap: 10rem; +} + +.gap-48 { + grid-gap: 12rem; + gap: 12rem; +} + +.gap-56 { + grid-gap: 14rem; + gap: 14rem; +} + +.gap-64 { + grid-gap: 16rem; + gap: 16rem; +} + +.gap-px { + grid-gap: 1px; + gap: 1px; +} + +.col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; +} + +.col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; +} + +.col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; +} + +.col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; +} + +.col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; +} + +.col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; +} + +.col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; +} + +.col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; +} + +.col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; +} + +.col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; +} + +.col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; +} + +.col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; +} + +.col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; +} + +.col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; +} + +.col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; +} + +.col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; +} + +.col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; +} + +.col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; +} + +.col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; +} + +.row-gap-0 { + grid-row-gap: 0; + row-gap: 0; +} + +.row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; +} + +.row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; +} + +.row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; +} + +.row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; +} + +.row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; +} + +.row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; +} + +.row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; +} + +.row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; +} + +.row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; +} + +.row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; +} + +.row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; +} + +.row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; +} + +.row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; +} + +.row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; +} + +.row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; +} + +.row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; +} + +.row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; +} + +.row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; +} + +.grid-flow-row { + grid-auto-flow: row; +} + +.grid-flow-col { + grid-auto-flow: column; +} + +.grid-flow-row-dense { + grid-auto-flow: row dense; +} + +.grid-flow-col-dense { + grid-auto-flow: column dense; +} + +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); +} + +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} + +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} + +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); +} + +.grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); +} + +.grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); +} + +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); +} + +.grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); +} + +.grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); +} + +.grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); +} + +.grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); +} + +.grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); +} + +.grid-cols-none { + grid-template-columns: none; +} + +.col-auto { + grid-column: auto; +} + +.col-span-1 { + grid-column: span 1 / span 1; +} + +.col-span-2 { + grid-column: span 2 / span 2; +} + +.col-span-3 { + grid-column: span 3 / span 3; +} + +.col-span-4 { + grid-column: span 4 / span 4; +} + +.col-span-5 { + grid-column: span 5 / span 5; +} + +.col-span-6 { + grid-column: span 6 / span 6; +} + +.col-span-7 { + grid-column: span 7 / span 7; +} + +.col-span-8 { + grid-column: span 8 / span 8; +} + +.col-span-9 { + grid-column: span 9 / span 9; +} + +.col-span-10 { + grid-column: span 10 / span 10; +} + +.col-span-11 { + grid-column: span 11 / span 11; +} + +.col-span-12 { + grid-column: span 12 / span 12; +} + +.col-start-1 { + grid-column-start: 1; +} + +.col-start-2 { + grid-column-start: 2; +} + +.col-start-3 { + grid-column-start: 3; +} + +.col-start-4 { + grid-column-start: 4; +} + +.col-start-5 { + grid-column-start: 5; +} + +.col-start-6 { + grid-column-start: 6; +} + +.col-start-7 { + grid-column-start: 7; +} + +.col-start-8 { + grid-column-start: 8; +} + +.col-start-9 { + grid-column-start: 9; +} + +.col-start-10 { + grid-column-start: 10; +} + +.col-start-11 { + grid-column-start: 11; +} + +.col-start-12 { + grid-column-start: 12; +} + +.col-start-13 { + grid-column-start: 13; +} + +.col-start-auto { + grid-column-start: auto; +} + +.col-end-1 { + grid-column-end: 1; +} + +.col-end-2 { + grid-column-end: 2; +} + +.col-end-3 { + grid-column-end: 3; +} + +.col-end-4 { + grid-column-end: 4; +} + +.col-end-5 { + grid-column-end: 5; +} + +.col-end-6 { + grid-column-end: 6; +} + +.col-end-7 { + grid-column-end: 7; +} + +.col-end-8 { + grid-column-end: 8; +} + +.col-end-9 { + grid-column-end: 9; +} + +.col-end-10 { + grid-column-end: 10; +} + +.col-end-11 { + grid-column-end: 11; +} + +.col-end-12 { + grid-column-end: 12; +} + +.col-end-13 { + grid-column-end: 13; +} + +.col-end-auto { + grid-column-end: auto; +} + +.grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); +} + +.grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); +} + +.grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); +} + +.grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); +} + +.grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); +} + +.grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); +} + +.grid-rows-none { + grid-template-rows: none; +} + +.row-auto { + grid-row: auto; +} + +.row-span-1 { + grid-row: span 1 / span 1; +} + +.row-span-2 { + grid-row: span 2 / span 2; +} + +.row-span-3 { + grid-row: span 3 / span 3; +} + +.row-span-4 { + grid-row: span 4 / span 4; +} + +.row-span-5 { + grid-row: span 5 / span 5; +} + +.row-span-6 { + grid-row: span 6 / span 6; +} + +.row-start-1 { + grid-row-start: 1; +} + +.row-start-2 { + grid-row-start: 2; +} + +.row-start-3 { + grid-row-start: 3; +} + +.row-start-4 { + grid-row-start: 4; +} + +.row-start-5 { + grid-row-start: 5; +} + +.row-start-6 { + grid-row-start: 6; +} + +.row-start-7 { + grid-row-start: 7; +} + +.row-start-auto { + grid-row-start: auto; +} + +.row-end-1 { + grid-row-end: 1; +} + +.row-end-2 { + grid-row-end: 2; +} + +.row-end-3 { + grid-row-end: 3; +} + +.row-end-4 { + grid-row-end: 4; +} + +.row-end-5 { + grid-row-end: 5; +} + +.row-end-6 { + grid-row-end: 6; +} + +.row-end-7 { + grid-row-end: 7; +} + +.row-end-auto { + grid-row-end: auto; +} + +.transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); +} + +.transform-none { + transform: none; +} + +.origin-center { + transform-origin: center; +} + +.origin-top { + transform-origin: top; +} + +.origin-top-right { + transform-origin: top right; +} + +.origin-right { + transform-origin: right; +} + +.origin-bottom-right { + transform-origin: bottom right; +} + +.origin-bottom { + transform-origin: bottom; +} + +.origin-bottom-left { + transform-origin: bottom left; +} + +.origin-left { + transform-origin: left; +} + +.origin-top-left { + transform-origin: top left; +} + +.scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; +} + +.scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; +} + +.scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; +} + +.scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; +} + +.scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; +} + +.scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; +} + +.scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; +} + +.scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; +} + +.scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; +} + +.scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; +} + +.scale-x-0 { + --transform-scale-x: 0; +} + +.scale-x-50 { + --transform-scale-x: .5; +} + +.scale-x-75 { + --transform-scale-x: .75; +} + +.scale-x-90 { + --transform-scale-x: .9; +} + +.scale-x-95 { + --transform-scale-x: .95; +} + +.scale-x-100 { + --transform-scale-x: 1; +} + +.scale-x-105 { + --transform-scale-x: 1.05; +} + +.scale-x-110 { + --transform-scale-x: 1.1; +} + +.scale-x-125 { + --transform-scale-x: 1.25; +} + +.scale-x-150 { + --transform-scale-x: 1.5; +} + +.scale-y-0 { + --transform-scale-y: 0; +} + +.scale-y-50 { + --transform-scale-y: .5; +} + +.scale-y-75 { + --transform-scale-y: .75; +} + +.scale-y-90 { + --transform-scale-y: .9; +} + +.scale-y-95 { + --transform-scale-y: .95; +} + +.scale-y-100 { + --transform-scale-y: 1; +} + +.scale-y-105 { + --transform-scale-y: 1.05; +} + +.scale-y-110 { + --transform-scale-y: 1.1; +} + +.scale-y-125 { + --transform-scale-y: 1.25; +} + +.scale-y-150 { + --transform-scale-y: 1.5; +} + +.hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; +} + +.hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; +} + +.hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; +} + +.hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; +} + +.hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; +} + +.hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; +} + +.hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; +} + +.hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; +} + +.hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; +} + +.hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; +} + +.hover\:scale-x-0:hover { + --transform-scale-x: 0; +} + +.hover\:scale-x-50:hover { + --transform-scale-x: .5; +} + +.hover\:scale-x-75:hover { + --transform-scale-x: .75; +} + +.hover\:scale-x-90:hover { + --transform-scale-x: .9; +} + +.hover\:scale-x-95:hover { + --transform-scale-x: .95; +} + +.hover\:scale-x-100:hover { + --transform-scale-x: 1; +} + +.hover\:scale-x-105:hover { + --transform-scale-x: 1.05; +} + +.hover\:scale-x-110:hover { + --transform-scale-x: 1.1; +} + +.hover\:scale-x-125:hover { + --transform-scale-x: 1.25; +} + +.hover\:scale-x-150:hover { + --transform-scale-x: 1.5; +} + +.hover\:scale-y-0:hover { + --transform-scale-y: 0; +} + +.hover\:scale-y-50:hover { + --transform-scale-y: .5; +} + +.hover\:scale-y-75:hover { + --transform-scale-y: .75; +} + +.hover\:scale-y-90:hover { + --transform-scale-y: .9; +} + +.hover\:scale-y-95:hover { + --transform-scale-y: .95; +} + +.hover\:scale-y-100:hover { + --transform-scale-y: 1; +} + +.hover\:scale-y-105:hover { + --transform-scale-y: 1.05; +} + +.hover\:scale-y-110:hover { + --transform-scale-y: 1.1; +} + +.hover\:scale-y-125:hover { + --transform-scale-y: 1.25; +} + +.hover\:scale-y-150:hover { + --transform-scale-y: 1.5; +} + +.focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; +} + +.focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; +} + +.focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; +} + +.focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; +} + +.focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; +} + +.focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; +} + +.focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; +} + +.focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; +} + +.focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; +} + +.focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; +} + +.focus\:scale-x-0:focus { + --transform-scale-x: 0; +} + +.focus\:scale-x-50:focus { + --transform-scale-x: .5; +} + +.focus\:scale-x-75:focus { + --transform-scale-x: .75; +} + +.focus\:scale-x-90:focus { + --transform-scale-x: .9; +} + +.focus\:scale-x-95:focus { + --transform-scale-x: .95; +} + +.focus\:scale-x-100:focus { + --transform-scale-x: 1; +} + +.focus\:scale-x-105:focus { + --transform-scale-x: 1.05; +} + +.focus\:scale-x-110:focus { + --transform-scale-x: 1.1; +} + +.focus\:scale-x-125:focus { + --transform-scale-x: 1.25; +} + +.focus\:scale-x-150:focus { + --transform-scale-x: 1.5; +} + +.focus\:scale-y-0:focus { + --transform-scale-y: 0; +} + +.focus\:scale-y-50:focus { + --transform-scale-y: .5; +} + +.focus\:scale-y-75:focus { + --transform-scale-y: .75; +} + +.focus\:scale-y-90:focus { + --transform-scale-y: .9; +} + +.focus\:scale-y-95:focus { + --transform-scale-y: .95; +} + +.focus\:scale-y-100:focus { + --transform-scale-y: 1; +} + +.focus\:scale-y-105:focus { + --transform-scale-y: 1.05; +} + +.focus\:scale-y-110:focus { + --transform-scale-y: 1.1; +} + +.focus\:scale-y-125:focus { + --transform-scale-y: 1.25; +} + +.focus\:scale-y-150:focus { + --transform-scale-y: 1.5; +} + +.rotate-0 { + --transform-rotate: 0; +} + +.rotate-45 { + --transform-rotate: 45deg; +} + +.rotate-90 { + --transform-rotate: 90deg; +} + +.rotate-180 { + --transform-rotate: 180deg; +} + +.-rotate-180 { + --transform-rotate: -180deg; +} + +.-rotate-90 { + --transform-rotate: -90deg; +} + +.-rotate-45 { + --transform-rotate: -45deg; +} + +.hover\:rotate-0:hover { + --transform-rotate: 0; +} + +.hover\:rotate-45:hover { + --transform-rotate: 45deg; +} + +.hover\:rotate-90:hover { + --transform-rotate: 90deg; +} + +.hover\:rotate-180:hover { + --transform-rotate: 180deg; +} + +.hover\:-rotate-180:hover { + --transform-rotate: -180deg; +} + +.hover\:-rotate-90:hover { + --transform-rotate: -90deg; +} + +.hover\:-rotate-45:hover { + --transform-rotate: -45deg; +} + +.focus\:rotate-0:focus { + --transform-rotate: 0; +} + +.focus\:rotate-45:focus { + --transform-rotate: 45deg; +} + +.focus\:rotate-90:focus { + --transform-rotate: 90deg; +} + +.focus\:rotate-180:focus { + --transform-rotate: 180deg; +} + +.focus\:-rotate-180:focus { + --transform-rotate: -180deg; +} + +.focus\:-rotate-90:focus { + --transform-rotate: -90deg; +} + +.focus\:-rotate-45:focus { + --transform-rotate: -45deg; +} + +.translate-x-0 { + --transform-translate-x: 0; +} + +.translate-x-1 { + --transform-translate-x: 0.25rem; +} + +.translate-x-2 { + --transform-translate-x: 0.5rem; +} + +.translate-x-3 { + --transform-translate-x: 0.75rem; +} + +.translate-x-4 { + --transform-translate-x: 1rem; +} + +.translate-x-5 { + --transform-translate-x: 1.25rem; +} + +.translate-x-6 { + --transform-translate-x: 1.5rem; +} + +.translate-x-8 { + --transform-translate-x: 2rem; +} + +.translate-x-10 { + --transform-translate-x: 2.5rem; +} + +.translate-x-12 { + --transform-translate-x: 3rem; +} + +.translate-x-16 { + --transform-translate-x: 4rem; +} + +.translate-x-20 { + --transform-translate-x: 5rem; +} + +.translate-x-24 { + --transform-translate-x: 6rem; +} + +.translate-x-32 { + --transform-translate-x: 8rem; +} + +.translate-x-40 { + --transform-translate-x: 10rem; +} + +.translate-x-48 { + --transform-translate-x: 12rem; +} + +.translate-x-56 { + --transform-translate-x: 14rem; +} + +.translate-x-64 { + --transform-translate-x: 16rem; +} + +.translate-x-px { + --transform-translate-x: 1px; +} + +.-translate-x-1 { + --transform-translate-x: -0.25rem; +} + +.-translate-x-2 { + --transform-translate-x: -0.5rem; +} + +.-translate-x-3 { + --transform-translate-x: -0.75rem; +} + +.-translate-x-4 { + --transform-translate-x: -1rem; +} + +.-translate-x-5 { + --transform-translate-x: -1.25rem; +} + +.-translate-x-6 { + --transform-translate-x: -1.5rem; +} + +.-translate-x-8 { + --transform-translate-x: -2rem; +} + +.-translate-x-10 { + --transform-translate-x: -2.5rem; +} + +.-translate-x-12 { + --transform-translate-x: -3rem; +} + +.-translate-x-16 { + --transform-translate-x: -4rem; +} + +.-translate-x-20 { + --transform-translate-x: -5rem; +} + +.-translate-x-24 { + --transform-translate-x: -6rem; +} + +.-translate-x-32 { + --transform-translate-x: -8rem; +} + +.-translate-x-40 { + --transform-translate-x: -10rem; +} + +.-translate-x-48 { + --transform-translate-x: -12rem; +} + +.-translate-x-56 { + --transform-translate-x: -14rem; +} + +.-translate-x-64 { + --transform-translate-x: -16rem; +} + +.-translate-x-px { + --transform-translate-x: -1px; +} + +.-translate-x-full { + --transform-translate-x: -100%; +} + +.-translate-x-1\/2 { + --transform-translate-x: -50%; +} + +.translate-x-1\/2 { + --transform-translate-x: 50%; +} + +.translate-x-full { + --transform-translate-x: 100%; +} + +.translate-y-0 { + --transform-translate-y: 0; +} + +.translate-y-1 { + --transform-translate-y: 0.25rem; +} + +.translate-y-2 { + --transform-translate-y: 0.5rem; +} + +.translate-y-3 { + --transform-translate-y: 0.75rem; +} + +.translate-y-4 { + --transform-translate-y: 1rem; +} + +.translate-y-5 { + --transform-translate-y: 1.25rem; +} + +.translate-y-6 { + --transform-translate-y: 1.5rem; +} + +.translate-y-8 { + --transform-translate-y: 2rem; +} + +.translate-y-10 { + --transform-translate-y: 2.5rem; +} + +.translate-y-12 { + --transform-translate-y: 3rem; +} + +.translate-y-16 { + --transform-translate-y: 4rem; +} + +.translate-y-20 { + --transform-translate-y: 5rem; +} + +.translate-y-24 { + --transform-translate-y: 6rem; +} + +.translate-y-32 { + --transform-translate-y: 8rem; +} + +.translate-y-40 { + --transform-translate-y: 10rem; +} + +.translate-y-48 { + --transform-translate-y: 12rem; +} + +.translate-y-56 { + --transform-translate-y: 14rem; +} + +.translate-y-64 { + --transform-translate-y: 16rem; +} + +.translate-y-px { + --transform-translate-y: 1px; +} + +.-translate-y-1 { + --transform-translate-y: -0.25rem; +} + +.-translate-y-2 { + --transform-translate-y: -0.5rem; +} + +.-translate-y-3 { + --transform-translate-y: -0.75rem; +} + +.-translate-y-4 { + --transform-translate-y: -1rem; +} + +.-translate-y-5 { + --transform-translate-y: -1.25rem; +} + +.-translate-y-6 { + --transform-translate-y: -1.5rem; +} + +.-translate-y-8 { + --transform-translate-y: -2rem; +} + +.-translate-y-10 { + --transform-translate-y: -2.5rem; +} + +.-translate-y-12 { + --transform-translate-y: -3rem; +} + +.-translate-y-16 { + --transform-translate-y: -4rem; +} + +.-translate-y-20 { + --transform-translate-y: -5rem; +} + +.-translate-y-24 { + --transform-translate-y: -6rem; +} + +.-translate-y-32 { + --transform-translate-y: -8rem; +} + +.-translate-y-40 { + --transform-translate-y: -10rem; +} + +.-translate-y-48 { + --transform-translate-y: -12rem; +} + +.-translate-y-56 { + --transform-translate-y: -14rem; +} + +.-translate-y-64 { + --transform-translate-y: -16rem; +} + +.-translate-y-px { + --transform-translate-y: -1px; +} + +.-translate-y-full { + --transform-translate-y: -100%; +} + +.-translate-y-1\/2 { + --transform-translate-y: -50%; +} + +.translate-y-1\/2 { + --transform-translate-y: 50%; +} + +.translate-y-full { + --transform-translate-y: 100%; +} + +.hover\:translate-x-0:hover { + --transform-translate-x: 0; +} + +.hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; +} + +.hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; +} + +.hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; +} + +.hover\:translate-x-4:hover { + --transform-translate-x: 1rem; +} + +.hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; +} + +.hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; +} + +.hover\:translate-x-8:hover { + --transform-translate-x: 2rem; +} + +.hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; +} + +.hover\:translate-x-12:hover { + --transform-translate-x: 3rem; +} + +.hover\:translate-x-16:hover { + --transform-translate-x: 4rem; +} + +.hover\:translate-x-20:hover { + --transform-translate-x: 5rem; +} + +.hover\:translate-x-24:hover { + --transform-translate-x: 6rem; +} + +.hover\:translate-x-32:hover { + --transform-translate-x: 8rem; +} + +.hover\:translate-x-40:hover { + --transform-translate-x: 10rem; +} + +.hover\:translate-x-48:hover { + --transform-translate-x: 12rem; +} + +.hover\:translate-x-56:hover { + --transform-translate-x: 14rem; +} + +.hover\:translate-x-64:hover { + --transform-translate-x: 16rem; +} + +.hover\:translate-x-px:hover { + --transform-translate-x: 1px; +} + +.hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; +} + +.hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; +} + +.hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; +} + +.hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; +} + +.hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; +} + +.hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; +} + +.hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; +} + +.hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; +} + +.hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; +} + +.hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; +} + +.hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; +} + +.hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; +} + +.hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; +} + +.hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; +} + +.hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; +} + +.hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; +} + +.hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; +} + +.hover\:-translate-x-px:hover { + --transform-translate-x: -1px; +} + +.hover\:-translate-x-full:hover { + --transform-translate-x: -100%; +} + +.hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; +} + +.hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; +} + +.hover\:translate-x-full:hover { + --transform-translate-x: 100%; +} + +.hover\:translate-y-0:hover { + --transform-translate-y: 0; +} + +.hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; +} + +.hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; +} + +.hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; +} + +.hover\:translate-y-4:hover { + --transform-translate-y: 1rem; +} + +.hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; +} + +.hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; +} + +.hover\:translate-y-8:hover { + --transform-translate-y: 2rem; +} + +.hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; +} + +.hover\:translate-y-12:hover { + --transform-translate-y: 3rem; +} + +.hover\:translate-y-16:hover { + --transform-translate-y: 4rem; +} + +.hover\:translate-y-20:hover { + --transform-translate-y: 5rem; +} + +.hover\:translate-y-24:hover { + --transform-translate-y: 6rem; +} + +.hover\:translate-y-32:hover { + --transform-translate-y: 8rem; +} + +.hover\:translate-y-40:hover { + --transform-translate-y: 10rem; +} + +.hover\:translate-y-48:hover { + --transform-translate-y: 12rem; +} + +.hover\:translate-y-56:hover { + --transform-translate-y: 14rem; +} + +.hover\:translate-y-64:hover { + --transform-translate-y: 16rem; +} + +.hover\:translate-y-px:hover { + --transform-translate-y: 1px; +} + +.hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; +} + +.hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; +} + +.hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; +} + +.hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; +} + +.hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; +} + +.hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; +} + +.hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; +} + +.hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; +} + +.hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; +} + +.hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; +} + +.hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; +} + +.hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; +} + +.hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; +} + +.hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; +} + +.hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; +} + +.hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; +} + +.hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; +} + +.hover\:-translate-y-px:hover { + --transform-translate-y: -1px; +} + +.hover\:-translate-y-full:hover { + --transform-translate-y: -100%; +} + +.hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; +} + +.hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; +} + +.hover\:translate-y-full:hover { + --transform-translate-y: 100%; +} + +.focus\:translate-x-0:focus { + --transform-translate-x: 0; +} + +.focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; +} + +.focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; +} + +.focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; +} + +.focus\:translate-x-4:focus { + --transform-translate-x: 1rem; +} + +.focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; +} + +.focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; +} + +.focus\:translate-x-8:focus { + --transform-translate-x: 2rem; +} + +.focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; +} + +.focus\:translate-x-12:focus { + --transform-translate-x: 3rem; +} + +.focus\:translate-x-16:focus { + --transform-translate-x: 4rem; +} + +.focus\:translate-x-20:focus { + --transform-translate-x: 5rem; +} + +.focus\:translate-x-24:focus { + --transform-translate-x: 6rem; +} + +.focus\:translate-x-32:focus { + --transform-translate-x: 8rem; +} + +.focus\:translate-x-40:focus { + --transform-translate-x: 10rem; +} + +.focus\:translate-x-48:focus { + --transform-translate-x: 12rem; +} + +.focus\:translate-x-56:focus { + --transform-translate-x: 14rem; +} + +.focus\:translate-x-64:focus { + --transform-translate-x: 16rem; +} + +.focus\:translate-x-px:focus { + --transform-translate-x: 1px; +} + +.focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; +} + +.focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; +} + +.focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; +} + +.focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; +} + +.focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; +} + +.focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; +} + +.focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; +} + +.focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; +} + +.focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; +} + +.focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; +} + +.focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; +} + +.focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; +} + +.focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; +} + +.focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; +} + +.focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; +} + +.focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; +} + +.focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; +} + +.focus\:-translate-x-px:focus { + --transform-translate-x: -1px; +} + +.focus\:-translate-x-full:focus { + --transform-translate-x: -100%; +} + +.focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; +} + +.focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; +} + +.focus\:translate-x-full:focus { + --transform-translate-x: 100%; +} + +.focus\:translate-y-0:focus { + --transform-translate-y: 0; +} + +.focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; +} + +.focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; +} + +.focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; +} + +.focus\:translate-y-4:focus { + --transform-translate-y: 1rem; +} + +.focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; +} + +.focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; +} + +.focus\:translate-y-8:focus { + --transform-translate-y: 2rem; +} + +.focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; +} + +.focus\:translate-y-12:focus { + --transform-translate-y: 3rem; +} + +.focus\:translate-y-16:focus { + --transform-translate-y: 4rem; +} + +.focus\:translate-y-20:focus { + --transform-translate-y: 5rem; +} + +.focus\:translate-y-24:focus { + --transform-translate-y: 6rem; +} + +.focus\:translate-y-32:focus { + --transform-translate-y: 8rem; +} + +.focus\:translate-y-40:focus { + --transform-translate-y: 10rem; +} + +.focus\:translate-y-48:focus { + --transform-translate-y: 12rem; +} + +.focus\:translate-y-56:focus { + --transform-translate-y: 14rem; +} + +.focus\:translate-y-64:focus { + --transform-translate-y: 16rem; +} + +.focus\:translate-y-px:focus { + --transform-translate-y: 1px; +} + +.focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; +} + +.focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; +} + +.focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; +} + +.focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; +} + +.focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; +} + +.focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; +} + +.focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; +} + +.focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; +} + +.focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; +} + +.focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; +} + +.focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; +} + +.focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; +} + +.focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; +} + +.focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; +} + +.focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; +} + +.focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; +} + +.focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; +} + +.focus\:-translate-y-px:focus { + --transform-translate-y: -1px; +} + +.focus\:-translate-y-full:focus { + --transform-translate-y: -100%; +} + +.focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; +} + +.focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; +} + +.focus\:translate-y-full:focus { + --transform-translate-y: 100%; +} + +.skew-x-0 { + --transform-skew-x: 0; +} + +.skew-x-3 { + --transform-skew-x: 3deg; +} + +.skew-x-6 { + --transform-skew-x: 6deg; +} + +.skew-x-12 { + --transform-skew-x: 12deg; +} + +.-skew-x-12 { + --transform-skew-x: -12deg; +} + +.-skew-x-6 { + --transform-skew-x: -6deg; +} + +.-skew-x-3 { + --transform-skew-x: -3deg; +} + +.skew-y-0 { + --transform-skew-y: 0; +} + +.skew-y-3 { + --transform-skew-y: 3deg; +} + +.skew-y-6 { + --transform-skew-y: 6deg; +} + +.skew-y-12 { + --transform-skew-y: 12deg; +} + +.-skew-y-12 { + --transform-skew-y: -12deg; +} + +.-skew-y-6 { + --transform-skew-y: -6deg; +} + +.-skew-y-3 { + --transform-skew-y: -3deg; +} + +.hover\:skew-x-0:hover { + --transform-skew-x: 0; +} + +.hover\:skew-x-3:hover { + --transform-skew-x: 3deg; +} + +.hover\:skew-x-6:hover { + --transform-skew-x: 6deg; +} + +.hover\:skew-x-12:hover { + --transform-skew-x: 12deg; +} + +.hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; +} + +.hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; +} + +.hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; +} + +.hover\:skew-y-0:hover { + --transform-skew-y: 0; +} + +.hover\:skew-y-3:hover { + --transform-skew-y: 3deg; +} + +.hover\:skew-y-6:hover { + --transform-skew-y: 6deg; +} + +.hover\:skew-y-12:hover { + --transform-skew-y: 12deg; +} + +.hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; +} + +.hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; +} + +.hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; +} + +.focus\:skew-x-0:focus { + --transform-skew-x: 0; +} + +.focus\:skew-x-3:focus { + --transform-skew-x: 3deg; +} + +.focus\:skew-x-6:focus { + --transform-skew-x: 6deg; +} + +.focus\:skew-x-12:focus { + --transform-skew-x: 12deg; +} + +.focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; +} + +.focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; +} + +.focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; +} + +.focus\:skew-y-0:focus { + --transform-skew-y: 0; +} + +.focus\:skew-y-3:focus { + --transform-skew-y: 3deg; +} + +.focus\:skew-y-6:focus { + --transform-skew-y: 6deg; +} + +.focus\:skew-y-12:focus { + --transform-skew-y: 12deg; +} + +.focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; +} + +.focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; +} + +.focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; +} + +.transition-none { + transition-property: none; +} + +.transition-all { + transition-property: all; +} + +.transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; +} + +.transition-colors { + transition-property: background-color, border-color, color, fill, stroke; +} + +.transition-opacity { + transition-property: opacity; +} + +.transition-shadow { + transition-property: box-shadow; +} + +.transition-transform { + transition-property: transform; +} + +.ease-linear { + transition-timing-function: linear; +} + +.ease-in { + transition-timing-function: cubic-bezier(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; +} + +.shadow-outline-white { + box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.45); +} + +.shadow-outline-black { + box-shadow: 0 0 0 3px hsla(0, 0%, 0%, 0.45); +} + +.shadow-outline-gray { + box-shadow: 0 0 0 3px hsla(210, 2.4%, 83.9%, 0.45); +} + +.shadow-outline-cool-gray { + box-shadow: 0 0 0 3px hsla(213, 26.3%, 85.1%, 0.45); +} + +.shadow-outline-red { + box-shadow: 0 0 0 3px hsla(0, 82.9%, 83.9%, 0.45); +} + +.shadow-outline-orange { + box-shadow: 0 0 0 3px hsla(24.399999999999977, 96.6%, 77.1%, 0.45); +} + +.shadow-outline-yellow { + box-shadow: 0 0 0 3px hsla(47.39999999999998, 95.8%, 53.1%, 0.45); +} + +.shadow-outline-green { + box-shadow: 0 0 0 3px hsla(156.10000000000002, 60.8%, 70%, 0.45); +} + +.shadow-outline-teal { + box-shadow: 0 0 0 3px hsla(183.60000000000002, 63.3%, 69%, 0.45); +} + +.shadow-outline-blue { + box-shadow: 0 0 0 3px hsla(214.70000000000005, 97.8%, 82%, 0.45); +} + +.shadow-outline-indigo { + box-shadow: 0 0 0 3px hsla(225, 92.3%, 84.7%, 0.45); +} + +.shadow-outline-purple { + box-shadow: 0 0 0 3px hsla(250.60000000000002, 93.9%, 87.1%, 0.45); +} + +.shadow-outline-pink { + box-shadow: 0 0 0 3px hsla(327.4, 82.9%, 83.9%, 0.45); +} + +.focus\:shadow-outline-white:focus { + box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.45); +} + +.focus\:shadow-outline-black:focus { + box-shadow: 0 0 0 3px hsla(0, 0%, 0%, 0.45); +} + +.focus\:shadow-outline-gray:focus { + box-shadow: 0 0 0 3px hsla(210, 2.4%, 83.9%, 0.45); +} + +.focus\:shadow-outline-cool-gray:focus { + box-shadow: 0 0 0 3px hsla(213, 26.3%, 85.1%, 0.45); +} + +.focus\:shadow-outline-red:focus { + box-shadow: 0 0 0 3px hsla(0, 82.9%, 83.9%, 0.45); +} + +.focus\:shadow-outline-orange:focus { + box-shadow: 0 0 0 3px hsla(24.399999999999977, 96.6%, 77.1%, 0.45); +} + +.focus\:shadow-outline-yellow:focus { + box-shadow: 0 0 0 3px hsla(47.39999999999998, 95.8%, 53.1%, 0.45); +} + +.focus\:shadow-outline-green:focus { + box-shadow: 0 0 0 3px hsla(156.10000000000002, 60.8%, 70%, 0.45); +} + +.focus\:shadow-outline-teal:focus { + box-shadow: 0 0 0 3px hsla(183.60000000000002, 63.3%, 69%, 0.45); +} + +.focus\:shadow-outline-blue:focus { + box-shadow: 0 0 0 3px hsla(214.70000000000005, 97.8%, 82%, 0.45); +} + +.focus\:shadow-outline-indigo:focus { + box-shadow: 0 0 0 3px hsla(225, 92.3%, 84.7%, 0.45); +} + +.focus\:shadow-outline-purple:focus { + box-shadow: 0 0 0 3px hsla(250.60000000000002, 93.9%, 87.1%, 0.45); +} + +.focus\:shadow-outline-pink:focus { + box-shadow: 0 0 0 3px hsla(327.4, 82.9%, 83.9%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-white:focus { + box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-black:focus { + box-shadow: 0 0 0 3px hsla(0, 0%, 0%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-gray:focus { + box-shadow: 0 0 0 3px hsla(210, 2.4%, 83.9%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-cool-gray:focus { + box-shadow: 0 0 0 3px hsla(213, 26.3%, 85.1%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-red:focus { + box-shadow: 0 0 0 3px hsla(0, 82.9%, 83.9%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-orange:focus { + box-shadow: 0 0 0 3px hsla(24.399999999999977, 96.6%, 77.1%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-yellow:focus { + box-shadow: 0 0 0 3px hsla(47.39999999999998, 95.8%, 53.1%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-green:focus { + box-shadow: 0 0 0 3px hsla(156.10000000000002, 60.8%, 70%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-teal:focus { + box-shadow: 0 0 0 3px hsla(183.60000000000002, 63.3%, 69%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-blue:focus { + box-shadow: 0 0 0 3px hsla(214.70000000000005, 97.8%, 82%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-indigo:focus { + box-shadow: 0 0 0 3px hsla(225, 92.3%, 84.7%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-purple:focus { + box-shadow: 0 0 0 3px hsla(250.60000000000002, 93.9%, 87.1%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-pink:focus { + box-shadow: 0 0 0 3px hsla(327.4, 82.9%, 83.9%, 0.45); +} + +@media (min-width: 640px) { + .sm\:space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); + } + + .sm\:space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); + } + + .sm\:space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); + } + + .sm\:space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); + } + + .sm\:space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); + } + + .sm\:space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); + } + + .sm\:space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); + } + + .sm\:space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); + } + + .sm\:space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); + } + + .sm\:space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); + } + + .sm\:space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); + } + + .sm\:space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); + } + + .sm\:space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); + } + + .sm\:space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); + } + + .sm\:space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); + } + + .sm\:space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); + } + + .sm\:space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); + } + + .sm\:space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); + } + + .sm\:space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); + } + + .sm\:space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); + } + + .sm\:-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); + } + + .sm\:-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); + } + + .sm\:-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); + } + + .sm\:-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); + } + + .sm\:-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); + } + + .sm\:-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); + } + + .sm\:-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); + } + + .sm\:-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); + } + + .sm\:-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); + } + + .sm\:-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); + } + + .sm\:-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); + } + + .sm\:-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); + } + + .sm\:-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); + } + + .sm\:-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); + } + + .sm\:-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); + } + + .sm\:-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); + } + + .sm\:-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); + } + + .sm\:-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; + } + + .sm\:space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; + } + + .sm\:divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); + } + + .sm\:divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); + } + + .sm\:divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); + } + + .sm\:divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); + } + + .sm\:divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); + } + + .sm\:divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; + } + + .sm\:divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; + } + + .sm\:divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; + } + + .sm\:divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; + } + + .sm\:divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; + } + + .sm\:divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; + } + + .sm\:divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + } + + .sm\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .sm\:bg-fixed { + background-attachment: fixed; + } + + .sm\:bg-local { + background-attachment: local; + } + + .sm\:bg-scroll { + background-attachment: scroll; + } + + .sm\:bg-opacity-0 { + --bg-opacity: 0; + } + + .sm\:bg-opacity-25 { + --bg-opacity: 0.25; + } + + .sm\:bg-opacity-50 { + --bg-opacity: 0.5; + } + + .sm\:bg-opacity-75 { + --bg-opacity: 0.75; + } + + .sm\:bg-opacity-100 { + --bg-opacity: 1; + } + + .sm\:hover\:bg-opacity-0:hover { + --bg-opacity: 0; + } + + .sm\:hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; + } + + .sm\:hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; + } + + .sm\:hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; + } + + .sm\:hover\:bg-opacity-100:hover { + --bg-opacity: 1; + } + + .sm\:focus\:bg-opacity-0:focus { + --bg-opacity: 0; + } + + .sm\:focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; + } + + .sm\:focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; + } + + .sm\:focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; + } + + .sm\:focus\:bg-opacity-100:focus { + --bg-opacity: 1; + } + + .sm\:bg-bottom { + background-position: bottom; + } + + .sm\:bg-center { + background-position: center; + } + + .sm\:bg-left { + background-position: left; + } + + .sm\:bg-left-bottom { + background-position: left bottom; + } + + .sm\:bg-left-top { + background-position: left top; + } + + .sm\:bg-right { + background-position: right; + } + + .sm\:bg-right-bottom { + background-position: right bottom; + } + + .sm\:bg-right-top { + background-position: right top; + } + + .sm\:bg-top { + background-position: top; + } + + .sm\:bg-repeat { + background-repeat: repeat; + } + + .sm\:bg-no-repeat { + background-repeat: no-repeat; + } + + .sm\:bg-repeat-x { + background-repeat: repeat-x; + } + + .sm\:bg-repeat-y { + background-repeat: repeat-y; + } + + .sm\:bg-repeat-round { + background-repeat: round; + } + + .sm\:bg-repeat-space { + background-repeat: space; + } + + .sm\:bg-auto { + background-size: auto; + } + + .sm\:bg-cover { + background-size: cover; + } + + .sm\:bg-contain { + background-size: contain; + } + + .sm\:border-collapse { + border-collapse: collapse; + } + + .sm\:border-separate { + border-collapse: separate; + } + + .sm\:border-opacity-0 { + --border-opacity: 0; + } + + .sm\:border-opacity-25 { + --border-opacity: 0.25; + } + + .sm\:border-opacity-50 { + --border-opacity: 0.5; + } + + .sm\:border-opacity-75 { + --border-opacity: 0.75; + } + + .sm\:border-opacity-100 { + --border-opacity: 1; + } + + .sm\:hover\:border-opacity-0:hover { + --border-opacity: 0; + } + + .sm\:hover\:border-opacity-25:hover { + --border-opacity: 0.25; + } + + .sm\:hover\:border-opacity-50:hover { + --border-opacity: 0.5; + } + + .sm\:hover\:border-opacity-75:hover { + --border-opacity: 0.75; + } + + .sm\:hover\:border-opacity-100:hover { + --border-opacity: 1; + } + + .sm\:focus\:border-opacity-0:focus { + --border-opacity: 0; + } + + .sm\:focus\:border-opacity-25:focus { + --border-opacity: 0.25; + } + + .sm\:focus\:border-opacity-50:focus { + --border-opacity: 0.5; + } + + .sm\:focus\:border-opacity-75:focus { + --border-opacity: 0.75; + } + + .sm\:focus\:border-opacity-100:focus { + --border-opacity: 1; + } + + .sm\:rounded-none { + border-radius: 0; + } + + .sm\:rounded-sm { + border-radius: 0.125rem; + } + + .sm\:rounded { + border-radius: 0.25rem; + } + + .sm\:rounded-md { + border-radius: 0.375rem; + } + + .sm\:rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; + } + + .sm\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .sm\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .sm\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .sm\:border-solid { + border-style: solid; + } + + .sm\:border-dashed { + border-style: dashed; + } + + .sm\:border-dotted { + border-style: dotted; + } + + .sm\:border-double { + border-style: double; + } + + .sm\:border-none { + border-style: none; + } + + .sm\:border-0 { + border-width: 0; + } + + .sm\:border-2 { + border-width: 2px; + } + + .sm\:border-4 { + border-width: 4px; + } + + .sm\:border-8 { + border-width: 8px; + } + + .sm\:border { + border-width: 1px; + } + + .sm\:border-t-0 { + border-top-width: 0; + } + + .sm\:border-r-0 { + border-right-width: 0; + } + + .sm\:border-b-0 { + border-bottom-width: 0; + } + + .sm\:border-l-0 { + border-left-width: 0; + } + + .sm\:border-t-2 { + border-top-width: 2px; + } + + .sm\:border-r-2 { + border-right-width: 2px; + } + + .sm\:border-b-2 { + border-bottom-width: 2px; + } + + .sm\:border-l-2 { + border-left-width: 2px; + } + + .sm\:border-t-4 { + border-top-width: 4px; + } + + .sm\:border-r-4 { + border-right-width: 4px; + } + + .sm\:border-b-4 { + border-bottom-width: 4px; + } + + .sm\:border-l-4 { + border-left-width: 4px; + } + + .sm\:border-t-8 { + border-top-width: 8px; + } + + .sm\:border-r-8 { + border-right-width: 8px; + } + + .sm\:border-b-8 { + border-bottom-width: 8px; + } + + .sm\:border-l-8 { + border-left-width: 8px; + } + + .sm\:border-t { + border-top-width: 1px; + } + + .sm\:border-r { + border-right-width: 1px; + } + + .sm\:border-b { + border-bottom-width: 1px; + } + + .sm\:border-l { + border-left-width: 1px; + } + + .sm\:box-border { + box-sizing: border-box; + } + + .sm\:box-content { + box-sizing: content-box; + } + + .sm\:cursor-auto { + cursor: auto; + } + + .sm\:cursor-default { + cursor: default; + } + + .sm\:cursor-pointer { + cursor: pointer; + } + + .sm\:cursor-wait { + cursor: wait; + } + + .sm\:cursor-text { + cursor: text; + } + + .sm\:cursor-move { + cursor: move; + } + + .sm\:cursor-not-allowed { + cursor: not-allowed; + } + + .sm\:block { + display: block; + } + + .sm\:inline-block { + display: inline-block; + } + + .sm\:inline { + display: inline; + } + + .sm\:flex { + display: flex; + } + + .sm\:inline-flex { + display: inline-flex; + } + + .sm\:table { + display: table; + } + + .sm\:table-caption { + display: table-caption; + } + + .sm\:table-cell { + display: table-cell; + } + + .sm\:table-column { + display: table-column; + } + + .sm\:table-column-group { + display: table-column-group; + } + + .sm\:table-footer-group { + display: table-footer-group; + } + + .sm\:table-header-group { + display: table-header-group; + } + + .sm\:table-row-group { + display: table-row-group; + } + + .sm\:table-row { + display: table-row; + } + + .sm\:flow-root { + display: flow-root; + } + + .sm\:grid { + display: grid; + } + + .sm\:inline-grid { + display: inline-grid; + } + + .sm\:hidden { + display: none; + } + + .theme-dark .sm\:dark\:block { + display: block; + } + + .theme-dark .sm\:dark\:inline-block { + display: inline-block; + } + + .theme-dark .sm\:dark\:inline { + display: inline; + } + + .theme-dark .sm\:dark\:flex { + display: flex; + } + + .theme-dark .sm\:dark\:inline-flex { + display: inline-flex; + } + + .theme-dark .sm\:dark\:table { + display: table; + } + + .theme-dark .sm\:dark\:table-caption { + display: table-caption; + } + + .theme-dark .sm\:dark\:table-cell { + display: table-cell; + } + + .theme-dark .sm\:dark\:table-column { + display: table-column; + } + + .theme-dark .sm\:dark\:table-column-group { + display: table-column-group; + } + + .theme-dark .sm\:dark\:table-footer-group { + display: table-footer-group; + } + + .theme-dark .sm\:dark\:table-header-group { + display: table-header-group; + } + + .theme-dark .sm\:dark\:table-row-group { + display: table-row-group; + } + + .theme-dark .sm\:dark\:table-row { + display: table-row; + } + + .theme-dark .sm\:dark\:flow-root { + display: flow-root; + } + + .theme-dark .sm\:dark\:grid { + display: grid; + } + + .theme-dark .sm\:dark\:inline-grid { + display: inline-grid; + } + + .theme-dark .sm\:dark\:hidden { + display: none; + } + + .sm\:flex-row { + flex-direction: row; + } + + .sm\:flex-row-reverse { + flex-direction: row-reverse; + } + + .sm\:flex-col { + flex-direction: column; + } + + .sm\:flex-col-reverse { + flex-direction: column-reverse; + } + + .sm\:flex-wrap { + flex-wrap: wrap; + } + + .sm\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .sm\:flex-no-wrap { + flex-wrap: nowrap; + } + + .sm\:items-start { + align-items: flex-start; + } + + .sm\:items-end { + align-items: flex-end; + } + + .sm\:items-center { + align-items: center; + } + + .sm\:items-baseline { + align-items: baseline; + } + + .sm\:items-stretch { + align-items: stretch; + } + + .sm\:self-auto { + align-self: auto; + } + + .sm\:self-start { + align-self: flex-start; + } + + .sm\:self-end { + align-self: flex-end; + } + + .sm\:self-center { + align-self: center; + } + + .sm\:self-stretch { + align-self: stretch; + } + + .sm\:justify-start { + justify-content: flex-start; + } + + .sm\:justify-end { + justify-content: flex-end; + } + + .sm\:justify-center { + justify-content: center; + } + + .sm\:justify-between { + justify-content: space-between; + } + + .sm\:justify-around { + justify-content: space-around; + } + + .sm\:justify-evenly { + justify-content: space-evenly; + } + + .sm\:content-center { + align-content: center; + } + + .sm\:content-start { + align-content: flex-start; + } + + .sm\:content-end { + align-content: flex-end; + } + + .sm\:content-between { + align-content: space-between; + } + + .sm\:content-around { + align-content: space-around; + } + + .sm\:flex-1 { + flex: 1 1 0%; + } + + .sm\:flex-auto { + flex: 1 1 auto; + } + + .sm\:flex-initial { + flex: 0 1 auto; + } + + .sm\:flex-none { + flex: none; + } + + .sm\:flex-grow-0 { + flex-grow: 0; + } + + .sm\:flex-grow { + flex-grow: 1; + } + + .sm\:flex-shrink-0 { + flex-shrink: 0; + } + + .sm\:flex-shrink { + flex-shrink: 1; + } + + .sm\:order-1 { + order: 1; + } + + .sm\:order-2 { + order: 2; + } + + .sm\:order-3 { + order: 3; + } + + .sm\:order-4 { + order: 4; + } + + .sm\:order-5 { + order: 5; + } + + .sm\:order-6 { + order: 6; + } + + .sm\:order-7 { + order: 7; + } + + .sm\:order-8 { + order: 8; + } + + .sm\:order-9 { + order: 9; + } + + .sm\:order-10 { + order: 10; + } + + .sm\:order-11 { + order: 11; + } + + .sm\:order-12 { + order: 12; + } + + .sm\:order-first { + order: -9999; + } + + .sm\:order-last { + order: 9999; + } + + .sm\:order-none { + order: 0; + } + + .sm\:float-right { + float: right; + } + + .sm\:float-left { + float: left; + } + + .sm\:float-none { + float: none; + } + + .sm\:clearfix:after { + content: ""; + display: table; + clear: both; + } + + .sm\:clear-left { + clear: left; + } + + .sm\:clear-right { + clear: right; + } + + .sm\:clear-both { + clear: both; + } + + .sm\:clear-none { + clear: none; + } + + .sm\:font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .sm\:font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; + } + + .sm\:font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .sm\:font-hairline { + font-weight: 100; + } + + .sm\:font-thin { + font-weight: 200; + } + + .sm\:font-light { + font-weight: 300; + } + + .sm\:font-normal { + font-weight: 400; + } + + .sm\:font-medium { + font-weight: 500; + } + + .sm\:font-semibold { + font-weight: 600; + } + + .sm\:font-bold { + font-weight: 700; + } + + .sm\:font-extrabold { + font-weight: 800; + } + + .sm\:font-black { + font-weight: 900; + } + + .sm\:hover\:font-hairline:hover { + font-weight: 100; + } + + .sm\:hover\:font-thin:hover { + font-weight: 200; + } + + .sm\:hover\:font-light:hover { + font-weight: 300; + } + + .sm\:hover\:font-normal:hover { + font-weight: 400; + } + + .sm\:hover\:font-medium:hover { + font-weight: 500; + } + + .sm\:hover\:font-semibold:hover { + font-weight: 600; + } + + .sm\:hover\:font-bold:hover { + font-weight: 700; + } + + .sm\:hover\:font-extrabold:hover { + font-weight: 800; + } + + .sm\:hover\:font-black:hover { + font-weight: 900; + } + + .sm\:focus\:font-hairline:focus { + font-weight: 100; + } + + .sm\:focus\:font-thin:focus { + font-weight: 200; + } + + .sm\:focus\:font-light:focus { + font-weight: 300; + } + + .sm\:focus\:font-normal:focus { + font-weight: 400; + } + + .sm\:focus\:font-medium:focus { + font-weight: 500; + } + + .sm\:focus\:font-semibold:focus { + font-weight: 600; + } + + .sm\:focus\:font-bold:focus { + font-weight: 700; + } + + .sm\:focus\:font-extrabold:focus { + font-weight: 800; + } + + .sm\:focus\:font-black:focus { + font-weight: 900; + } + + .sm\:h-0 { + height: 0; + } + + .sm\:h-1 { + height: 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-8 { + height: 2rem; + } + + .sm\:h-10 { + height: 2.5rem; + } + + .sm\:h-12 { + height: 3rem; + } + + .sm\:h-16 { + height: 4rem; + } + + .sm\:h-20 { + height: 5rem; + } + + .sm\:h-24 { + height: 6rem; + } + + .sm\:h-32 { + height: 8rem; + } + + .sm\:h-40 { + height: 10rem; + } + + .sm\:h-48 { + height: 12rem; + } + + .sm\:h-56 { + height: 14rem; + } + + .sm\:h-64 { + height: 16rem; + } + + .sm\:h-auto { + height: auto; + } + + .sm\:h-px { + height: 1px; + } + + .sm\:h-full { + height: 100%; + } + + .sm\:h-screen { + height: 100vh; + } + + .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: 4rem; + } + + .sm\:leading-3 { + line-height: .75rem; + } + + .sm\:leading-4 { + line-height: 1rem; + } + + .sm\:leading-5 { + line-height: 1.25rem; + } + + .sm\:leading-6 { + line-height: 1.5rem; + } + + .sm\:leading-7 { + line-height: 1.75rem; + } + + .sm\:leading-8 { + line-height: 2rem; + } + + .sm\:leading-9 { + line-height: 2.25rem; + } + + .sm\:leading-10 { + line-height: 2.5rem; + } + + .sm\:leading-none { + line-height: 1; + } + + .sm\:leading-tight { + line-height: 1.25; + } + + .sm\:leading-snug { + line-height: 1.375; + } + + .sm\:leading-normal { + line-height: 1.5; + } + + .sm\:leading-relaxed { + line-height: 1.625; + } + + .sm\:leading-loose { + line-height: 2; + } + + .sm\:list-inside { + list-style-position: inside; + } + + .sm\:list-outside { + list-style-position: outside; + } + + .sm\:list-none { + list-style-type: none; + } + + .sm\:list-disc { + list-style-type: disc; + } + + .sm\:list-decimal { + list-style-type: decimal; + } + + .sm\:m-0 { + margin: 0; + } + + .sm\:m-1 { + margin: 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-8 { + margin: 2rem; + } + + .sm\:m-10 { + margin: 2.5rem; + } + + .sm\:m-12 { + margin: 3rem; + } + + .sm\:m-16 { + margin: 4rem; + } + + .sm\:m-20 { + margin: 5rem; + } + + .sm\:m-24 { + margin: 6rem; + } + + .sm\:m-32 { + margin: 8rem; + } + + .sm\:m-40 { + margin: 10rem; + } + + .sm\:m-48 { + margin: 12rem; + } + + .sm\:m-56 { + margin: 14rem; + } + + .sm\:m-64 { + margin: 16rem; + } + + .sm\:m-auto { + margin: auto; + } + + .sm\:m-px { + margin: 1px; + } + + .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-8 { + margin: -2rem; + } + + .sm\:-m-10 { + margin: -2.5rem; + } + + .sm\:-m-12 { + margin: -3rem; + } + + .sm\:-m-16 { + margin: -4rem; + } + + .sm\:-m-20 { + margin: -5rem; + } + + .sm\:-m-24 { + margin: -6rem; + } + + .sm\:-m-32 { + margin: -8rem; + } + + .sm\:-m-40 { + margin: -10rem; + } + + .sm\:-m-48 { + margin: -12rem; + } + + .sm\:-m-56 { + margin: -14rem; + } + + .sm\:-m-64 { + margin: -16rem; + } + + .sm\:-m-px { + margin: -1px; + } + + .sm\:my-0 { + margin-top: 0; + margin-bottom: 0; + } + + .sm\:mx-0 { + margin-left: 0; + margin-right: 0; + } + + .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-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .sm\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .sm\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .sm\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .sm\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .sm\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .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-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .sm\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .sm\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .sm\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .sm\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .sm\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .sm\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .sm\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .sm\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .sm\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .sm\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .sm\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .sm\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .sm\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .sm\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .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-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .sm\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .sm\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .sm\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .sm\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .sm\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .sm\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .sm\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .sm\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .sm\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .sm\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .sm\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .sm\:mt-0 { + margin-top: 0; + } + + .sm\:mr-0 { + margin-right: 0; + } + + .sm\:mb-0 { + margin-bottom: 0; + } + + .sm\:ml-0 { + margin-left: 0; + } + + .sm\:mt-1 { + margin-top: 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-8 { + margin-top: 2rem; + } + + .sm\:mr-8 { + margin-right: 2rem; + } + + .sm\:mb-8 { + margin-bottom: 2rem; + } + + .sm\:ml-8 { + margin-left: 2rem; + } + + .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-12 { + margin-top: 3rem; + } + + .sm\:mr-12 { + margin-right: 3rem; + } + + .sm\:mb-12 { + margin-bottom: 3rem; + } + + .sm\:ml-12 { + margin-left: 3rem; + } + + .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-32 { + margin-top: 8rem; + } + + .sm\:mr-32 { + margin-right: 8rem; + } + + .sm\:mb-32 { + margin-bottom: 8rem; + } + + .sm\:ml-32 { + margin-left: 8rem; + } + + .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-48 { + margin-top: 12rem; + } + + .sm\:mr-48 { + margin-right: 12rem; + } + + .sm\:mb-48 { + margin-bottom: 12rem; + } + + .sm\:ml-48 { + margin-left: 12rem; + } + + .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-64 { + margin-top: 16rem; + } + + .sm\:mr-64 { + margin-right: 16rem; + } + + .sm\:mb-64 { + margin-bottom: 16rem; + } + + .sm\:ml-64 { + margin-left: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + } + + .sm\:-mr-8 { + margin-right: -2rem; + } + + .sm\:-mb-8 { + margin-bottom: -2rem; + } + + .sm\:-ml-8 { + margin-left: -2rem; + } + + .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-12 { + margin-top: -3rem; + } + + .sm\:-mr-12 { + margin-right: -3rem; + } + + .sm\:-mb-12 { + margin-bottom: -3rem; + } + + .sm\:-ml-12 { + margin-left: -3rem; + } + + .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-32 { + margin-top: -8rem; + } + + .sm\:-mr-32 { + margin-right: -8rem; + } + + .sm\:-mb-32 { + margin-bottom: -8rem; + } + + .sm\:-ml-32 { + margin-left: -8rem; + } + + .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-48 { + margin-top: -12rem; + } + + .sm\:-mr-48 { + margin-right: -12rem; + } + + .sm\:-mb-48 { + margin-bottom: -12rem; + } + + .sm\:-ml-48 { + margin-left: -12rem; + } + + .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-64 { + margin-top: -16rem; + } + + .sm\:-mr-64 { + margin-right: -16rem; + } + + .sm\:-mb-64 { + margin-bottom: -16rem; + } + + .sm\:-ml-64 { + margin-left: -16rem; + } + + .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\:max-h-0 { + max-height: 0; + } + + .sm\:max-h-full { + max-height: 100%; + } + + .sm\:max-h-screen { + max-height: 100vh; + } + + .sm\:max-h-xl { + max-height: 36rem; + } + + .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-full { + max-width: 100%; + } + + .sm\:max-w-screen-sm { + max-width: 640px; + } + + .sm\:max-w-screen-md { + max-width: 768px; + } + + .sm\:max-w-screen-lg { + max-width: 1024px; + } + + .sm\:max-w-screen-xl { + max-width: 1280px; + } + + .sm\:min-h-0 { + min-height: 0; + } + + .sm\:min-h-full { + min-height: 100%; + } + + .sm\:min-h-screen { + min-height: 100vh; + } + + .sm\:min-w-0 { + min-width: 0; + } + + .sm\:min-w-full { + min-width: 100%; + } + + .sm\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .sm\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .sm\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .sm\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .sm\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .sm\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .sm\:object-center { + -o-object-position: center; + object-position: center; + } + + .sm\:object-left { + -o-object-position: left; + object-position: left; + } + + .sm\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .sm\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .sm\:object-right { + -o-object-position: right; + object-position: right; + } + + .sm\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .sm\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .sm\:object-top { + -o-object-position: top; + object-position: top; + } + + .sm\:opacity-0 { + opacity: 0; + } + + .sm\:opacity-25 { + opacity: 0.25; + } + + .sm\:opacity-50 { + opacity: 0.5; + } + + .sm\:opacity-75 { + opacity: 0.75; + } + + .sm\:opacity-100 { + opacity: 1; + } + + .sm\:hover\:opacity-0:hover { + opacity: 0; + } + + .sm\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .sm\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .sm\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .sm\:hover\:opacity-100:hover { + opacity: 1; + } + + .sm\:focus\:opacity-0:focus { + opacity: 0; + } + + .sm\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .sm\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .sm\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .sm\:focus\:opacity-100:focus { + opacity: 1; + } + + .sm\:outline-none { + outline: 0; + } + + .sm\:focus\:outline-none:focus { + outline: 0; + } + + .sm\:overflow-auto { + overflow: auto; + } + + .sm\:overflow-hidden { + overflow: hidden; + } + + .sm\:overflow-visible { + overflow: visible; + } + + .sm\:overflow-scroll { + overflow: scroll; + } + + .sm\:overflow-x-auto { + overflow-x: auto; + } + + .sm\:overflow-y-auto { + overflow-y: auto; + } + + .sm\:overflow-x-hidden { + overflow-x: hidden; + } + + .sm\:overflow-y-hidden { + overflow-y: hidden; + } + + .sm\:overflow-x-visible { + overflow-x: visible; + } + + .sm\:overflow-y-visible { + overflow-y: visible; + } + + .sm\:overflow-x-scroll { + overflow-x: scroll; + } + + .sm\:overflow-y-scroll { + overflow-y: scroll; + } + + .sm\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .sm\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + + .sm\:p-0 { + padding: 0; + } + + .sm\:p-1 { + padding: 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-8 { + padding: 2rem; + } + + .sm\:p-10 { + padding: 2.5rem; + } + + .sm\:p-12 { + padding: 3rem; + } + + .sm\:p-16 { + padding: 4rem; + } + + .sm\:p-20 { + padding: 5rem; + } + + .sm\:p-24 { + padding: 6rem; + } + + .sm\:p-32 { + padding: 8rem; + } + + .sm\:p-40 { + padding: 10rem; + } + + .sm\:p-48 { + padding: 12rem; + } + + .sm\:p-56 { + padding: 14rem; + } + + .sm\:p-64 { + padding: 16rem; + } + + .sm\:p-px { + padding: 1px; + } + + .sm\:py-0 { + padding-top: 0; + padding-bottom: 0; + } + + .sm\:px-0 { + padding-left: 0; + padding-right: 0; + } + + .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-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .sm\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .sm\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .sm\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .sm\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .sm\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .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-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .sm\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .sm\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .sm\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .sm\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .sm\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .sm\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .sm\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .sm\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .sm\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .sm\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .sm\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .sm\:pt-0 { + padding-top: 0; + } + + .sm\:pr-0 { + padding-right: 0; + } + + .sm\:pb-0 { + padding-bottom: 0; + } + + .sm\:pl-0 { + padding-left: 0; + } + + .sm\:pt-1 { + padding-top: 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-8 { + padding-top: 2rem; + } + + .sm\:pr-8 { + padding-right: 2rem; + } + + .sm\:pb-8 { + padding-bottom: 2rem; + } + + .sm\:pl-8 { + padding-left: 2rem; + } + + .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-12 { + padding-top: 3rem; + } + + .sm\:pr-12 { + padding-right: 3rem; + } + + .sm\:pb-12 { + padding-bottom: 3rem; + } + + .sm\:pl-12 { + padding-left: 3rem; + } + + .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-32 { + padding-top: 8rem; + } + + .sm\:pr-32 { + padding-right: 8rem; + } + + .sm\:pb-32 { + padding-bottom: 8rem; + } + + .sm\:pl-32 { + padding-left: 8rem; + } + + .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-48 { + padding-top: 12rem; + } + + .sm\:pr-48 { + padding-right: 12rem; + } + + .sm\:pb-48 { + padding-bottom: 12rem; + } + + .sm\:pl-48 { + padding-left: 12rem; + } + + .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-64 { + padding-top: 16rem; + } + + .sm\:pr-64 { + padding-right: 16rem; + } + + .sm\:pb-64 { + padding-bottom: 16rem; + } + + .sm\:pl-64 { + padding-left: 16rem; + } + + .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\:placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; + } + + .sm\:pointer-events-none { + pointer-events: none; + } + + .sm\:pointer-events-auto { + pointer-events: auto; + } + + .sm\:static { + position: static; + } + + .sm\:fixed { + position: fixed; + } + + .sm\:absolute { + position: absolute; + } + + .sm\:relative { + position: relative; + } + + .sm\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .sm\:inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .sm\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .sm\:inset-y-0 { + top: 0; + bottom: 0; + } + + .sm\:inset-x-0 { + right: 0; + left: 0; + } + + .sm\:inset-y-auto { + top: auto; + bottom: auto; + } + + .sm\:inset-x-auto { + right: auto; + left: auto; + } + + .sm\:top-0 { + top: 0; + } + + .sm\:right-0 { + right: 0; + } + + .sm\:bottom-0 { + bottom: 0; + } + + .sm\:left-0 { + left: 0; + } + + .sm\:top-auto { + top: auto; + } + + .sm\:right-auto { + right: auto; + } + + .sm\:bottom-auto { + bottom: auto; + } + + .sm\:left-auto { + left: auto; + } + + .sm\:resize-none { + resize: none; + } + + .sm\:resize-y { + resize: vertical; + } + + .sm\:resize-x { + resize: horizontal; + } + + .sm\:resize { + resize: both; + } + + .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-opacity-0 { + --text-opacity: 0; + } + + .sm\:text-opacity-25 { + --text-opacity: 0.25; + } + + .sm\:text-opacity-50 { + --text-opacity: 0.5; + } + + .sm\:text-opacity-75 { + --text-opacity: 0.75; + } + + .sm\:text-opacity-100 { + --text-opacity: 1; + } + + .sm\:hover\:text-opacity-0:hover { + --text-opacity: 0; + } + + .sm\:hover\:text-opacity-25:hover { + --text-opacity: 0.25; + } + + .sm\:hover\:text-opacity-50:hover { + --text-opacity: 0.5; + } + + .sm\:hover\:text-opacity-75:hover { + --text-opacity: 0.75; + } + + .sm\:hover\:text-opacity-100:hover { + --text-opacity: 1; + } + + .sm\:focus\:text-opacity-0:focus { + --text-opacity: 0; + } + + .sm\:focus\:text-opacity-25:focus { + --text-opacity: 0.25; + } + + .sm\:focus\:text-opacity-50:focus { + --text-opacity: 0.5; + } + + .sm\:focus\:text-opacity-75:focus { + --text-opacity: 0.75; + } + + .sm\:focus\:text-opacity-100:focus { + --text-opacity: 1; + } + + .sm\:italic { + font-style: italic; + } + + .sm\:not-italic { + font-style: normal; + } + + .sm\:uppercase { + text-transform: uppercase; + } + + .sm\:lowercase { + text-transform: lowercase; + } + + .sm\:capitalize { + text-transform: capitalize; + } + + .sm\:normal-case { + text-transform: none; + } + + .sm\:underline { + text-decoration: underline; + } + + .sm\:line-through { + text-decoration: line-through; + } + + .sm\:no-underline { + text-decoration: none; + } + + .sm\:hover\:underline:hover { + text-decoration: underline; + } + + .sm\:hover\:line-through:hover { + text-decoration: line-through; + } + + .sm\:hover\:no-underline:hover { + text-decoration: none; + } + + .sm\:focus\:underline:focus { + text-decoration: underline; + } + + .sm\:focus\:line-through:focus { + text-decoration: line-through; + } + + .sm\:focus\:no-underline:focus { + text-decoration: none; + } + + .sm\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .sm\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .sm\:tracking-tighter { + letter-spacing: -0.05em; + } + + .sm\:tracking-tight { + letter-spacing: -0.025em; + } + + .sm\:tracking-normal { + letter-spacing: 0; + } + + .sm\:tracking-wide { + letter-spacing: 0.025em; + } + + .sm\:tracking-wider { + letter-spacing: 0.05em; + } + + .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-no-wrap { + white-space: nowrap; + } + + .sm\:whitespace-pre { + white-space: pre; + } + + .sm\:whitespace-pre-line { + white-space: pre-line; + } + + .sm\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .sm\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .sm\:break-words { + overflow-wrap: break-word; + } + + .sm\:break-all { + word-break: break-all; + } + + .sm\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .sm\:w-0 { + width: 0; + } + + .sm\:w-1 { + width: 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-8 { + width: 2rem; + } + + .sm\:w-10 { + width: 2.5rem; + } + + .sm\:w-12 { + width: 3rem; + } + + .sm\:w-16 { + width: 4rem; + } + + .sm\:w-20 { + width: 5rem; + } + + .sm\:w-24 { + width: 6rem; + } + + .sm\:w-32 { + width: 8rem; + } + + .sm\:w-40 { + width: 10rem; + } + + .sm\:w-48 { + width: 12rem; + } + + .sm\:w-56 { + width: 14rem; + } + + .sm\:w-64 { + width: 16rem; + } + + .sm\:w-auto { + width: auto; + } + + .sm\:w-px { + width: 1px; + } + + .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\:gap-0 { + grid-gap: 0; + gap: 0; + } + + .sm\:gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; + } + + .sm\:gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; + } + + .sm\:gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; + } + + .sm\:gap-4 { + grid-gap: 1rem; + gap: 1rem; + } + + .sm\:gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; + } + + .sm\:gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; + } + + .sm\:gap-8 { + grid-gap: 2rem; + gap: 2rem; + } + + .sm\:gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; + } + + .sm\:gap-12 { + grid-gap: 3rem; + gap: 3rem; + } + + .sm\:gap-16 { + grid-gap: 4rem; + gap: 4rem; + } + + .sm\:gap-20 { + grid-gap: 5rem; + gap: 5rem; + } + + .sm\:gap-24 { + grid-gap: 6rem; + gap: 6rem; + } + + .sm\:gap-32 { + grid-gap: 8rem; + gap: 8rem; + } + + .sm\:gap-40 { + grid-gap: 10rem; + gap: 10rem; + } + + .sm\:gap-48 { + grid-gap: 12rem; + gap: 12rem; + } + + .sm\:gap-56 { + grid-gap: 14rem; + gap: 14rem; + } + + .sm\:gap-64 { + grid-gap: 16rem; + gap: 16rem; + } + + .sm\:gap-px { + grid-gap: 1px; + gap: 1px; + } + + .sm\:col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; + } + + .sm\:col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .sm\:col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .sm\:col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .sm\:col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .sm\:col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .sm\:col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .sm\:col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .sm\:col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .sm\:col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .sm\:col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .sm\:col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .sm\:col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .sm\:col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .sm\:col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .sm\:col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .sm\:col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .sm\:col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .sm\:col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; + } + + .sm\:row-gap-0 { + grid-row-gap: 0; + row-gap: 0; + } + + .sm\:row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; + } + + .sm\:row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; + } + + .sm\:row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; + } + + .sm\:row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; + } + + .sm\:row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; + } + + .sm\:row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; + } + + .sm\:row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; + } + + .sm\:row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; + } + + .sm\:row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; + } + + .sm\:row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; + } + + .sm\:row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; + } + + .sm\:row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; + } + + .sm\:row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; + } + + .sm\:row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; + } + + .sm\:row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; + } + + .sm\:row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; + } + + .sm\:row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; + } + + .sm\:row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; + } + + .sm\:grid-flow-row { + grid-auto-flow: row; + } + + .sm\:grid-flow-col { + grid-auto-flow: column; + } + + .sm\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .sm\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .sm\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .sm\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .sm\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .sm\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .sm\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .sm\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .sm\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .sm\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .sm\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .sm\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .sm\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .sm\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .sm\:grid-cols-none { + grid-template-columns: none; + } + + .sm\:col-auto { + grid-column: auto; + } + + .sm\:col-span-1 { + grid-column: span 1 / span 1; + } + + .sm\:col-span-2 { + grid-column: span 2 / span 2; + } + + .sm\:col-span-3 { + grid-column: span 3 / span 3; + } + + .sm\:col-span-4 { + grid-column: span 4 / span 4; + } + + .sm\:col-span-5 { + grid-column: span 5 / span 5; + } + + .sm\:col-span-6 { + grid-column: span 6 / span 6; + } + + .sm\:col-span-7 { + grid-column: span 7 / span 7; + } + + .sm\:col-span-8 { + grid-column: span 8 / span 8; + } + + .sm\:col-span-9 { + grid-column: span 9 / span 9; + } + + .sm\:col-span-10 { + grid-column: span 10 / span 10; + } + + .sm\:col-span-11 { + grid-column: span 11 / span 11; + } + + .sm\:col-span-12 { + grid-column: span 12 / span 12; + } + + .sm\:col-start-1 { + grid-column-start: 1; + } + + .sm\:col-start-2 { + grid-column-start: 2; + } + + .sm\:col-start-3 { + grid-column-start: 3; + } + + .sm\:col-start-4 { + grid-column-start: 4; + } + + .sm\:col-start-5 { + grid-column-start: 5; + } + + .sm\:col-start-6 { + grid-column-start: 6; + } + + .sm\:col-start-7 { + grid-column-start: 7; + } + + .sm\:col-start-8 { + grid-column-start: 8; + } + + .sm\:col-start-9 { + grid-column-start: 9; + } + + .sm\:col-start-10 { + grid-column-start: 10; + } + + .sm\:col-start-11 { + grid-column-start: 11; + } + + .sm\:col-start-12 { + grid-column-start: 12; + } + + .sm\:col-start-13 { + grid-column-start: 13; + } + + .sm\:col-start-auto { + grid-column-start: auto; + } + + .sm\:col-end-1 { + grid-column-end: 1; + } + + .sm\:col-end-2 { + grid-column-end: 2; + } + + .sm\:col-end-3 { + grid-column-end: 3; + } + + .sm\:col-end-4 { + grid-column-end: 4; + } + + .sm\:col-end-5 { + grid-column-end: 5; + } + + .sm\:col-end-6 { + grid-column-end: 6; + } + + .sm\:col-end-7 { + grid-column-end: 7; + } + + .sm\:col-end-8 { + grid-column-end: 8; + } + + .sm\:col-end-9 { + grid-column-end: 9; + } + + .sm\:col-end-10 { + grid-column-end: 10; + } + + .sm\:col-end-11 { + grid-column-end: 11; + } + + .sm\:col-end-12 { + grid-column-end: 12; + } + + .sm\:col-end-13 { + grid-column-end: 13; + } + + .sm\:col-end-auto { + grid-column-end: auto; + } + + .sm\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .sm\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .sm\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .sm\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .sm\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .sm\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .sm\:grid-rows-none { + grid-template-rows: none; + } + + .sm\:row-auto { + grid-row: auto; + } + + .sm\:row-span-1 { + grid-row: span 1 / span 1; + } + + .sm\:row-span-2 { + grid-row: span 2 / span 2; + } + + .sm\:row-span-3 { + grid-row: span 3 / span 3; + } + + .sm\:row-span-4 { + grid-row: span 4 / span 4; + } + + .sm\:row-span-5 { + grid-row: span 5 / span 5; + } + + .sm\:row-span-6 { + grid-row: span 6 / span 6; + } + + .sm\:row-start-1 { + grid-row-start: 1; + } + + .sm\:row-start-2 { + grid-row-start: 2; + } + + .sm\:row-start-3 { + grid-row-start: 3; + } + + .sm\:row-start-4 { + grid-row-start: 4; + } + + .sm\:row-start-5 { + grid-row-start: 5; + } + + .sm\:row-start-6 { + grid-row-start: 6; + } + + .sm\:row-start-7 { + grid-row-start: 7; + } + + .sm\:row-start-auto { + grid-row-start: auto; + } + + .sm\:row-end-1 { + grid-row-end: 1; + } + + .sm\:row-end-2 { + grid-row-end: 2; + } + + .sm\:row-end-3 { + grid-row-end: 3; + } + + .sm\:row-end-4 { + grid-row-end: 4; + } + + .sm\:row-end-5 { + grid-row-end: 5; + } + + .sm\:row-end-6 { + grid-row-end: 6; + } + + .sm\:row-end-7 { + grid-row-end: 7; + } + + .sm\:row-end-auto { + grid-row-end: auto; + } + + .sm\:transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); + } + + .sm\:transform-none { + transform: none; + } + + .sm\:origin-center { + transform-origin: center; + } + + .sm\:origin-top { + transform-origin: top; + } + + .sm\:origin-top-right { + transform-origin: top right; + } + + .sm\:origin-right { + transform-origin: right; + } + + .sm\:origin-bottom-right { + transform-origin: bottom right; + } + + .sm\:origin-bottom { + transform-origin: bottom; + } + + .sm\:origin-bottom-left { + transform-origin: bottom left; + } + + .sm\:origin-left { + transform-origin: left; + } + + .sm\:origin-top-left { + transform-origin: top left; + } + + .sm\:scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .sm\:scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .sm\:scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .sm\:scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .sm\:scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .sm\:scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .sm\:scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .sm\:scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .sm\:scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .sm\:scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .sm\:scale-x-0 { + --transform-scale-x: 0; + } + + .sm\:scale-x-50 { + --transform-scale-x: .5; + } + + .sm\:scale-x-75 { + --transform-scale-x: .75; + } + + .sm\:scale-x-90 { + --transform-scale-x: .9; + } + + .sm\:scale-x-95 { + --transform-scale-x: .95; + } + + .sm\:scale-x-100 { + --transform-scale-x: 1; + } + + .sm\:scale-x-105 { + --transform-scale-x: 1.05; + } + + .sm\:scale-x-110 { + --transform-scale-x: 1.1; + } + + .sm\:scale-x-125 { + --transform-scale-x: 1.25; + } + + .sm\:scale-x-150 { + --transform-scale-x: 1.5; + } + + .sm\:scale-y-0 { + --transform-scale-y: 0; + } + + .sm\:scale-y-50 { + --transform-scale-y: .5; + } + + .sm\:scale-y-75 { + --transform-scale-y: .75; + } + + .sm\:scale-y-90 { + --transform-scale-y: .9; + } + + .sm\:scale-y-95 { + --transform-scale-y: .95; + } + + .sm\:scale-y-100 { + --transform-scale-y: 1; + } + + .sm\:scale-y-105 { + --transform-scale-y: 1.05; + } + + .sm\:scale-y-110 { + --transform-scale-y: 1.1; + } + + .sm\:scale-y-125 { + --transform-scale-y: 1.25; + } + + .sm\:scale-y-150 { + --transform-scale-y: 1.5; + } + + .sm\:hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .sm\:hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .sm\:hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .sm\:hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .sm\:hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .sm\:hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .sm\:hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .sm\:hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .sm\:hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .sm\:hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .sm\:hover\:scale-x-0:hover { + --transform-scale-x: 0; + } + + .sm\:hover\:scale-x-50:hover { + --transform-scale-x: .5; + } + + .sm\:hover\:scale-x-75:hover { + --transform-scale-x: .75; + } + + .sm\:hover\:scale-x-90:hover { + --transform-scale-x: .9; + } + + .sm\:hover\:scale-x-95:hover { + --transform-scale-x: .95; + } + + .sm\:hover\:scale-x-100:hover { + --transform-scale-x: 1; + } + + .sm\:hover\:scale-x-105:hover { + --transform-scale-x: 1.05; + } + + .sm\:hover\:scale-x-110:hover { + --transform-scale-x: 1.1; + } + + .sm\:hover\:scale-x-125:hover { + --transform-scale-x: 1.25; + } + + .sm\:hover\:scale-x-150:hover { + --transform-scale-x: 1.5; + } + + .sm\:hover\:scale-y-0:hover { + --transform-scale-y: 0; + } + + .sm\:hover\:scale-y-50:hover { + --transform-scale-y: .5; + } + + .sm\:hover\:scale-y-75:hover { + --transform-scale-y: .75; + } + + .sm\:hover\:scale-y-90:hover { + --transform-scale-y: .9; + } + + .sm\:hover\:scale-y-95:hover { + --transform-scale-y: .95; + } + + .sm\:hover\:scale-y-100:hover { + --transform-scale-y: 1; + } + + .sm\:hover\:scale-y-105:hover { + --transform-scale-y: 1.05; + } + + .sm\:hover\:scale-y-110:hover { + --transform-scale-y: 1.1; + } + + .sm\:hover\:scale-y-125:hover { + --transform-scale-y: 1.25; + } + + .sm\:hover\:scale-y-150:hover { + --transform-scale-y: 1.5; + } + + .sm\:focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .sm\:focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .sm\:focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .sm\:focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .sm\:focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .sm\:focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .sm\:focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .sm\:focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .sm\:focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .sm\:focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .sm\:focus\:scale-x-0:focus { + --transform-scale-x: 0; + } + + .sm\:focus\:scale-x-50:focus { + --transform-scale-x: .5; + } + + .sm\:focus\:scale-x-75:focus { + --transform-scale-x: .75; + } + + .sm\:focus\:scale-x-90:focus { + --transform-scale-x: .9; + } + + .sm\:focus\:scale-x-95:focus { + --transform-scale-x: .95; + } + + .sm\:focus\:scale-x-100:focus { + --transform-scale-x: 1; + } + + .sm\:focus\:scale-x-105:focus { + --transform-scale-x: 1.05; + } + + .sm\:focus\:scale-x-110:focus { + --transform-scale-x: 1.1; + } + + .sm\:focus\:scale-x-125:focus { + --transform-scale-x: 1.25; + } + + .sm\:focus\:scale-x-150:focus { + --transform-scale-x: 1.5; + } + + .sm\:focus\:scale-y-0:focus { + --transform-scale-y: 0; + } + + .sm\:focus\:scale-y-50:focus { + --transform-scale-y: .5; + } + + .sm\:focus\:scale-y-75:focus { + --transform-scale-y: .75; + } + + .sm\:focus\:scale-y-90:focus { + --transform-scale-y: .9; + } + + .sm\:focus\:scale-y-95:focus { + --transform-scale-y: .95; + } + + .sm\:focus\:scale-y-100:focus { + --transform-scale-y: 1; + } + + .sm\:focus\:scale-y-105:focus { + --transform-scale-y: 1.05; + } + + .sm\:focus\:scale-y-110:focus { + --transform-scale-y: 1.1; + } + + .sm\:focus\:scale-y-125:focus { + --transform-scale-y: 1.25; + } + + .sm\:focus\:scale-y-150:focus { + --transform-scale-y: 1.5; + } + + .sm\:rotate-0 { + --transform-rotate: 0; + } + + .sm\:rotate-45 { + --transform-rotate: 45deg; + } + + .sm\:rotate-90 { + --transform-rotate: 90deg; + } + + .sm\:rotate-180 { + --transform-rotate: 180deg; + } + + .sm\:-rotate-180 { + --transform-rotate: -180deg; + } + + .sm\:-rotate-90 { + --transform-rotate: -90deg; + } + + .sm\:-rotate-45 { + --transform-rotate: -45deg; + } + + .sm\:hover\:rotate-0:hover { + --transform-rotate: 0; + } + + .sm\:hover\:rotate-45:hover { + --transform-rotate: 45deg; + } + + .sm\:hover\:rotate-90:hover { + --transform-rotate: 90deg; + } + + .sm\:hover\:rotate-180:hover { + --transform-rotate: 180deg; + } + + .sm\:hover\:-rotate-180:hover { + --transform-rotate: -180deg; + } + + .sm\:hover\:-rotate-90:hover { + --transform-rotate: -90deg; + } + + .sm\:hover\:-rotate-45:hover { + --transform-rotate: -45deg; + } + + .sm\:focus\:rotate-0:focus { + --transform-rotate: 0; + } + + .sm\:focus\:rotate-45:focus { + --transform-rotate: 45deg; + } + + .sm\:focus\:rotate-90:focus { + --transform-rotate: 90deg; + } + + .sm\:focus\:rotate-180:focus { + --transform-rotate: 180deg; + } + + .sm\:focus\:-rotate-180:focus { + --transform-rotate: -180deg; + } + + .sm\:focus\:-rotate-90:focus { + --transform-rotate: -90deg; + } + + .sm\:focus\:-rotate-45:focus { + --transform-rotate: -45deg; + } + + .sm\:translate-x-0 { + --transform-translate-x: 0; + } + + .sm\:translate-x-1 { + --transform-translate-x: 0.25rem; + } + + .sm\:translate-x-2 { + --transform-translate-x: 0.5rem; + } + + .sm\:translate-x-3 { + --transform-translate-x: 0.75rem; + } + + .sm\:translate-x-4 { + --transform-translate-x: 1rem; + } + + .sm\:translate-x-5 { + --transform-translate-x: 1.25rem; + } + + .sm\:translate-x-6 { + --transform-translate-x: 1.5rem; + } + + .sm\:translate-x-8 { + --transform-translate-x: 2rem; + } + + .sm\:translate-x-10 { + --transform-translate-x: 2.5rem; + } + + .sm\:translate-x-12 { + --transform-translate-x: 3rem; + } + + .sm\:translate-x-16 { + --transform-translate-x: 4rem; + } + + .sm\:translate-x-20 { + --transform-translate-x: 5rem; + } + + .sm\:translate-x-24 { + --transform-translate-x: 6rem; + } + + .sm\:translate-x-32 { + --transform-translate-x: 8rem; + } + + .sm\:translate-x-40 { + --transform-translate-x: 10rem; + } + + .sm\:translate-x-48 { + --transform-translate-x: 12rem; + } + + .sm\:translate-x-56 { + --transform-translate-x: 14rem; + } + + .sm\:translate-x-64 { + --transform-translate-x: 16rem; + } + + .sm\:translate-x-px { + --transform-translate-x: 1px; + } + + .sm\:-translate-x-1 { + --transform-translate-x: -0.25rem; + } + + .sm\:-translate-x-2 { + --transform-translate-x: -0.5rem; + } + + .sm\:-translate-x-3 { + --transform-translate-x: -0.75rem; + } + + .sm\:-translate-x-4 { + --transform-translate-x: -1rem; + } + + .sm\:-translate-x-5 { + --transform-translate-x: -1.25rem; + } + + .sm\:-translate-x-6 { + --transform-translate-x: -1.5rem; + } + + .sm\:-translate-x-8 { + --transform-translate-x: -2rem; + } + + .sm\:-translate-x-10 { + --transform-translate-x: -2.5rem; + } + + .sm\:-translate-x-12 { + --transform-translate-x: -3rem; + } + + .sm\:-translate-x-16 { + --transform-translate-x: -4rem; + } + + .sm\:-translate-x-20 { + --transform-translate-x: -5rem; + } + + .sm\:-translate-x-24 { + --transform-translate-x: -6rem; + } + + .sm\:-translate-x-32 { + --transform-translate-x: -8rem; + } + + .sm\:-translate-x-40 { + --transform-translate-x: -10rem; + } + + .sm\:-translate-x-48 { + --transform-translate-x: -12rem; + } + + .sm\:-translate-x-56 { + --transform-translate-x: -14rem; + } + + .sm\:-translate-x-64 { + --transform-translate-x: -16rem; + } + + .sm\:-translate-x-px { + --transform-translate-x: -1px; + } + + .sm\:-translate-x-full { + --transform-translate-x: -100%; + } + + .sm\:-translate-x-1\/2 { + --transform-translate-x: -50%; + } + + .sm\:translate-x-1\/2 { + --transform-translate-x: 50%; + } + + .sm\:translate-x-full { + --transform-translate-x: 100%; + } + + .sm\:translate-y-0 { + --transform-translate-y: 0; + } + + .sm\:translate-y-1 { + --transform-translate-y: 0.25rem; + } + + .sm\:translate-y-2 { + --transform-translate-y: 0.5rem; + } + + .sm\:translate-y-3 { + --transform-translate-y: 0.75rem; + } + + .sm\:translate-y-4 { + --transform-translate-y: 1rem; + } + + .sm\:translate-y-5 { + --transform-translate-y: 1.25rem; + } + + .sm\:translate-y-6 { + --transform-translate-y: 1.5rem; + } + + .sm\:translate-y-8 { + --transform-translate-y: 2rem; + } + + .sm\:translate-y-10 { + --transform-translate-y: 2.5rem; + } + + .sm\:translate-y-12 { + --transform-translate-y: 3rem; + } + + .sm\:translate-y-16 { + --transform-translate-y: 4rem; + } + + .sm\:translate-y-20 { + --transform-translate-y: 5rem; + } + + .sm\:translate-y-24 { + --transform-translate-y: 6rem; + } + + .sm\:translate-y-32 { + --transform-translate-y: 8rem; + } + + .sm\:translate-y-40 { + --transform-translate-y: 10rem; + } + + .sm\:translate-y-48 { + --transform-translate-y: 12rem; + } + + .sm\:translate-y-56 { + --transform-translate-y: 14rem; + } + + .sm\:translate-y-64 { + --transform-translate-y: 16rem; + } + + .sm\:translate-y-px { + --transform-translate-y: 1px; + } + + .sm\:-translate-y-1 { + --transform-translate-y: -0.25rem; + } + + .sm\:-translate-y-2 { + --transform-translate-y: -0.5rem; + } + + .sm\:-translate-y-3 { + --transform-translate-y: -0.75rem; + } + + .sm\:-translate-y-4 { + --transform-translate-y: -1rem; + } + + .sm\:-translate-y-5 { + --transform-translate-y: -1.25rem; + } + + .sm\:-translate-y-6 { + --transform-translate-y: -1.5rem; + } + + .sm\:-translate-y-8 { + --transform-translate-y: -2rem; + } + + .sm\:-translate-y-10 { + --transform-translate-y: -2.5rem; + } + + .sm\:-translate-y-12 { + --transform-translate-y: -3rem; + } + + .sm\:-translate-y-16 { + --transform-translate-y: -4rem; + } + + .sm\:-translate-y-20 { + --transform-translate-y: -5rem; + } + + .sm\:-translate-y-24 { + --transform-translate-y: -6rem; + } + + .sm\:-translate-y-32 { + --transform-translate-y: -8rem; + } + + .sm\:-translate-y-40 { + --transform-translate-y: -10rem; + } + + .sm\:-translate-y-48 { + --transform-translate-y: -12rem; + } + + .sm\:-translate-y-56 { + --transform-translate-y: -14rem; + } + + .sm\:-translate-y-64 { + --transform-translate-y: -16rem; + } + + .sm\:-translate-y-px { + --transform-translate-y: -1px; + } + + .sm\:-translate-y-full { + --transform-translate-y: -100%; + } + + .sm\:-translate-y-1\/2 { + --transform-translate-y: -50%; + } + + .sm\:translate-y-1\/2 { + --transform-translate-y: 50%; + } + + .sm\:translate-y-full { + --transform-translate-y: 100%; + } + + .sm\:hover\:translate-x-0:hover { + --transform-translate-x: 0; + } + + .sm\:hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; + } + + .sm\:hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; + } + + .sm\:hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; + } + + .sm\:hover\:translate-x-4:hover { + --transform-translate-x: 1rem; + } + + .sm\:hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; + } + + .sm\:hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; + } + + .sm\:hover\:translate-x-8:hover { + --transform-translate-x: 2rem; + } + + .sm\:hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; + } + + .sm\:hover\:translate-x-12:hover { + --transform-translate-x: 3rem; + } + + .sm\:hover\:translate-x-16:hover { + --transform-translate-x: 4rem; + } + + .sm\:hover\:translate-x-20:hover { + --transform-translate-x: 5rem; + } + + .sm\:hover\:translate-x-24:hover { + --transform-translate-x: 6rem; + } + + .sm\:hover\:translate-x-32:hover { + --transform-translate-x: 8rem; + } + + .sm\:hover\:translate-x-40:hover { + --transform-translate-x: 10rem; + } + + .sm\:hover\:translate-x-48:hover { + --transform-translate-x: 12rem; + } + + .sm\:hover\:translate-x-56:hover { + --transform-translate-x: 14rem; + } + + .sm\:hover\:translate-x-64:hover { + --transform-translate-x: 16rem; + } + + .sm\:hover\:translate-x-px:hover { + --transform-translate-x: 1px; + } + + .sm\:hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; + } + + .sm\:hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; + } + + .sm\:hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; + } + + .sm\:hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; + } + + .sm\:hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; + } + + .sm\:hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; + } + + .sm\:hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; + } + + .sm\:hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; + } + + .sm\:hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; + } + + .sm\:hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; + } + + .sm\:hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; + } + + .sm\:hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; + } + + .sm\:hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; + } + + .sm\:hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; + } + + .sm\:hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; + } + + .sm\:hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; + } + + .sm\:hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; + } + + .sm\:hover\:-translate-x-px:hover { + --transform-translate-x: -1px; + } + + .sm\:hover\:-translate-x-full:hover { + --transform-translate-x: -100%; + } + + .sm\:hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; + } + + .sm\:hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; + } + + .sm\:hover\:translate-x-full:hover { + --transform-translate-x: 100%; + } + + .sm\:hover\:translate-y-0:hover { + --transform-translate-y: 0; + } + + .sm\:hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; + } + + .sm\:hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; + } + + .sm\:hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; + } + + .sm\:hover\:translate-y-4:hover { + --transform-translate-y: 1rem; + } + + .sm\:hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; + } + + .sm\:hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; + } + + .sm\:hover\:translate-y-8:hover { + --transform-translate-y: 2rem; + } + + .sm\:hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; + } + + .sm\:hover\:translate-y-12:hover { + --transform-translate-y: 3rem; + } + + .sm\:hover\:translate-y-16:hover { + --transform-translate-y: 4rem; + } + + .sm\:hover\:translate-y-20:hover { + --transform-translate-y: 5rem; + } + + .sm\:hover\:translate-y-24:hover { + --transform-translate-y: 6rem; + } + + .sm\:hover\:translate-y-32:hover { + --transform-translate-y: 8rem; + } + + .sm\:hover\:translate-y-40:hover { + --transform-translate-y: 10rem; + } + + .sm\:hover\:translate-y-48:hover { + --transform-translate-y: 12rem; + } + + .sm\:hover\:translate-y-56:hover { + --transform-translate-y: 14rem; + } + + .sm\:hover\:translate-y-64:hover { + --transform-translate-y: 16rem; + } + + .sm\:hover\:translate-y-px:hover { + --transform-translate-y: 1px; + } + + .sm\:hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; + } + + .sm\:hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; + } + + .sm\:hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; + } + + .sm\:hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; + } + + .sm\:hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; + } + + .sm\:hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; + } + + .sm\:hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; + } + + .sm\:hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; + } + + .sm\:hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; + } + + .sm\:hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; + } + + .sm\:hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; + } + + .sm\:hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; + } + + .sm\:hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; + } + + .sm\:hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; + } + + .sm\:hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; + } + + .sm\:hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; + } + + .sm\:hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; + } + + .sm\:hover\:-translate-y-px:hover { + --transform-translate-y: -1px; + } + + .sm\:hover\:-translate-y-full:hover { + --transform-translate-y: -100%; + } + + .sm\:hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; + } + + .sm\:hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; + } + + .sm\:hover\:translate-y-full:hover { + --transform-translate-y: 100%; + } + + .sm\:focus\:translate-x-0:focus { + --transform-translate-x: 0; + } + + .sm\:focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; + } + + .sm\:focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; + } + + .sm\:focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; + } + + .sm\:focus\:translate-x-4:focus { + --transform-translate-x: 1rem; + } + + .sm\:focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; + } + + .sm\:focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; + } + + .sm\:focus\:translate-x-8:focus { + --transform-translate-x: 2rem; + } + + .sm\:focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; + } + + .sm\:focus\:translate-x-12:focus { + --transform-translate-x: 3rem; + } + + .sm\:focus\:translate-x-16:focus { + --transform-translate-x: 4rem; + } + + .sm\:focus\:translate-x-20:focus { + --transform-translate-x: 5rem; + } + + .sm\:focus\:translate-x-24:focus { + --transform-translate-x: 6rem; + } + + .sm\:focus\:translate-x-32:focus { + --transform-translate-x: 8rem; + } + + .sm\:focus\:translate-x-40:focus { + --transform-translate-x: 10rem; + } + + .sm\:focus\:translate-x-48:focus { + --transform-translate-x: 12rem; + } + + .sm\:focus\:translate-x-56:focus { + --transform-translate-x: 14rem; + } + + .sm\:focus\:translate-x-64:focus { + --transform-translate-x: 16rem; + } + + .sm\:focus\:translate-x-px:focus { + --transform-translate-x: 1px; + } + + .sm\:focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; + } + + .sm\:focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; + } + + .sm\:focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; + } + + .sm\:focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; + } + + .sm\:focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; + } + + .sm\:focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; + } + + .sm\:focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; + } + + .sm\:focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; + } + + .sm\:focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; + } + + .sm\:focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; + } + + .sm\:focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; + } + + .sm\:focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; + } + + .sm\:focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; + } + + .sm\:focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; + } + + .sm\:focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; + } + + .sm\:focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; + } + + .sm\:focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; + } + + .sm\:focus\:-translate-x-px:focus { + --transform-translate-x: -1px; + } + + .sm\:focus\:-translate-x-full:focus { + --transform-translate-x: -100%; + } + + .sm\:focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; + } + + .sm\:focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; + } + + .sm\:focus\:translate-x-full:focus { + --transform-translate-x: 100%; + } + + .sm\:focus\:translate-y-0:focus { + --transform-translate-y: 0; + } + + .sm\:focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; + } + + .sm\:focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; + } + + .sm\:focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; + } + + .sm\:focus\:translate-y-4:focus { + --transform-translate-y: 1rem; + } + + .sm\:focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; + } + + .sm\:focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; + } + + .sm\:focus\:translate-y-8:focus { + --transform-translate-y: 2rem; + } + + .sm\:focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; + } + + .sm\:focus\:translate-y-12:focus { + --transform-translate-y: 3rem; + } + + .sm\:focus\:translate-y-16:focus { + --transform-translate-y: 4rem; + } + + .sm\:focus\:translate-y-20:focus { + --transform-translate-y: 5rem; + } + + .sm\:focus\:translate-y-24:focus { + --transform-translate-y: 6rem; + } + + .sm\:focus\:translate-y-32:focus { + --transform-translate-y: 8rem; + } + + .sm\:focus\:translate-y-40:focus { + --transform-translate-y: 10rem; + } + + .sm\:focus\:translate-y-48:focus { + --transform-translate-y: 12rem; + } + + .sm\:focus\:translate-y-56:focus { + --transform-translate-y: 14rem; + } + + .sm\:focus\:translate-y-64:focus { + --transform-translate-y: 16rem; + } + + .sm\:focus\:translate-y-px:focus { + --transform-translate-y: 1px; + } + + .sm\:focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; + } + + .sm\:focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; + } + + .sm\:focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; + } + + .sm\:focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; + } + + .sm\:focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; + } + + .sm\:focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; + } + + .sm\:focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; + } + + .sm\:focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; + } + + .sm\:focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; + } + + .sm\:focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; + } + + .sm\:focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; + } + + .sm\:focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; + } + + .sm\:focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; + } + + .sm\:focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; + } + + .sm\:focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; + } + + .sm\:focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; + } + + .sm\:focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; + } + + .sm\:focus\:-translate-y-px:focus { + --transform-translate-y: -1px; + } + + .sm\:focus\:-translate-y-full:focus { + --transform-translate-y: -100%; + } + + .sm\:focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; + } + + .sm\:focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; + } + + .sm\:focus\:translate-y-full:focus { + --transform-translate-y: 100%; + } + + .sm\:skew-x-0 { + --transform-skew-x: 0; + } + + .sm\:skew-x-3 { + --transform-skew-x: 3deg; + } + + .sm\:skew-x-6 { + --transform-skew-x: 6deg; + } + + .sm\:skew-x-12 { + --transform-skew-x: 12deg; + } + + .sm\:-skew-x-12 { + --transform-skew-x: -12deg; + } + + .sm\:-skew-x-6 { + --transform-skew-x: -6deg; + } + + .sm\:-skew-x-3 { + --transform-skew-x: -3deg; + } + + .sm\:skew-y-0 { + --transform-skew-y: 0; + } + + .sm\:skew-y-3 { + --transform-skew-y: 3deg; + } + + .sm\:skew-y-6 { + --transform-skew-y: 6deg; + } + + .sm\:skew-y-12 { + --transform-skew-y: 12deg; + } + + .sm\:-skew-y-12 { + --transform-skew-y: -12deg; + } + + .sm\:-skew-y-6 { + --transform-skew-y: -6deg; + } + + .sm\:-skew-y-3 { + --transform-skew-y: -3deg; + } + + .sm\:hover\:skew-x-0:hover { + --transform-skew-x: 0; + } + + .sm\:hover\:skew-x-3:hover { + --transform-skew-x: 3deg; + } + + .sm\:hover\:skew-x-6:hover { + --transform-skew-x: 6deg; + } + + .sm\:hover\:skew-x-12:hover { + --transform-skew-x: 12deg; + } + + .sm\:hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; + } + + .sm\:hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; + } + + .sm\:hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; + } + + .sm\:hover\:skew-y-0:hover { + --transform-skew-y: 0; + } + + .sm\:hover\:skew-y-3:hover { + --transform-skew-y: 3deg; + } + + .sm\:hover\:skew-y-6:hover { + --transform-skew-y: 6deg; + } + + .sm\:hover\:skew-y-12:hover { + --transform-skew-y: 12deg; + } + + .sm\:hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; + } + + .sm\:hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; + } + + .sm\:hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; + } + + .sm\:focus\:skew-x-0:focus { + --transform-skew-x: 0; + } + + .sm\:focus\:skew-x-3:focus { + --transform-skew-x: 3deg; + } + + .sm\:focus\:skew-x-6:focus { + --transform-skew-x: 6deg; + } + + .sm\:focus\:skew-x-12:focus { + --transform-skew-x: 12deg; + } + + .sm\:focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; + } + + .sm\:focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; + } + + .sm\:focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; + } + + .sm\:focus\:skew-y-0:focus { + --transform-skew-y: 0; + } + + .sm\:focus\:skew-y-3:focus { + --transform-skew-y: 3deg; + } + + .sm\:focus\:skew-y-6:focus { + --transform-skew-y: 6deg; + } + + .sm\:focus\:skew-y-12:focus { + --transform-skew-y: 12deg; + } + + .sm\:focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; + } + + .sm\:focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; + } + + .sm\:focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; + } + + .sm\:transition-none { + transition-property: none; + } + + .sm\:transition-all { + transition-property: all; + } + + .sm\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + } + + .sm\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + } + + .sm\:transition-opacity { + transition-property: opacity; + } + + .sm\:transition-shadow { + transition-property: box-shadow; + } + + .sm\:transition-transform { + transition-property: transform; + } + + .sm\:ease-linear { + transition-timing-function: linear; + } + + .sm\:ease-in { + transition-timing-function: cubic-bezier(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; + } +} + +@media (min-width: 768px) { + .md\:space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); + } + + .md\:space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); + } + + .md\:space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); + } + + .md\:space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); + } + + .md\:space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); + } + + .md\:space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); + } + + .md\:space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); + } + + .md\:space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); + } + + .md\:space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); + } + + .md\:space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); + } + + .md\:space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); + } + + .md\:space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); + } + + .md\:space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); + } + + .md\:space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); + } + + .md\:space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); + } + + .md\:space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); + } + + .md\:space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); + } + + .md\:space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); + } + + .md\:space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); + } + + .md\:space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); + } + + .md\:-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); + } + + .md\:-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); + } + + .md\:-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); + } + + .md\:-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); + } + + .md\:-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); + } + + .md\:-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); + } + + .md\:-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); + } + + .md\:-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); + } + + .md\:-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); + } + + .md\:-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); + } + + .md\:-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); + } + + .md\:-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); + } + + .md\:-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); + } + + .md\:-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); + } + + .md\:-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); + } + + .md\:-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); + } + + .md\:-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); + } + + .md\:-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; + } + + .md\:space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; + } + + .md\:divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); + } + + .md\:divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); + } + + .md\:divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); + } + + .md\:divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); + } + + .md\:divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); + } + + .md\:divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; + } + + .md\:divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; + } + + .md\:divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; + } + + .md\:divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; + } + + .md\:divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; + } + + .md\:divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; + } + + .md\:divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + } + + .md\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .md\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .md\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .md\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .md\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .md\:bg-fixed { + background-attachment: fixed; + } + + .md\:bg-local { + background-attachment: local; + } + + .md\:bg-scroll { + background-attachment: scroll; + } + + .md\:bg-opacity-0 { + --bg-opacity: 0; + } + + .md\:bg-opacity-25 { + --bg-opacity: 0.25; + } + + .md\:bg-opacity-50 { + --bg-opacity: 0.5; + } + + .md\:bg-opacity-75 { + --bg-opacity: 0.75; + } + + .md\:bg-opacity-100 { + --bg-opacity: 1; + } + + .md\:hover\:bg-opacity-0:hover { + --bg-opacity: 0; + } + + .md\:hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; + } + + .md\:hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; + } + + .md\:hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; + } + + .md\:hover\:bg-opacity-100:hover { + --bg-opacity: 1; + } + + .md\:focus\:bg-opacity-0:focus { + --bg-opacity: 0; + } + + .md\:focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; + } + + .md\:focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; + } + + .md\:focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; + } + + .md\:focus\:bg-opacity-100:focus { + --bg-opacity: 1; + } + + .md\:bg-bottom { + background-position: bottom; + } + + .md\:bg-center { + background-position: center; + } + + .md\:bg-left { + background-position: left; + } + + .md\:bg-left-bottom { + background-position: left bottom; + } + + .md\:bg-left-top { + background-position: left top; + } + + .md\:bg-right { + background-position: right; + } + + .md\:bg-right-bottom { + background-position: right bottom; + } + + .md\:bg-right-top { + background-position: right top; + } + + .md\:bg-top { + background-position: top; + } + + .md\:bg-repeat { + background-repeat: repeat; + } + + .md\:bg-no-repeat { + background-repeat: no-repeat; + } + + .md\:bg-repeat-x { + background-repeat: repeat-x; + } + + .md\:bg-repeat-y { + background-repeat: repeat-y; + } + + .md\:bg-repeat-round { + background-repeat: round; + } + + .md\:bg-repeat-space { + background-repeat: space; + } + + .md\:bg-auto { + background-size: auto; + } + + .md\:bg-cover { + background-size: cover; + } + + .md\:bg-contain { + background-size: contain; + } + + .md\:border-collapse { + border-collapse: collapse; + } + + .md\:border-separate { + border-collapse: separate; + } + + .md\:border-opacity-0 { + --border-opacity: 0; + } + + .md\:border-opacity-25 { + --border-opacity: 0.25; + } + + .md\:border-opacity-50 { + --border-opacity: 0.5; + } + + .md\:border-opacity-75 { + --border-opacity: 0.75; + } + + .md\:border-opacity-100 { + --border-opacity: 1; + } + + .md\:hover\:border-opacity-0:hover { + --border-opacity: 0; + } + + .md\:hover\:border-opacity-25:hover { + --border-opacity: 0.25; + } + + .md\:hover\:border-opacity-50:hover { + --border-opacity: 0.5; + } + + .md\:hover\:border-opacity-75:hover { + --border-opacity: 0.75; + } + + .md\:hover\:border-opacity-100:hover { + --border-opacity: 1; + } + + .md\:focus\:border-opacity-0:focus { + --border-opacity: 0; + } + + .md\:focus\:border-opacity-25:focus { + --border-opacity: 0.25; + } + + .md\:focus\:border-opacity-50:focus { + --border-opacity: 0.5; + } + + .md\:focus\:border-opacity-75:focus { + --border-opacity: 0.75; + } + + .md\:focus\:border-opacity-100:focus { + --border-opacity: 1; + } + + .md\:rounded-none { + border-radius: 0; + } + + .md\:rounded-sm { + border-radius: 0.125rem; + } + + .md\:rounded { + border-radius: 0.25rem; + } + + .md\:rounded-md { + border-radius: 0.375rem; + } + + .md\:rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; + } + + .md\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .md\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .md\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .md\:border-solid { + border-style: solid; + } + + .md\:border-dashed { + border-style: dashed; + } + + .md\:border-dotted { + border-style: dotted; + } + + .md\:border-double { + border-style: double; + } + + .md\:border-none { + border-style: none; + } + + .md\:border-0 { + border-width: 0; + } + + .md\:border-2 { + border-width: 2px; + } + + .md\:border-4 { + border-width: 4px; + } + + .md\:border-8 { + border-width: 8px; + } + + .md\:border { + border-width: 1px; + } + + .md\:border-t-0 { + border-top-width: 0; + } + + .md\:border-r-0 { + border-right-width: 0; + } + + .md\:border-b-0 { + border-bottom-width: 0; + } + + .md\:border-l-0 { + border-left-width: 0; + } + + .md\:border-t-2 { + border-top-width: 2px; + } + + .md\:border-r-2 { + border-right-width: 2px; + } + + .md\:border-b-2 { + border-bottom-width: 2px; + } + + .md\:border-l-2 { + border-left-width: 2px; + } + + .md\:border-t-4 { + border-top-width: 4px; + } + + .md\:border-r-4 { + border-right-width: 4px; + } + + .md\:border-b-4 { + border-bottom-width: 4px; + } + + .md\:border-l-4 { + border-left-width: 4px; + } + + .md\:border-t-8 { + border-top-width: 8px; + } + + .md\:border-r-8 { + border-right-width: 8px; + } + + .md\:border-b-8 { + border-bottom-width: 8px; + } + + .md\:border-l-8 { + border-left-width: 8px; + } + + .md\:border-t { + border-top-width: 1px; + } + + .md\:border-r { + border-right-width: 1px; + } + + .md\:border-b { + border-bottom-width: 1px; + } + + .md\:border-l { + border-left-width: 1px; + } + + .md\:box-border { + box-sizing: border-box; + } + + .md\:box-content { + box-sizing: content-box; + } + + .md\:cursor-auto { + cursor: auto; + } + + .md\:cursor-default { + cursor: default; + } + + .md\:cursor-pointer { + cursor: pointer; + } + + .md\:cursor-wait { + cursor: wait; + } + + .md\:cursor-text { + cursor: text; + } + + .md\:cursor-move { + cursor: move; + } + + .md\:cursor-not-allowed { + cursor: not-allowed; + } + + .md\:block { + display: block; + } + + .md\:inline-block { + display: inline-block; + } + + .md\:inline { + display: inline; + } + + .md\:flex { + display: flex; + } + + .md\:inline-flex { + display: inline-flex; + } + + .md\:table { + display: table; + } + + .md\:table-caption { + display: table-caption; + } + + .md\:table-cell { + display: table-cell; + } + + .md\:table-column { + display: table-column; + } + + .md\:table-column-group { + display: table-column-group; + } + + .md\:table-footer-group { + display: table-footer-group; + } + + .md\:table-header-group { + display: table-header-group; + } + + .md\:table-row-group { + display: table-row-group; + } + + .md\:table-row { + display: table-row; + } + + .md\:flow-root { + display: flow-root; + } + + .md\:grid { + display: grid; + } + + .md\:inline-grid { + display: inline-grid; + } + + .md\:hidden { + display: none; + } + + .theme-dark .md\:dark\:block { + display: block; + } + + .theme-dark .md\:dark\:inline-block { + display: inline-block; + } + + .theme-dark .md\:dark\:inline { + display: inline; + } + + .theme-dark .md\:dark\:flex { + display: flex; + } + + .theme-dark .md\:dark\:inline-flex { + display: inline-flex; + } + + .theme-dark .md\:dark\:table { + display: table; + } + + .theme-dark .md\:dark\:table-caption { + display: table-caption; + } + + .theme-dark .md\:dark\:table-cell { + display: table-cell; + } + + .theme-dark .md\:dark\:table-column { + display: table-column; + } + + .theme-dark .md\:dark\:table-column-group { + display: table-column-group; + } + + .theme-dark .md\:dark\:table-footer-group { + display: table-footer-group; + } + + .theme-dark .md\:dark\:table-header-group { + display: table-header-group; + } + + .theme-dark .md\:dark\:table-row-group { + display: table-row-group; + } + + .theme-dark .md\:dark\:table-row { + display: table-row; + } + + .theme-dark .md\:dark\:flow-root { + display: flow-root; + } + + .theme-dark .md\:dark\:grid { + display: grid; + } + + .theme-dark .md\:dark\:inline-grid { + display: inline-grid; + } + + .theme-dark .md\:dark\:hidden { + display: none; + } + + .md\:flex-row { + flex-direction: row; + } + + .md\:flex-row-reverse { + flex-direction: row-reverse; + } + + .md\:flex-col { + flex-direction: column; + } + + .md\:flex-col-reverse { + flex-direction: column-reverse; + } + + .md\:flex-wrap { + flex-wrap: wrap; + } + + .md\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .md\:flex-no-wrap { + flex-wrap: nowrap; + } + + .md\:items-start { + align-items: flex-start; + } + + .md\:items-end { + align-items: flex-end; + } + + .md\:items-center { + align-items: center; + } + + .md\:items-baseline { + align-items: baseline; + } + + .md\:items-stretch { + align-items: stretch; + } + + .md\:self-auto { + align-self: auto; + } + + .md\:self-start { + align-self: flex-start; + } + + .md\:self-end { + align-self: flex-end; + } + + .md\:self-center { + align-self: center; + } + + .md\:self-stretch { + align-self: stretch; + } + + .md\:justify-start { + justify-content: flex-start; + } + + .md\:justify-end { + justify-content: flex-end; + } + + .md\:justify-center { + justify-content: center; + } + + .md\:justify-between { + justify-content: space-between; + } + + .md\:justify-around { + justify-content: space-around; + } + + .md\:justify-evenly { + justify-content: space-evenly; + } + + .md\:content-center { + align-content: center; + } + + .md\:content-start { + align-content: flex-start; + } + + .md\:content-end { + align-content: flex-end; + } + + .md\:content-between { + align-content: space-between; + } + + .md\:content-around { + align-content: space-around; + } + + .md\:flex-1 { + flex: 1 1 0%; + } + + .md\:flex-auto { + flex: 1 1 auto; + } + + .md\:flex-initial { + flex: 0 1 auto; + } + + .md\:flex-none { + flex: none; + } + + .md\:flex-grow-0 { + flex-grow: 0; + } + + .md\:flex-grow { + flex-grow: 1; + } + + .md\:flex-shrink-0 { + flex-shrink: 0; + } + + .md\:flex-shrink { + flex-shrink: 1; + } + + .md\:order-1 { + order: 1; + } + + .md\:order-2 { + order: 2; + } + + .md\:order-3 { + order: 3; + } + + .md\:order-4 { + order: 4; + } + + .md\:order-5 { + order: 5; + } + + .md\:order-6 { + order: 6; + } + + .md\:order-7 { + order: 7; + } + + .md\:order-8 { + order: 8; + } + + .md\:order-9 { + order: 9; + } + + .md\:order-10 { + order: 10; + } + + .md\:order-11 { + order: 11; + } + + .md\:order-12 { + order: 12; + } + + .md\:order-first { + order: -9999; + } + + .md\:order-last { + order: 9999; + } + + .md\:order-none { + order: 0; + } + + .md\:float-right { + float: right; + } + + .md\:float-left { + float: left; + } + + .md\:float-none { + float: none; + } + + .md\:clearfix:after { + content: ""; + display: table; + clear: both; + } + + .md\:clear-left { + clear: left; + } + + .md\:clear-right { + clear: right; + } + + .md\:clear-both { + clear: both; + } + + .md\:clear-none { + clear: none; + } + + .md\:font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .md\:font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; + } + + .md\:font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .md\:font-hairline { + font-weight: 100; + } + + .md\:font-thin { + font-weight: 200; + } + + .md\:font-light { + font-weight: 300; + } + + .md\:font-normal { + font-weight: 400; + } + + .md\:font-medium { + font-weight: 500; + } + + .md\:font-semibold { + font-weight: 600; + } + + .md\:font-bold { + font-weight: 700; + } + + .md\:font-extrabold { + font-weight: 800; + } + + .md\:font-black { + font-weight: 900; + } + + .md\:hover\:font-hairline:hover { + font-weight: 100; + } + + .md\:hover\:font-thin:hover { + font-weight: 200; + } + + .md\:hover\:font-light:hover { + font-weight: 300; + } + + .md\:hover\:font-normal:hover { + font-weight: 400; + } + + .md\:hover\:font-medium:hover { + font-weight: 500; + } + + .md\:hover\:font-semibold:hover { + font-weight: 600; + } + + .md\:hover\:font-bold:hover { + font-weight: 700; + } + + .md\:hover\:font-extrabold:hover { + font-weight: 800; + } + + .md\:hover\:font-black:hover { + font-weight: 900; + } + + .md\:focus\:font-hairline:focus { + font-weight: 100; + } + + .md\:focus\:font-thin:focus { + font-weight: 200; + } + + .md\:focus\:font-light:focus { + font-weight: 300; + } + + .md\:focus\:font-normal:focus { + font-weight: 400; + } + + .md\:focus\:font-medium:focus { + font-weight: 500; + } + + .md\:focus\:font-semibold:focus { + font-weight: 600; + } + + .md\:focus\:font-bold:focus { + font-weight: 700; + } + + .md\:focus\:font-extrabold:focus { + font-weight: 800; + } + + .md\:focus\:font-black:focus { + font-weight: 900; + } + + .md\:h-0 { + height: 0; + } + + .md\:h-1 { + height: 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-8 { + height: 2rem; + } + + .md\:h-10 { + height: 2.5rem; + } + + .md\:h-12 { + height: 3rem; + } + + .md\:h-16 { + height: 4rem; + } + + .md\:h-20 { + height: 5rem; + } + + .md\:h-24 { + height: 6rem; + } + + .md\:h-32 { + height: 8rem; + } + + .md\:h-40 { + height: 10rem; + } + + .md\:h-48 { + height: 12rem; + } + + .md\:h-56 { + height: 14rem; + } + + .md\:h-64 { + height: 16rem; + } + + .md\:h-auto { + height: auto; + } + + .md\:h-px { + height: 1px; + } + + .md\:h-full { + height: 100%; + } + + .md\:h-screen { + height: 100vh; + } + + .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: 4rem; + } + + .md\:leading-3 { + line-height: .75rem; + } + + .md\:leading-4 { + line-height: 1rem; + } + + .md\:leading-5 { + line-height: 1.25rem; + } + + .md\:leading-6 { + line-height: 1.5rem; + } + + .md\:leading-7 { + line-height: 1.75rem; + } + + .md\:leading-8 { + line-height: 2rem; + } + + .md\:leading-9 { + line-height: 2.25rem; + } + + .md\:leading-10 { + line-height: 2.5rem; + } + + .md\:leading-none { + line-height: 1; + } + + .md\:leading-tight { + line-height: 1.25; + } + + .md\:leading-snug { + line-height: 1.375; + } + + .md\:leading-normal { + line-height: 1.5; + } + + .md\:leading-relaxed { + line-height: 1.625; + } + + .md\:leading-loose { + line-height: 2; + } + + .md\:list-inside { + list-style-position: inside; + } + + .md\:list-outside { + list-style-position: outside; + } + + .md\:list-none { + list-style-type: none; + } + + .md\:list-disc { + list-style-type: disc; + } + + .md\:list-decimal { + list-style-type: decimal; + } + + .md\:m-0 { + margin: 0; + } + + .md\:m-1 { + margin: 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-8 { + margin: 2rem; + } + + .md\:m-10 { + margin: 2.5rem; + } + + .md\:m-12 { + margin: 3rem; + } + + .md\:m-16 { + margin: 4rem; + } + + .md\:m-20 { + margin: 5rem; + } + + .md\:m-24 { + margin: 6rem; + } + + .md\:m-32 { + margin: 8rem; + } + + .md\:m-40 { + margin: 10rem; + } + + .md\:m-48 { + margin: 12rem; + } + + .md\:m-56 { + margin: 14rem; + } + + .md\:m-64 { + margin: 16rem; + } + + .md\:m-auto { + margin: auto; + } + + .md\:m-px { + margin: 1px; + } + + .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-8 { + margin: -2rem; + } + + .md\:-m-10 { + margin: -2.5rem; + } + + .md\:-m-12 { + margin: -3rem; + } + + .md\:-m-16 { + margin: -4rem; + } + + .md\:-m-20 { + margin: -5rem; + } + + .md\:-m-24 { + margin: -6rem; + } + + .md\:-m-32 { + margin: -8rem; + } + + .md\:-m-40 { + margin: -10rem; + } + + .md\:-m-48 { + margin: -12rem; + } + + .md\:-m-56 { + margin: -14rem; + } + + .md\:-m-64 { + margin: -16rem; + } + + .md\:-m-px { + margin: -1px; + } + + .md\:my-0 { + margin-top: 0; + margin-bottom: 0; + } + + .md\:mx-0 { + margin-left: 0; + margin-right: 0; + } + + .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-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .md\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .md\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .md\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .md\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .md\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .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-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .md\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .md\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .md\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .md\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .md\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .md\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .md\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .md\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .md\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .md\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .md\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .md\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .md\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .md\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .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-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .md\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .md\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .md\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .md\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .md\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .md\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .md\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .md\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .md\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .md\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .md\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .md\:mt-0 { + margin-top: 0; + } + + .md\:mr-0 { + margin-right: 0; + } + + .md\:mb-0 { + margin-bottom: 0; + } + + .md\:ml-0 { + margin-left: 0; + } + + .md\:mt-1 { + margin-top: 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-8 { + margin-top: 2rem; + } + + .md\:mr-8 { + margin-right: 2rem; + } + + .md\:mb-8 { + margin-bottom: 2rem; + } + + .md\:ml-8 { + margin-left: 2rem; + } + + .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-12 { + margin-top: 3rem; + } + + .md\:mr-12 { + margin-right: 3rem; + } + + .md\:mb-12 { + margin-bottom: 3rem; + } + + .md\:ml-12 { + margin-left: 3rem; + } + + .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-32 { + margin-top: 8rem; + } + + .md\:mr-32 { + margin-right: 8rem; + } + + .md\:mb-32 { + margin-bottom: 8rem; + } + + .md\:ml-32 { + margin-left: 8rem; + } + + .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-48 { + margin-top: 12rem; + } + + .md\:mr-48 { + margin-right: 12rem; + } + + .md\:mb-48 { + margin-bottom: 12rem; + } + + .md\:ml-48 { + margin-left: 12rem; + } + + .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-64 { + margin-top: 16rem; + } + + .md\:mr-64 { + margin-right: 16rem; + } + + .md\:mb-64 { + margin-bottom: 16rem; + } + + .md\:ml-64 { + margin-left: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + } + + .md\:-mr-8 { + margin-right: -2rem; + } + + .md\:-mb-8 { + margin-bottom: -2rem; + } + + .md\:-ml-8 { + margin-left: -2rem; + } + + .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-12 { + margin-top: -3rem; + } + + .md\:-mr-12 { + margin-right: -3rem; + } + + .md\:-mb-12 { + margin-bottom: -3rem; + } + + .md\:-ml-12 { + margin-left: -3rem; + } + + .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-32 { + margin-top: -8rem; + } + + .md\:-mr-32 { + margin-right: -8rem; + } + + .md\:-mb-32 { + margin-bottom: -8rem; + } + + .md\:-ml-32 { + margin-left: -8rem; + } + + .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-48 { + margin-top: -12rem; + } + + .md\:-mr-48 { + margin-right: -12rem; + } + + .md\:-mb-48 { + margin-bottom: -12rem; + } + + .md\:-ml-48 { + margin-left: -12rem; + } + + .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-64 { + margin-top: -16rem; + } + + .md\:-mr-64 { + margin-right: -16rem; + } + + .md\:-mb-64 { + margin-bottom: -16rem; + } + + .md\:-ml-64 { + margin-left: -16rem; + } + + .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\:max-h-0 { + max-height: 0; + } + + .md\:max-h-full { + max-height: 100%; + } + + .md\:max-h-screen { + max-height: 100vh; + } + + .md\:max-h-xl { + max-height: 36rem; + } + + .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-full { + max-width: 100%; + } + + .md\:max-w-screen-sm { + max-width: 640px; + } + + .md\:max-w-screen-md { + max-width: 768px; + } + + .md\:max-w-screen-lg { + max-width: 1024px; + } + + .md\:max-w-screen-xl { + max-width: 1280px; + } + + .md\:min-h-0 { + min-height: 0; + } + + .md\:min-h-full { + min-height: 100%; + } + + .md\:min-h-screen { + min-height: 100vh; + } + + .md\:min-w-0 { + min-width: 0; + } + + .md\:min-w-full { + min-width: 100%; + } + + .md\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .md\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .md\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .md\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .md\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .md\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .md\:object-center { + -o-object-position: center; + object-position: center; + } + + .md\:object-left { + -o-object-position: left; + object-position: left; + } + + .md\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .md\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .md\:object-right { + -o-object-position: right; + object-position: right; + } + + .md\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .md\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .md\:object-top { + -o-object-position: top; + object-position: top; + } + + .md\:opacity-0 { + opacity: 0; + } + + .md\:opacity-25 { + opacity: 0.25; + } + + .md\:opacity-50 { + opacity: 0.5; + } + + .md\:opacity-75 { + opacity: 0.75; + } + + .md\:opacity-100 { + opacity: 1; + } + + .md\:hover\:opacity-0:hover { + opacity: 0; + } + + .md\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .md\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .md\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .md\:hover\:opacity-100:hover { + opacity: 1; + } + + .md\:focus\:opacity-0:focus { + opacity: 0; + } + + .md\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .md\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .md\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .md\:focus\:opacity-100:focus { + opacity: 1; + } + + .md\:outline-none { + outline: 0; + } + + .md\:focus\:outline-none:focus { + outline: 0; + } + + .md\:overflow-auto { + overflow: auto; + } + + .md\:overflow-hidden { + overflow: hidden; + } + + .md\:overflow-visible { + overflow: visible; + } + + .md\:overflow-scroll { + overflow: scroll; + } + + .md\:overflow-x-auto { + overflow-x: auto; + } + + .md\:overflow-y-auto { + overflow-y: auto; + } + + .md\:overflow-x-hidden { + overflow-x: hidden; + } + + .md\:overflow-y-hidden { + overflow-y: hidden; + } + + .md\:overflow-x-visible { + overflow-x: visible; + } + + .md\:overflow-y-visible { + overflow-y: visible; + } + + .md\:overflow-x-scroll { + overflow-x: scroll; + } + + .md\:overflow-y-scroll { + overflow-y: scroll; + } + + .md\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .md\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + + .md\:p-0 { + padding: 0; + } + + .md\:p-1 { + padding: 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-8 { + padding: 2rem; + } + + .md\:p-10 { + padding: 2.5rem; + } + + .md\:p-12 { + padding: 3rem; + } + + .md\:p-16 { + padding: 4rem; + } + + .md\:p-20 { + padding: 5rem; + } + + .md\:p-24 { + padding: 6rem; + } + + .md\:p-32 { + padding: 8rem; + } + + .md\:p-40 { + padding: 10rem; + } + + .md\:p-48 { + padding: 12rem; + } + + .md\:p-56 { + padding: 14rem; + } + + .md\:p-64 { + padding: 16rem; + } + + .md\:p-px { + padding: 1px; + } + + .md\:py-0 { + padding-top: 0; + padding-bottom: 0; + } + + .md\:px-0 { + padding-left: 0; + padding-right: 0; + } + + .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-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .md\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .md\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .md\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .md\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .md\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .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-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .md\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .md\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .md\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .md\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .md\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .md\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .md\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .md\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .md\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .md\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .md\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .md\:pt-0 { + padding-top: 0; + } + + .md\:pr-0 { + padding-right: 0; + } + + .md\:pb-0 { + padding-bottom: 0; + } + + .md\:pl-0 { + padding-left: 0; + } + + .md\:pt-1 { + padding-top: 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-8 { + padding-top: 2rem; + } + + .md\:pr-8 { + padding-right: 2rem; + } + + .md\:pb-8 { + padding-bottom: 2rem; + } + + .md\:pl-8 { + padding-left: 2rem; + } + + .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-12 { + padding-top: 3rem; + } + + .md\:pr-12 { + padding-right: 3rem; + } + + .md\:pb-12 { + padding-bottom: 3rem; + } + + .md\:pl-12 { + padding-left: 3rem; + } + + .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-32 { + padding-top: 8rem; + } + + .md\:pr-32 { + padding-right: 8rem; + } + + .md\:pb-32 { + padding-bottom: 8rem; + } + + .md\:pl-32 { + padding-left: 8rem; + } + + .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-48 { + padding-top: 12rem; + } + + .md\:pr-48 { + padding-right: 12rem; + } + + .md\:pb-48 { + padding-bottom: 12rem; + } + + .md\:pl-48 { + padding-left: 12rem; + } + + .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-64 { + padding-top: 16rem; + } + + .md\:pr-64 { + padding-right: 16rem; + } + + .md\:pb-64 { + padding-bottom: 16rem; + } + + .md\:pl-64 { + padding-left: 16rem; + } + + .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\:placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; + } + + .md\:placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; + } + + .md\:pointer-events-none { + pointer-events: none; + } + + .md\:pointer-events-auto { + pointer-events: auto; + } + + .md\:static { + position: static; + } + + .md\:fixed { + position: fixed; + } + + .md\:absolute { + position: absolute; + } + + .md\:relative { + position: relative; + } + + .md\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .md\:inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .md\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .md\:inset-y-0 { + top: 0; + bottom: 0; + } + + .md\:inset-x-0 { + right: 0; + left: 0; + } + + .md\:inset-y-auto { + top: auto; + bottom: auto; + } + + .md\:inset-x-auto { + right: auto; + left: auto; + } + + .md\:top-0 { + top: 0; + } + + .md\:right-0 { + right: 0; + } + + .md\:bottom-0 { + bottom: 0; + } + + .md\:left-0 { + left: 0; + } + + .md\:top-auto { + top: auto; + } + + .md\:right-auto { + right: auto; + } + + .md\:bottom-auto { + bottom: auto; + } + + .md\:left-auto { + left: auto; + } + + .md\:resize-none { + resize: none; + } + + .md\:resize-y { + resize: vertical; + } + + .md\:resize-x { + resize: horizontal; + } + + .md\:resize { + resize: both; + } + + .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-opacity-0 { + --text-opacity: 0; + } + + .md\:text-opacity-25 { + --text-opacity: 0.25; + } + + .md\:text-opacity-50 { + --text-opacity: 0.5; + } + + .md\:text-opacity-75 { + --text-opacity: 0.75; + } + + .md\:text-opacity-100 { + --text-opacity: 1; + } + + .md\:hover\:text-opacity-0:hover { + --text-opacity: 0; + } + + .md\:hover\:text-opacity-25:hover { + --text-opacity: 0.25; + } + + .md\:hover\:text-opacity-50:hover { + --text-opacity: 0.5; + } + + .md\:hover\:text-opacity-75:hover { + --text-opacity: 0.75; + } + + .md\:hover\:text-opacity-100:hover { + --text-opacity: 1; + } + + .md\:focus\:text-opacity-0:focus { + --text-opacity: 0; + } + + .md\:focus\:text-opacity-25:focus { + --text-opacity: 0.25; + } + + .md\:focus\:text-opacity-50:focus { + --text-opacity: 0.5; + } + + .md\:focus\:text-opacity-75:focus { + --text-opacity: 0.75; + } + + .md\:focus\:text-opacity-100:focus { + --text-opacity: 1; + } + + .md\:italic { + font-style: italic; + } + + .md\:not-italic { + font-style: normal; + } + + .md\:uppercase { + text-transform: uppercase; + } + + .md\:lowercase { + text-transform: lowercase; + } + + .md\:capitalize { + text-transform: capitalize; + } + + .md\:normal-case { + text-transform: none; + } + + .md\:underline { + text-decoration: underline; + } + + .md\:line-through { + text-decoration: line-through; + } + + .md\:no-underline { + text-decoration: none; + } + + .md\:hover\:underline:hover { + text-decoration: underline; + } + + .md\:hover\:line-through:hover { + text-decoration: line-through; + } + + .md\:hover\:no-underline:hover { + text-decoration: none; + } + + .md\:focus\:underline:focus { + text-decoration: underline; + } + + .md\:focus\:line-through:focus { + text-decoration: line-through; + } + + .md\:focus\:no-underline:focus { + text-decoration: none; + } + + .md\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .md\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .md\:tracking-tighter { + letter-spacing: -0.05em; + } + + .md\:tracking-tight { + letter-spacing: -0.025em; + } + + .md\:tracking-normal { + letter-spacing: 0; + } + + .md\:tracking-wide { + letter-spacing: 0.025em; + } + + .md\:tracking-wider { + letter-spacing: 0.05em; + } + + .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-no-wrap { + white-space: nowrap; + } + + .md\:whitespace-pre { + white-space: pre; + } + + .md\:whitespace-pre-line { + white-space: pre-line; + } + + .md\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .md\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .md\:break-words { + overflow-wrap: break-word; + } + + .md\:break-all { + word-break: break-all; + } + + .md\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .md\:w-0 { + width: 0; + } + + .md\:w-1 { + width: 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-8 { + width: 2rem; + } + + .md\:w-10 { + width: 2.5rem; + } + + .md\:w-12 { + width: 3rem; + } + + .md\:w-16 { + width: 4rem; + } + + .md\:w-20 { + width: 5rem; + } + + .md\:w-24 { + width: 6rem; + } + + .md\:w-32 { + width: 8rem; + } + + .md\:w-40 { + width: 10rem; + } + + .md\:w-48 { + width: 12rem; + } + + .md\:w-56 { + width: 14rem; + } + + .md\:w-64 { + width: 16rem; + } + + .md\:w-auto { + width: auto; + } + + .md\:w-px { + width: 1px; + } + + .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\:gap-0 { + grid-gap: 0; + gap: 0; + } + + .md\:gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; + } + + .md\:gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; + } + + .md\:gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; + } + + .md\:gap-4 { + grid-gap: 1rem; + gap: 1rem; + } + + .md\:gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; + } + + .md\:gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; + } + + .md\:gap-8 { + grid-gap: 2rem; + gap: 2rem; + } + + .md\:gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; + } + + .md\:gap-12 { + grid-gap: 3rem; + gap: 3rem; + } + + .md\:gap-16 { + grid-gap: 4rem; + gap: 4rem; + } + + .md\:gap-20 { + grid-gap: 5rem; + gap: 5rem; + } + + .md\:gap-24 { + grid-gap: 6rem; + gap: 6rem; + } + + .md\:gap-32 { + grid-gap: 8rem; + gap: 8rem; + } + + .md\:gap-40 { + grid-gap: 10rem; + gap: 10rem; + } + + .md\:gap-48 { + grid-gap: 12rem; + gap: 12rem; + } + + .md\:gap-56 { + grid-gap: 14rem; + gap: 14rem; + } + + .md\:gap-64 { + grid-gap: 16rem; + gap: 16rem; + } + + .md\:gap-px { + grid-gap: 1px; + gap: 1px; + } + + .md\:col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; + } + + .md\:col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .md\:col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .md\:col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .md\:col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .md\:col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .md\:col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .md\:col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .md\:col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .md\:col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .md\:col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .md\:col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .md\:col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .md\:col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .md\:col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .md\:col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .md\:col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .md\:col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .md\:col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; + } + + .md\:row-gap-0 { + grid-row-gap: 0; + row-gap: 0; + } + + .md\:row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; + } + + .md\:row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; + } + + .md\:row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; + } + + .md\:row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; + } + + .md\:row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; + } + + .md\:row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; + } + + .md\:row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; + } + + .md\:row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; + } + + .md\:row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; + } + + .md\:row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; + } + + .md\:row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; + } + + .md\:row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; + } + + .md\:row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; + } + + .md\:row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; + } + + .md\:row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; + } + + .md\:row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; + } + + .md\:row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; + } + + .md\:row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; + } + + .md\:grid-flow-row { + grid-auto-flow: row; + } + + .md\:grid-flow-col { + grid-auto-flow: column; + } + + .md\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .md\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .md\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .md\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .md\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .md\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .md\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .md\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .md\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .md\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .md\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .md\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .md\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .md\:grid-cols-none { + grid-template-columns: none; + } + + .md\:col-auto { + grid-column: auto; + } + + .md\:col-span-1 { + grid-column: span 1 / span 1; + } + + .md\:col-span-2 { + grid-column: span 2 / span 2; + } + + .md\:col-span-3 { + grid-column: span 3 / span 3; + } + + .md\:col-span-4 { + grid-column: span 4 / span 4; + } + + .md\:col-span-5 { + grid-column: span 5 / span 5; + } + + .md\:col-span-6 { + grid-column: span 6 / span 6; + } + + .md\:col-span-7 { + grid-column: span 7 / span 7; + } + + .md\:col-span-8 { + grid-column: span 8 / span 8; + } + + .md\:col-span-9 { + grid-column: span 9 / span 9; + } + + .md\:col-span-10 { + grid-column: span 10 / span 10; + } + + .md\:col-span-11 { + grid-column: span 11 / span 11; + } + + .md\:col-span-12 { + grid-column: span 12 / span 12; + } + + .md\:col-start-1 { + grid-column-start: 1; + } + + .md\:col-start-2 { + grid-column-start: 2; + } + + .md\:col-start-3 { + grid-column-start: 3; + } + + .md\:col-start-4 { + grid-column-start: 4; + } + + .md\:col-start-5 { + grid-column-start: 5; + } + + .md\:col-start-6 { + grid-column-start: 6; + } + + .md\:col-start-7 { + grid-column-start: 7; + } + + .md\:col-start-8 { + grid-column-start: 8; + } + + .md\:col-start-9 { + grid-column-start: 9; + } + + .md\:col-start-10 { + grid-column-start: 10; + } + + .md\:col-start-11 { + grid-column-start: 11; + } + + .md\:col-start-12 { + grid-column-start: 12; + } + + .md\:col-start-13 { + grid-column-start: 13; + } + + .md\:col-start-auto { + grid-column-start: auto; + } + + .md\:col-end-1 { + grid-column-end: 1; + } + + .md\:col-end-2 { + grid-column-end: 2; + } + + .md\:col-end-3 { + grid-column-end: 3; + } + + .md\:col-end-4 { + grid-column-end: 4; + } + + .md\:col-end-5 { + grid-column-end: 5; + } + + .md\:col-end-6 { + grid-column-end: 6; + } + + .md\:col-end-7 { + grid-column-end: 7; + } + + .md\:col-end-8 { + grid-column-end: 8; + } + + .md\:col-end-9 { + grid-column-end: 9; + } + + .md\:col-end-10 { + grid-column-end: 10; + } + + .md\:col-end-11 { + grid-column-end: 11; + } + + .md\:col-end-12 { + grid-column-end: 12; + } + + .md\:col-end-13 { + grid-column-end: 13; + } + + .md\:col-end-auto { + grid-column-end: auto; + } + + .md\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .md\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .md\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .md\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .md\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .md\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .md\:grid-rows-none { + grid-template-rows: none; + } + + .md\:row-auto { + grid-row: auto; + } + + .md\:row-span-1 { + grid-row: span 1 / span 1; + } + + .md\:row-span-2 { + grid-row: span 2 / span 2; + } + + .md\:row-span-3 { + grid-row: span 3 / span 3; + } + + .md\:row-span-4 { + grid-row: span 4 / span 4; + } + + .md\:row-span-5 { + grid-row: span 5 / span 5; + } + + .md\:row-span-6 { + grid-row: span 6 / span 6; + } + + .md\:row-start-1 { + grid-row-start: 1; + } + + .md\:row-start-2 { + grid-row-start: 2; + } + + .md\:row-start-3 { + grid-row-start: 3; + } + + .md\:row-start-4 { + grid-row-start: 4; + } + + .md\:row-start-5 { + grid-row-start: 5; + } + + .md\:row-start-6 { + grid-row-start: 6; + } + + .md\:row-start-7 { + grid-row-start: 7; + } + + .md\:row-start-auto { + grid-row-start: auto; + } + + .md\:row-end-1 { + grid-row-end: 1; + } + + .md\:row-end-2 { + grid-row-end: 2; + } + + .md\:row-end-3 { + grid-row-end: 3; + } + + .md\:row-end-4 { + grid-row-end: 4; + } + + .md\:row-end-5 { + grid-row-end: 5; + } + + .md\:row-end-6 { + grid-row-end: 6; + } + + .md\:row-end-7 { + grid-row-end: 7; + } + + .md\:row-end-auto { + grid-row-end: auto; + } + + .md\:transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); + } + + .md\:transform-none { + transform: none; + } + + .md\:origin-center { + transform-origin: center; + } + + .md\:origin-top { + transform-origin: top; + } + + .md\:origin-top-right { + transform-origin: top right; + } + + .md\:origin-right { + transform-origin: right; + } + + .md\:origin-bottom-right { + transform-origin: bottom right; + } + + .md\:origin-bottom { + transform-origin: bottom; + } + + .md\:origin-bottom-left { + transform-origin: bottom left; + } + + .md\:origin-left { + transform-origin: left; + } + + .md\:origin-top-left { + transform-origin: top left; + } + + .md\:scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .md\:scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .md\:scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .md\:scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .md\:scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .md\:scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .md\:scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .md\:scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .md\:scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .md\:scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .md\:scale-x-0 { + --transform-scale-x: 0; + } + + .md\:scale-x-50 { + --transform-scale-x: .5; + } + + .md\:scale-x-75 { + --transform-scale-x: .75; + } + + .md\:scale-x-90 { + --transform-scale-x: .9; + } + + .md\:scale-x-95 { + --transform-scale-x: .95; + } + + .md\:scale-x-100 { + --transform-scale-x: 1; + } + + .md\:scale-x-105 { + --transform-scale-x: 1.05; + } + + .md\:scale-x-110 { + --transform-scale-x: 1.1; + } + + .md\:scale-x-125 { + --transform-scale-x: 1.25; + } + + .md\:scale-x-150 { + --transform-scale-x: 1.5; + } + + .md\:scale-y-0 { + --transform-scale-y: 0; + } + + .md\:scale-y-50 { + --transform-scale-y: .5; + } + + .md\:scale-y-75 { + --transform-scale-y: .75; + } + + .md\:scale-y-90 { + --transform-scale-y: .9; + } + + .md\:scale-y-95 { + --transform-scale-y: .95; + } + + .md\:scale-y-100 { + --transform-scale-y: 1; + } + + .md\:scale-y-105 { + --transform-scale-y: 1.05; + } + + .md\:scale-y-110 { + --transform-scale-y: 1.1; + } + + .md\:scale-y-125 { + --transform-scale-y: 1.25; + } + + .md\:scale-y-150 { + --transform-scale-y: 1.5; + } + + .md\:hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .md\:hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .md\:hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .md\:hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .md\:hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .md\:hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .md\:hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .md\:hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .md\:hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .md\:hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .md\:hover\:scale-x-0:hover { + --transform-scale-x: 0; + } + + .md\:hover\:scale-x-50:hover { + --transform-scale-x: .5; + } + + .md\:hover\:scale-x-75:hover { + --transform-scale-x: .75; + } + + .md\:hover\:scale-x-90:hover { + --transform-scale-x: .9; + } + + .md\:hover\:scale-x-95:hover { + --transform-scale-x: .95; + } + + .md\:hover\:scale-x-100:hover { + --transform-scale-x: 1; + } + + .md\:hover\:scale-x-105:hover { + --transform-scale-x: 1.05; + } + + .md\:hover\:scale-x-110:hover { + --transform-scale-x: 1.1; + } + + .md\:hover\:scale-x-125:hover { + --transform-scale-x: 1.25; + } + + .md\:hover\:scale-x-150:hover { + --transform-scale-x: 1.5; + } + + .md\:hover\:scale-y-0:hover { + --transform-scale-y: 0; + } + + .md\:hover\:scale-y-50:hover { + --transform-scale-y: .5; + } + + .md\:hover\:scale-y-75:hover { + --transform-scale-y: .75; + } + + .md\:hover\:scale-y-90:hover { + --transform-scale-y: .9; + } + + .md\:hover\:scale-y-95:hover { + --transform-scale-y: .95; + } + + .md\:hover\:scale-y-100:hover { + --transform-scale-y: 1; + } + + .md\:hover\:scale-y-105:hover { + --transform-scale-y: 1.05; + } + + .md\:hover\:scale-y-110:hover { + --transform-scale-y: 1.1; + } + + .md\:hover\:scale-y-125:hover { + --transform-scale-y: 1.25; + } + + .md\:hover\:scale-y-150:hover { + --transform-scale-y: 1.5; + } + + .md\:focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .md\:focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .md\:focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .md\:focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .md\:focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .md\:focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .md\:focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .md\:focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .md\:focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .md\:focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .md\:focus\:scale-x-0:focus { + --transform-scale-x: 0; + } + + .md\:focus\:scale-x-50:focus { + --transform-scale-x: .5; + } + + .md\:focus\:scale-x-75:focus { + --transform-scale-x: .75; + } + + .md\:focus\:scale-x-90:focus { + --transform-scale-x: .9; + } + + .md\:focus\:scale-x-95:focus { + --transform-scale-x: .95; + } + + .md\:focus\:scale-x-100:focus { + --transform-scale-x: 1; + } + + .md\:focus\:scale-x-105:focus { + --transform-scale-x: 1.05; + } + + .md\:focus\:scale-x-110:focus { + --transform-scale-x: 1.1; + } + + .md\:focus\:scale-x-125:focus { + --transform-scale-x: 1.25; + } + + .md\:focus\:scale-x-150:focus { + --transform-scale-x: 1.5; + } + + .md\:focus\:scale-y-0:focus { + --transform-scale-y: 0; + } + + .md\:focus\:scale-y-50:focus { + --transform-scale-y: .5; + } + + .md\:focus\:scale-y-75:focus { + --transform-scale-y: .75; + } + + .md\:focus\:scale-y-90:focus { + --transform-scale-y: .9; + } + + .md\:focus\:scale-y-95:focus { + --transform-scale-y: .95; + } + + .md\:focus\:scale-y-100:focus { + --transform-scale-y: 1; + } + + .md\:focus\:scale-y-105:focus { + --transform-scale-y: 1.05; + } + + .md\:focus\:scale-y-110:focus { + --transform-scale-y: 1.1; + } + + .md\:focus\:scale-y-125:focus { + --transform-scale-y: 1.25; + } + + .md\:focus\:scale-y-150:focus { + --transform-scale-y: 1.5; + } + + .md\:rotate-0 { + --transform-rotate: 0; + } + + .md\:rotate-45 { + --transform-rotate: 45deg; + } + + .md\:rotate-90 { + --transform-rotate: 90deg; + } + + .md\:rotate-180 { + --transform-rotate: 180deg; + } + + .md\:-rotate-180 { + --transform-rotate: -180deg; + } + + .md\:-rotate-90 { + --transform-rotate: -90deg; + } + + .md\:-rotate-45 { + --transform-rotate: -45deg; + } + + .md\:hover\:rotate-0:hover { + --transform-rotate: 0; + } + + .md\:hover\:rotate-45:hover { + --transform-rotate: 45deg; + } + + .md\:hover\:rotate-90:hover { + --transform-rotate: 90deg; + } + + .md\:hover\:rotate-180:hover { + --transform-rotate: 180deg; + } + + .md\:hover\:-rotate-180:hover { + --transform-rotate: -180deg; + } + + .md\:hover\:-rotate-90:hover { + --transform-rotate: -90deg; + } + + .md\:hover\:-rotate-45:hover { + --transform-rotate: -45deg; + } + + .md\:focus\:rotate-0:focus { + --transform-rotate: 0; + } + + .md\:focus\:rotate-45:focus { + --transform-rotate: 45deg; + } + + .md\:focus\:rotate-90:focus { + --transform-rotate: 90deg; + } + + .md\:focus\:rotate-180:focus { + --transform-rotate: 180deg; + } + + .md\:focus\:-rotate-180:focus { + --transform-rotate: -180deg; + } + + .md\:focus\:-rotate-90:focus { + --transform-rotate: -90deg; + } + + .md\:focus\:-rotate-45:focus { + --transform-rotate: -45deg; + } + + .md\:translate-x-0 { + --transform-translate-x: 0; + } + + .md\:translate-x-1 { + --transform-translate-x: 0.25rem; + } + + .md\:translate-x-2 { + --transform-translate-x: 0.5rem; + } + + .md\:translate-x-3 { + --transform-translate-x: 0.75rem; + } + + .md\:translate-x-4 { + --transform-translate-x: 1rem; + } + + .md\:translate-x-5 { + --transform-translate-x: 1.25rem; + } + + .md\:translate-x-6 { + --transform-translate-x: 1.5rem; + } + + .md\:translate-x-8 { + --transform-translate-x: 2rem; + } + + .md\:translate-x-10 { + --transform-translate-x: 2.5rem; + } + + .md\:translate-x-12 { + --transform-translate-x: 3rem; + } + + .md\:translate-x-16 { + --transform-translate-x: 4rem; + } + + .md\:translate-x-20 { + --transform-translate-x: 5rem; + } + + .md\:translate-x-24 { + --transform-translate-x: 6rem; + } + + .md\:translate-x-32 { + --transform-translate-x: 8rem; + } + + .md\:translate-x-40 { + --transform-translate-x: 10rem; + } + + .md\:translate-x-48 { + --transform-translate-x: 12rem; + } + + .md\:translate-x-56 { + --transform-translate-x: 14rem; + } + + .md\:translate-x-64 { + --transform-translate-x: 16rem; + } + + .md\:translate-x-px { + --transform-translate-x: 1px; + } + + .md\:-translate-x-1 { + --transform-translate-x: -0.25rem; + } + + .md\:-translate-x-2 { + --transform-translate-x: -0.5rem; + } + + .md\:-translate-x-3 { + --transform-translate-x: -0.75rem; + } + + .md\:-translate-x-4 { + --transform-translate-x: -1rem; + } + + .md\:-translate-x-5 { + --transform-translate-x: -1.25rem; + } + + .md\:-translate-x-6 { + --transform-translate-x: -1.5rem; + } + + .md\:-translate-x-8 { + --transform-translate-x: -2rem; + } + + .md\:-translate-x-10 { + --transform-translate-x: -2.5rem; + } + + .md\:-translate-x-12 { + --transform-translate-x: -3rem; + } + + .md\:-translate-x-16 { + --transform-translate-x: -4rem; + } + + .md\:-translate-x-20 { + --transform-translate-x: -5rem; + } + + .md\:-translate-x-24 { + --transform-translate-x: -6rem; + } + + .md\:-translate-x-32 { + --transform-translate-x: -8rem; + } + + .md\:-translate-x-40 { + --transform-translate-x: -10rem; + } + + .md\:-translate-x-48 { + --transform-translate-x: -12rem; + } + + .md\:-translate-x-56 { + --transform-translate-x: -14rem; + } + + .md\:-translate-x-64 { + --transform-translate-x: -16rem; + } + + .md\:-translate-x-px { + --transform-translate-x: -1px; + } + + .md\:-translate-x-full { + --transform-translate-x: -100%; + } + + .md\:-translate-x-1\/2 { + --transform-translate-x: -50%; + } + + .md\:translate-x-1\/2 { + --transform-translate-x: 50%; + } + + .md\:translate-x-full { + --transform-translate-x: 100%; + } + + .md\:translate-y-0 { + --transform-translate-y: 0; + } + + .md\:translate-y-1 { + --transform-translate-y: 0.25rem; + } + + .md\:translate-y-2 { + --transform-translate-y: 0.5rem; + } + + .md\:translate-y-3 { + --transform-translate-y: 0.75rem; + } + + .md\:translate-y-4 { + --transform-translate-y: 1rem; + } + + .md\:translate-y-5 { + --transform-translate-y: 1.25rem; + } + + .md\:translate-y-6 { + --transform-translate-y: 1.5rem; + } + + .md\:translate-y-8 { + --transform-translate-y: 2rem; + } + + .md\:translate-y-10 { + --transform-translate-y: 2.5rem; + } + + .md\:translate-y-12 { + --transform-translate-y: 3rem; + } + + .md\:translate-y-16 { + --transform-translate-y: 4rem; + } + + .md\:translate-y-20 { + --transform-translate-y: 5rem; + } + + .md\:translate-y-24 { + --transform-translate-y: 6rem; + } + + .md\:translate-y-32 { + --transform-translate-y: 8rem; + } + + .md\:translate-y-40 { + --transform-translate-y: 10rem; + } + + .md\:translate-y-48 { + --transform-translate-y: 12rem; + } + + .md\:translate-y-56 { + --transform-translate-y: 14rem; + } + + .md\:translate-y-64 { + --transform-translate-y: 16rem; + } + + .md\:translate-y-px { + --transform-translate-y: 1px; + } + + .md\:-translate-y-1 { + --transform-translate-y: -0.25rem; + } + + .md\:-translate-y-2 { + --transform-translate-y: -0.5rem; + } + + .md\:-translate-y-3 { + --transform-translate-y: -0.75rem; + } + + .md\:-translate-y-4 { + --transform-translate-y: -1rem; + } + + .md\:-translate-y-5 { + --transform-translate-y: -1.25rem; + } + + .md\:-translate-y-6 { + --transform-translate-y: -1.5rem; + } + + .md\:-translate-y-8 { + --transform-translate-y: -2rem; + } + + .md\:-translate-y-10 { + --transform-translate-y: -2.5rem; + } + + .md\:-translate-y-12 { + --transform-translate-y: -3rem; + } + + .md\:-translate-y-16 { + --transform-translate-y: -4rem; + } + + .md\:-translate-y-20 { + --transform-translate-y: -5rem; + } + + .md\:-translate-y-24 { + --transform-translate-y: -6rem; + } + + .md\:-translate-y-32 { + --transform-translate-y: -8rem; + } + + .md\:-translate-y-40 { + --transform-translate-y: -10rem; + } + + .md\:-translate-y-48 { + --transform-translate-y: -12rem; + } + + .md\:-translate-y-56 { + --transform-translate-y: -14rem; + } + + .md\:-translate-y-64 { + --transform-translate-y: -16rem; + } + + .md\:-translate-y-px { + --transform-translate-y: -1px; + } + + .md\:-translate-y-full { + --transform-translate-y: -100%; + } + + .md\:-translate-y-1\/2 { + --transform-translate-y: -50%; + } + + .md\:translate-y-1\/2 { + --transform-translate-y: 50%; + } + + .md\:translate-y-full { + --transform-translate-y: 100%; + } + + .md\:hover\:translate-x-0:hover { + --transform-translate-x: 0; + } + + .md\:hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; + } + + .md\:hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; + } + + .md\:hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; + } + + .md\:hover\:translate-x-4:hover { + --transform-translate-x: 1rem; + } + + .md\:hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; + } + + .md\:hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; + } + + .md\:hover\:translate-x-8:hover { + --transform-translate-x: 2rem; + } + + .md\:hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; + } + + .md\:hover\:translate-x-12:hover { + --transform-translate-x: 3rem; + } + + .md\:hover\:translate-x-16:hover { + --transform-translate-x: 4rem; + } + + .md\:hover\:translate-x-20:hover { + --transform-translate-x: 5rem; + } + + .md\:hover\:translate-x-24:hover { + --transform-translate-x: 6rem; + } + + .md\:hover\:translate-x-32:hover { + --transform-translate-x: 8rem; + } + + .md\:hover\:translate-x-40:hover { + --transform-translate-x: 10rem; + } + + .md\:hover\:translate-x-48:hover { + --transform-translate-x: 12rem; + } + + .md\:hover\:translate-x-56:hover { + --transform-translate-x: 14rem; + } + + .md\:hover\:translate-x-64:hover { + --transform-translate-x: 16rem; + } + + .md\:hover\:translate-x-px:hover { + --transform-translate-x: 1px; + } + + .md\:hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; + } + + .md\:hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; + } + + .md\:hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; + } + + .md\:hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; + } + + .md\:hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; + } + + .md\:hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; + } + + .md\:hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; + } + + .md\:hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; + } + + .md\:hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; + } + + .md\:hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; + } + + .md\:hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; + } + + .md\:hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; + } + + .md\:hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; + } + + .md\:hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; + } + + .md\:hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; + } + + .md\:hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; + } + + .md\:hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; + } + + .md\:hover\:-translate-x-px:hover { + --transform-translate-x: -1px; + } + + .md\:hover\:-translate-x-full:hover { + --transform-translate-x: -100%; + } + + .md\:hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; + } + + .md\:hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; + } + + .md\:hover\:translate-x-full:hover { + --transform-translate-x: 100%; + } + + .md\:hover\:translate-y-0:hover { + --transform-translate-y: 0; + } + + .md\:hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; + } + + .md\:hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; + } + + .md\:hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; + } + + .md\:hover\:translate-y-4:hover { + --transform-translate-y: 1rem; + } + + .md\:hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; + } + + .md\:hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; + } + + .md\:hover\:translate-y-8:hover { + --transform-translate-y: 2rem; + } + + .md\:hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; + } + + .md\:hover\:translate-y-12:hover { + --transform-translate-y: 3rem; + } + + .md\:hover\:translate-y-16:hover { + --transform-translate-y: 4rem; + } + + .md\:hover\:translate-y-20:hover { + --transform-translate-y: 5rem; + } + + .md\:hover\:translate-y-24:hover { + --transform-translate-y: 6rem; + } + + .md\:hover\:translate-y-32:hover { + --transform-translate-y: 8rem; + } + + .md\:hover\:translate-y-40:hover { + --transform-translate-y: 10rem; + } + + .md\:hover\:translate-y-48:hover { + --transform-translate-y: 12rem; + } + + .md\:hover\:translate-y-56:hover { + --transform-translate-y: 14rem; + } + + .md\:hover\:translate-y-64:hover { + --transform-translate-y: 16rem; + } + + .md\:hover\:translate-y-px:hover { + --transform-translate-y: 1px; + } + + .md\:hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; + } + + .md\:hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; + } + + .md\:hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; + } + + .md\:hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; + } + + .md\:hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; + } + + .md\:hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; + } + + .md\:hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; + } + + .md\:hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; + } + + .md\:hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; + } + + .md\:hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; + } + + .md\:hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; + } + + .md\:hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; + } + + .md\:hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; + } + + .md\:hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; + } + + .md\:hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; + } + + .md\:hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; + } + + .md\:hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; + } + + .md\:hover\:-translate-y-px:hover { + --transform-translate-y: -1px; + } + + .md\:hover\:-translate-y-full:hover { + --transform-translate-y: -100%; + } + + .md\:hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; + } + + .md\:hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; + } + + .md\:hover\:translate-y-full:hover { + --transform-translate-y: 100%; + } + + .md\:focus\:translate-x-0:focus { + --transform-translate-x: 0; + } + + .md\:focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; + } + + .md\:focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; + } + + .md\:focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; + } + + .md\:focus\:translate-x-4:focus { + --transform-translate-x: 1rem; + } + + .md\:focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; + } + + .md\:focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; + } + + .md\:focus\:translate-x-8:focus { + --transform-translate-x: 2rem; + } + + .md\:focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; + } + + .md\:focus\:translate-x-12:focus { + --transform-translate-x: 3rem; + } + + .md\:focus\:translate-x-16:focus { + --transform-translate-x: 4rem; + } + + .md\:focus\:translate-x-20:focus { + --transform-translate-x: 5rem; + } + + .md\:focus\:translate-x-24:focus { + --transform-translate-x: 6rem; + } + + .md\:focus\:translate-x-32:focus { + --transform-translate-x: 8rem; + } + + .md\:focus\:translate-x-40:focus { + --transform-translate-x: 10rem; + } + + .md\:focus\:translate-x-48:focus { + --transform-translate-x: 12rem; + } + + .md\:focus\:translate-x-56:focus { + --transform-translate-x: 14rem; + } + + .md\:focus\:translate-x-64:focus { + --transform-translate-x: 16rem; + } + + .md\:focus\:translate-x-px:focus { + --transform-translate-x: 1px; + } + + .md\:focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; + } + + .md\:focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; + } + + .md\:focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; + } + + .md\:focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; + } + + .md\:focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; + } + + .md\:focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; + } + + .md\:focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; + } + + .md\:focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; + } + + .md\:focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; + } + + .md\:focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; + } + + .md\:focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; + } + + .md\:focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; + } + + .md\:focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; + } + + .md\:focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; + } + + .md\:focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; + } + + .md\:focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; + } + + .md\:focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; + } + + .md\:focus\:-translate-x-px:focus { + --transform-translate-x: -1px; + } + + .md\:focus\:-translate-x-full:focus { + --transform-translate-x: -100%; + } + + .md\:focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; + } + + .md\:focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; + } + + .md\:focus\:translate-x-full:focus { + --transform-translate-x: 100%; + } + + .md\:focus\:translate-y-0:focus { + --transform-translate-y: 0; + } + + .md\:focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; + } + + .md\:focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; + } + + .md\:focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; + } + + .md\:focus\:translate-y-4:focus { + --transform-translate-y: 1rem; + } + + .md\:focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; + } + + .md\:focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; + } + + .md\:focus\:translate-y-8:focus { + --transform-translate-y: 2rem; + } + + .md\:focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; + } + + .md\:focus\:translate-y-12:focus { + --transform-translate-y: 3rem; + } + + .md\:focus\:translate-y-16:focus { + --transform-translate-y: 4rem; + } + + .md\:focus\:translate-y-20:focus { + --transform-translate-y: 5rem; + } + + .md\:focus\:translate-y-24:focus { + --transform-translate-y: 6rem; + } + + .md\:focus\:translate-y-32:focus { + --transform-translate-y: 8rem; + } + + .md\:focus\:translate-y-40:focus { + --transform-translate-y: 10rem; + } + + .md\:focus\:translate-y-48:focus { + --transform-translate-y: 12rem; + } + + .md\:focus\:translate-y-56:focus { + --transform-translate-y: 14rem; + } + + .md\:focus\:translate-y-64:focus { + --transform-translate-y: 16rem; + } + + .md\:focus\:translate-y-px:focus { + --transform-translate-y: 1px; + } + + .md\:focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; + } + + .md\:focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; + } + + .md\:focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; + } + + .md\:focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; + } + + .md\:focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; + } + + .md\:focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; + } + + .md\:focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; + } + + .md\:focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; + } + + .md\:focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; + } + + .md\:focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; + } + + .md\:focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; + } + + .md\:focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; + } + + .md\:focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; + } + + .md\:focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; + } + + .md\:focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; + } + + .md\:focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; + } + + .md\:focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; + } + + .md\:focus\:-translate-y-px:focus { + --transform-translate-y: -1px; + } + + .md\:focus\:-translate-y-full:focus { + --transform-translate-y: -100%; + } + + .md\:focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; + } + + .md\:focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; + } + + .md\:focus\:translate-y-full:focus { + --transform-translate-y: 100%; + } + + .md\:skew-x-0 { + --transform-skew-x: 0; + } + + .md\:skew-x-3 { + --transform-skew-x: 3deg; + } + + .md\:skew-x-6 { + --transform-skew-x: 6deg; + } + + .md\:skew-x-12 { + --transform-skew-x: 12deg; + } + + .md\:-skew-x-12 { + --transform-skew-x: -12deg; + } + + .md\:-skew-x-6 { + --transform-skew-x: -6deg; + } + + .md\:-skew-x-3 { + --transform-skew-x: -3deg; + } + + .md\:skew-y-0 { + --transform-skew-y: 0; + } + + .md\:skew-y-3 { + --transform-skew-y: 3deg; + } + + .md\:skew-y-6 { + --transform-skew-y: 6deg; + } + + .md\:skew-y-12 { + --transform-skew-y: 12deg; + } + + .md\:-skew-y-12 { + --transform-skew-y: -12deg; + } + + .md\:-skew-y-6 { + --transform-skew-y: -6deg; + } + + .md\:-skew-y-3 { + --transform-skew-y: -3deg; + } + + .md\:hover\:skew-x-0:hover { + --transform-skew-x: 0; + } + + .md\:hover\:skew-x-3:hover { + --transform-skew-x: 3deg; + } + + .md\:hover\:skew-x-6:hover { + --transform-skew-x: 6deg; + } + + .md\:hover\:skew-x-12:hover { + --transform-skew-x: 12deg; + } + + .md\:hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; + } + + .md\:hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; + } + + .md\:hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; + } + + .md\:hover\:skew-y-0:hover { + --transform-skew-y: 0; + } + + .md\:hover\:skew-y-3:hover { + --transform-skew-y: 3deg; + } + + .md\:hover\:skew-y-6:hover { + --transform-skew-y: 6deg; + } + + .md\:hover\:skew-y-12:hover { + --transform-skew-y: 12deg; + } + + .md\:hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; + } + + .md\:hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; + } + + .md\:hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; + } + + .md\:focus\:skew-x-0:focus { + --transform-skew-x: 0; + } + + .md\:focus\:skew-x-3:focus { + --transform-skew-x: 3deg; + } + + .md\:focus\:skew-x-6:focus { + --transform-skew-x: 6deg; + } + + .md\:focus\:skew-x-12:focus { + --transform-skew-x: 12deg; + } + + .md\:focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; + } + + .md\:focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; + } + + .md\:focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; + } + + .md\:focus\:skew-y-0:focus { + --transform-skew-y: 0; + } + + .md\:focus\:skew-y-3:focus { + --transform-skew-y: 3deg; + } + + .md\:focus\:skew-y-6:focus { + --transform-skew-y: 6deg; + } + + .md\:focus\:skew-y-12:focus { + --transform-skew-y: 12deg; + } + + .md\:focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; + } + + .md\:focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; + } + + .md\:focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; + } + + .md\:transition-none { + transition-property: none; + } + + .md\:transition-all { + transition-property: all; + } + + .md\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + } + + .md\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + } + + .md\:transition-opacity { + transition-property: opacity; + } + + .md\:transition-shadow { + transition-property: box-shadow; + } + + .md\:transition-transform { + transition-property: transform; + } + + .md\:ease-linear { + transition-timing-function: linear; + } + + .md\:ease-in { + transition-timing-function: cubic-bezier(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; + } +} + +@media (min-width: 1024px) { + .lg\:space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); + } + + .lg\:space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); + } + + .lg\:space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); + } + + .lg\:space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); + } + + .lg\:space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); + } + + .lg\:space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); + } + + .lg\:space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); + } + + .lg\:space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); + } + + .lg\:space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); + } + + .lg\:space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); + } + + .lg\:space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); + } + + .lg\:space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); + } + + .lg\:space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); + } + + .lg\:space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); + } + + .lg\:space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); + } + + .lg\:space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); + } + + .lg\:space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); + } + + .lg\:space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); + } + + .lg\:space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); + } + + .lg\:space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); + } + + .lg\:-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); + } + + .lg\:-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); + } + + .lg\:-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); + } + + .lg\:-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); + } + + .lg\:-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); + } + + .lg\:-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); + } + + .lg\:-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); + } + + .lg\:-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); + } + + .lg\:-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); + } + + .lg\:-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); + } + + .lg\:-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); + } + + .lg\:-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); + } + + .lg\:-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); + } + + .lg\:-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); + } + + .lg\:-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); + } + + .lg\:-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); + } + + .lg\:-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); + } + + .lg\:-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; + } + + .lg\:space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; + } + + .lg\:divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); + } + + .lg\:divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); + } + + .lg\:divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); + } + + .lg\:divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); + } + + .lg\:divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); + } + + .lg\:divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; + } + + .lg\:divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; + } + + .lg\:divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; + } + + .lg\:divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; + } + + .lg\:divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; + } + + .lg\:divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; + } + + .lg\:divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + } + + .lg\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .lg\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .lg\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .lg\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .lg\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .lg\:bg-fixed { + background-attachment: fixed; + } + + .lg\:bg-local { + background-attachment: local; + } + + .lg\:bg-scroll { + background-attachment: scroll; + } + + .lg\:bg-opacity-0 { + --bg-opacity: 0; + } + + .lg\:bg-opacity-25 { + --bg-opacity: 0.25; + } + + .lg\:bg-opacity-50 { + --bg-opacity: 0.5; + } + + .lg\:bg-opacity-75 { + --bg-opacity: 0.75; + } + + .lg\:bg-opacity-100 { + --bg-opacity: 1; + } + + .lg\:hover\:bg-opacity-0:hover { + --bg-opacity: 0; + } + + .lg\:hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; + } + + .lg\:hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; + } + + .lg\:hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; + } + + .lg\:hover\:bg-opacity-100:hover { + --bg-opacity: 1; + } + + .lg\:focus\:bg-opacity-0:focus { + --bg-opacity: 0; + } + + .lg\:focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; + } + + .lg\:focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; + } + + .lg\:focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; + } + + .lg\:focus\:bg-opacity-100:focus { + --bg-opacity: 1; + } + + .lg\:bg-bottom { + background-position: bottom; + } + + .lg\:bg-center { + background-position: center; + } + + .lg\:bg-left { + background-position: left; + } + + .lg\:bg-left-bottom { + background-position: left bottom; + } + + .lg\:bg-left-top { + background-position: left top; + } + + .lg\:bg-right { + background-position: right; + } + + .lg\:bg-right-bottom { + background-position: right bottom; + } + + .lg\:bg-right-top { + background-position: right top; + } + + .lg\:bg-top { + background-position: top; + } + + .lg\:bg-repeat { + background-repeat: repeat; + } + + .lg\:bg-no-repeat { + background-repeat: no-repeat; + } + + .lg\:bg-repeat-x { + background-repeat: repeat-x; + } + + .lg\:bg-repeat-y { + background-repeat: repeat-y; + } + + .lg\:bg-repeat-round { + background-repeat: round; + } + + .lg\:bg-repeat-space { + background-repeat: space; + } + + .lg\:bg-auto { + background-size: auto; + } + + .lg\:bg-cover { + background-size: cover; + } + + .lg\:bg-contain { + background-size: contain; + } + + .lg\:border-collapse { + border-collapse: collapse; + } + + .lg\:border-separate { + border-collapse: separate; + } + + .lg\:border-opacity-0 { + --border-opacity: 0; + } + + .lg\:border-opacity-25 { + --border-opacity: 0.25; + } + + .lg\:border-opacity-50 { + --border-opacity: 0.5; + } + + .lg\:border-opacity-75 { + --border-opacity: 0.75; + } + + .lg\:border-opacity-100 { + --border-opacity: 1; + } + + .lg\:hover\:border-opacity-0:hover { + --border-opacity: 0; + } + + .lg\:hover\:border-opacity-25:hover { + --border-opacity: 0.25; + } + + .lg\:hover\:border-opacity-50:hover { + --border-opacity: 0.5; + } + + .lg\:hover\:border-opacity-75:hover { + --border-opacity: 0.75; + } + + .lg\:hover\:border-opacity-100:hover { + --border-opacity: 1; + } + + .lg\:focus\:border-opacity-0:focus { + --border-opacity: 0; + } + + .lg\:focus\:border-opacity-25:focus { + --border-opacity: 0.25; + } + + .lg\:focus\:border-opacity-50:focus { + --border-opacity: 0.5; + } + + .lg\:focus\:border-opacity-75:focus { + --border-opacity: 0.75; + } + + .lg\:focus\:border-opacity-100:focus { + --border-opacity: 1; + } + + .lg\:rounded-none { + border-radius: 0; + } + + .lg\:rounded-sm { + border-radius: 0.125rem; + } + + .lg\:rounded { + border-radius: 0.25rem; + } + + .lg\:rounded-md { + border-radius: 0.375rem; + } + + .lg\:rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; + } + + .lg\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .lg\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .lg\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .lg\:border-solid { + border-style: solid; + } + + .lg\:border-dashed { + border-style: dashed; + } + + .lg\:border-dotted { + border-style: dotted; + } + + .lg\:border-double { + border-style: double; + } + + .lg\:border-none { + border-style: none; + } + + .lg\:border-0 { + border-width: 0; + } + + .lg\:border-2 { + border-width: 2px; + } + + .lg\:border-4 { + border-width: 4px; + } + + .lg\:border-8 { + border-width: 8px; + } + + .lg\:border { + border-width: 1px; + } + + .lg\:border-t-0 { + border-top-width: 0; + } + + .lg\:border-r-0 { + border-right-width: 0; + } + + .lg\:border-b-0 { + border-bottom-width: 0; + } + + .lg\:border-l-0 { + border-left-width: 0; + } + + .lg\:border-t-2 { + border-top-width: 2px; + } + + .lg\:border-r-2 { + border-right-width: 2px; + } + + .lg\:border-b-2 { + border-bottom-width: 2px; + } + + .lg\:border-l-2 { + border-left-width: 2px; + } + + .lg\:border-t-4 { + border-top-width: 4px; + } + + .lg\:border-r-4 { + border-right-width: 4px; + } + + .lg\:border-b-4 { + border-bottom-width: 4px; + } + + .lg\:border-l-4 { + border-left-width: 4px; + } + + .lg\:border-t-8 { + border-top-width: 8px; + } + + .lg\:border-r-8 { + border-right-width: 8px; + } + + .lg\:border-b-8 { + border-bottom-width: 8px; + } + + .lg\:border-l-8 { + border-left-width: 8px; + } + + .lg\:border-t { + border-top-width: 1px; + } + + .lg\:border-r { + border-right-width: 1px; + } + + .lg\:border-b { + border-bottom-width: 1px; + } + + .lg\:border-l { + border-left-width: 1px; + } + + .lg\:box-border { + box-sizing: border-box; + } + + .lg\:box-content { + box-sizing: content-box; + } + + .lg\:cursor-auto { + cursor: auto; + } + + .lg\:cursor-default { + cursor: default; + } + + .lg\:cursor-pointer { + cursor: pointer; + } + + .lg\:cursor-wait { + cursor: wait; + } + + .lg\:cursor-text { + cursor: text; + } + + .lg\:cursor-move { + cursor: move; + } + + .lg\:cursor-not-allowed { + cursor: not-allowed; + } + + .lg\:block { + display: block; + } + + .lg\:inline-block { + display: inline-block; + } + + .lg\:inline { + display: inline; + } + + .lg\:flex { + display: flex; + } + + .lg\:inline-flex { + display: inline-flex; + } + + .lg\:table { + display: table; + } + + .lg\:table-caption { + display: table-caption; + } + + .lg\:table-cell { + display: table-cell; + } + + .lg\:table-column { + display: table-column; + } + + .lg\:table-column-group { + display: table-column-group; + } + + .lg\:table-footer-group { + display: table-footer-group; + } + + .lg\:table-header-group { + display: table-header-group; + } + + .lg\:table-row-group { + display: table-row-group; + } + + .lg\:table-row { + display: table-row; + } + + .lg\:flow-root { + display: flow-root; + } + + .lg\:grid { + display: grid; + } + + .lg\:inline-grid { + display: inline-grid; + } + + .lg\:hidden { + display: none; + } + + .theme-dark .lg\:dark\:block { + display: block; + } + + .theme-dark .lg\:dark\:inline-block { + display: inline-block; + } + + .theme-dark .lg\:dark\:inline { + display: inline; + } + + .theme-dark .lg\:dark\:flex { + display: flex; + } + + .theme-dark .lg\:dark\:inline-flex { + display: inline-flex; + } + + .theme-dark .lg\:dark\:table { + display: table; + } + + .theme-dark .lg\:dark\:table-caption { + display: table-caption; + } + + .theme-dark .lg\:dark\:table-cell { + display: table-cell; + } + + .theme-dark .lg\:dark\:table-column { + display: table-column; + } + + .theme-dark .lg\:dark\:table-column-group { + display: table-column-group; + } + + .theme-dark .lg\:dark\:table-footer-group { + display: table-footer-group; + } + + .theme-dark .lg\:dark\:table-header-group { + display: table-header-group; + } + + .theme-dark .lg\:dark\:table-row-group { + display: table-row-group; + } + + .theme-dark .lg\:dark\:table-row { + display: table-row; + } + + .theme-dark .lg\:dark\:flow-root { + display: flow-root; + } + + .theme-dark .lg\:dark\:grid { + display: grid; + } + + .theme-dark .lg\:dark\:inline-grid { + display: inline-grid; + } + + .theme-dark .lg\:dark\:hidden { + display: none; + } + + .lg\:flex-row { + flex-direction: row; + } + + .lg\:flex-row-reverse { + flex-direction: row-reverse; + } + + .lg\:flex-col { + flex-direction: column; + } + + .lg\:flex-col-reverse { + flex-direction: column-reverse; + } + + .lg\:flex-wrap { + flex-wrap: wrap; + } + + .lg\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .lg\:flex-no-wrap { + flex-wrap: nowrap; + } + + .lg\:items-start { + align-items: flex-start; + } + + .lg\:items-end { + align-items: flex-end; + } + + .lg\:items-center { + align-items: center; + } + + .lg\:items-baseline { + align-items: baseline; + } + + .lg\:items-stretch { + align-items: stretch; + } + + .lg\:self-auto { + align-self: auto; + } + + .lg\:self-start { + align-self: flex-start; + } + + .lg\:self-end { + align-self: flex-end; + } + + .lg\:self-center { + align-self: center; + } + + .lg\:self-stretch { + align-self: stretch; + } + + .lg\:justify-start { + justify-content: flex-start; + } + + .lg\:justify-end { + justify-content: flex-end; + } + + .lg\:justify-center { + justify-content: center; + } + + .lg\:justify-between { + justify-content: space-between; + } + + .lg\:justify-around { + justify-content: space-around; + } + + .lg\:justify-evenly { + justify-content: space-evenly; + } + + .lg\:content-center { + align-content: center; + } + + .lg\:content-start { + align-content: flex-start; + } + + .lg\:content-end { + align-content: flex-end; + } + + .lg\:content-between { + align-content: space-between; + } + + .lg\:content-around { + align-content: space-around; + } + + .lg\:flex-1 { + flex: 1 1 0%; + } + + .lg\:flex-auto { + flex: 1 1 auto; + } + + .lg\:flex-initial { + flex: 0 1 auto; + } + + .lg\:flex-none { + flex: none; + } + + .lg\:flex-grow-0 { + flex-grow: 0; + } + + .lg\:flex-grow { + flex-grow: 1; + } + + .lg\:flex-shrink-0 { + flex-shrink: 0; + } + + .lg\:flex-shrink { + flex-shrink: 1; + } + + .lg\:order-1 { + order: 1; + } + + .lg\:order-2 { + order: 2; + } + + .lg\:order-3 { + order: 3; + } + + .lg\:order-4 { + order: 4; + } + + .lg\:order-5 { + order: 5; + } + + .lg\:order-6 { + order: 6; + } + + .lg\:order-7 { + order: 7; + } + + .lg\:order-8 { + order: 8; + } + + .lg\:order-9 { + order: 9; + } + + .lg\:order-10 { + order: 10; + } + + .lg\:order-11 { + order: 11; + } + + .lg\:order-12 { + order: 12; + } + + .lg\:order-first { + order: -9999; + } + + .lg\:order-last { + order: 9999; + } + + .lg\:order-none { + order: 0; + } + + .lg\:float-right { + float: right; + } + + .lg\:float-left { + float: left; + } + + .lg\:float-none { + float: none; + } + + .lg\:clearfix:after { + content: ""; + display: table; + clear: both; + } + + .lg\:clear-left { + clear: left; + } + + .lg\:clear-right { + clear: right; + } + + .lg\:clear-both { + clear: both; + } + + .lg\:clear-none { + clear: none; + } + + .lg\:font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .lg\:font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; + } + + .lg\:font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .lg\:font-hairline { + font-weight: 100; + } + + .lg\:font-thin { + font-weight: 200; + } + + .lg\:font-light { + font-weight: 300; + } + + .lg\:font-normal { + font-weight: 400; + } + + .lg\:font-medium { + font-weight: 500; + } + + .lg\:font-semibold { + font-weight: 600; + } + + .lg\:font-bold { + font-weight: 700; + } + + .lg\:font-extrabold { + font-weight: 800; + } + + .lg\:font-black { + font-weight: 900; + } + + .lg\:hover\:font-hairline:hover { + font-weight: 100; + } + + .lg\:hover\:font-thin:hover { + font-weight: 200; + } + + .lg\:hover\:font-light:hover { + font-weight: 300; + } + + .lg\:hover\:font-normal:hover { + font-weight: 400; + } + + .lg\:hover\:font-medium:hover { + font-weight: 500; + } + + .lg\:hover\:font-semibold:hover { + font-weight: 600; + } + + .lg\:hover\:font-bold:hover { + font-weight: 700; + } + + .lg\:hover\:font-extrabold:hover { + font-weight: 800; + } + + .lg\:hover\:font-black:hover { + font-weight: 900; + } + + .lg\:focus\:font-hairline:focus { + font-weight: 100; + } + + .lg\:focus\:font-thin:focus { + font-weight: 200; + } + + .lg\:focus\:font-light:focus { + font-weight: 300; + } + + .lg\:focus\:font-normal:focus { + font-weight: 400; + } + + .lg\:focus\:font-medium:focus { + font-weight: 500; + } + + .lg\:focus\:font-semibold:focus { + font-weight: 600; + } + + .lg\:focus\:font-bold:focus { + font-weight: 700; + } + + .lg\:focus\:font-extrabold:focus { + font-weight: 800; + } + + .lg\:focus\:font-black:focus { + font-weight: 900; + } + + .lg\:h-0 { + height: 0; + } + + .lg\:h-1 { + height: 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-8 { + height: 2rem; + } + + .lg\:h-10 { + height: 2.5rem; + } + + .lg\:h-12 { + height: 3rem; + } + + .lg\:h-16 { + height: 4rem; + } + + .lg\:h-20 { + height: 5rem; + } + + .lg\:h-24 { + height: 6rem; + } + + .lg\:h-32 { + height: 8rem; + } + + .lg\:h-40 { + height: 10rem; + } + + .lg\:h-48 { + height: 12rem; + } + + .lg\:h-56 { + height: 14rem; + } + + .lg\:h-64 { + height: 16rem; + } + + .lg\:h-auto { + height: auto; + } + + .lg\:h-px { + height: 1px; + } + + .lg\:h-full { + height: 100%; + } + + .lg\:h-screen { + height: 100vh; + } + + .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: 4rem; + } + + .lg\:leading-3 { + line-height: .75rem; + } + + .lg\:leading-4 { + line-height: 1rem; + } + + .lg\:leading-5 { + line-height: 1.25rem; + } + + .lg\:leading-6 { + line-height: 1.5rem; + } + + .lg\:leading-7 { + line-height: 1.75rem; + } + + .lg\:leading-8 { + line-height: 2rem; + } + + .lg\:leading-9 { + line-height: 2.25rem; + } + + .lg\:leading-10 { + line-height: 2.5rem; + } + + .lg\:leading-none { + line-height: 1; + } + + .lg\:leading-tight { + line-height: 1.25; + } + + .lg\:leading-snug { + line-height: 1.375; + } + + .lg\:leading-normal { + line-height: 1.5; + } + + .lg\:leading-relaxed { + line-height: 1.625; + } + + .lg\:leading-loose { + line-height: 2; + } + + .lg\:list-inside { + list-style-position: inside; + } + + .lg\:list-outside { + list-style-position: outside; + } + + .lg\:list-none { + list-style-type: none; + } + + .lg\:list-disc { + list-style-type: disc; + } + + .lg\:list-decimal { + list-style-type: decimal; + } + + .lg\:m-0 { + margin: 0; + } + + .lg\:m-1 { + margin: 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-8 { + margin: 2rem; + } + + .lg\:m-10 { + margin: 2.5rem; + } + + .lg\:m-12 { + margin: 3rem; + } + + .lg\:m-16 { + margin: 4rem; + } + + .lg\:m-20 { + margin: 5rem; + } + + .lg\:m-24 { + margin: 6rem; + } + + .lg\:m-32 { + margin: 8rem; + } + + .lg\:m-40 { + margin: 10rem; + } + + .lg\:m-48 { + margin: 12rem; + } + + .lg\:m-56 { + margin: 14rem; + } + + .lg\:m-64 { + margin: 16rem; + } + + .lg\:m-auto { + margin: auto; + } + + .lg\:m-px { + margin: 1px; + } + + .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-8 { + margin: -2rem; + } + + .lg\:-m-10 { + margin: -2.5rem; + } + + .lg\:-m-12 { + margin: -3rem; + } + + .lg\:-m-16 { + margin: -4rem; + } + + .lg\:-m-20 { + margin: -5rem; + } + + .lg\:-m-24 { + margin: -6rem; + } + + .lg\:-m-32 { + margin: -8rem; + } + + .lg\:-m-40 { + margin: -10rem; + } + + .lg\:-m-48 { + margin: -12rem; + } + + .lg\:-m-56 { + margin: -14rem; + } + + .lg\:-m-64 { + margin: -16rem; + } + + .lg\:-m-px { + margin: -1px; + } + + .lg\:my-0 { + margin-top: 0; + margin-bottom: 0; + } + + .lg\:mx-0 { + margin-left: 0; + margin-right: 0; + } + + .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-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .lg\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .lg\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .lg\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .lg\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .lg\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .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-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .lg\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .lg\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .lg\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .lg\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .lg\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .lg\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .lg\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .lg\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .lg\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .lg\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .lg\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .lg\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .lg\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .lg\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .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-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .lg\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .lg\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .lg\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .lg\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .lg\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .lg\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .lg\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .lg\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .lg\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .lg\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .lg\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .lg\:mt-0 { + margin-top: 0; + } + + .lg\:mr-0 { + margin-right: 0; + } + + .lg\:mb-0 { + margin-bottom: 0; + } + + .lg\:ml-0 { + margin-left: 0; + } + + .lg\:mt-1 { + margin-top: 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-8 { + margin-top: 2rem; + } + + .lg\:mr-8 { + margin-right: 2rem; + } + + .lg\:mb-8 { + margin-bottom: 2rem; + } + + .lg\:ml-8 { + margin-left: 2rem; + } + + .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-12 { + margin-top: 3rem; + } + + .lg\:mr-12 { + margin-right: 3rem; + } + + .lg\:mb-12 { + margin-bottom: 3rem; + } + + .lg\:ml-12 { + margin-left: 3rem; + } + + .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-32 { + margin-top: 8rem; + } + + .lg\:mr-32 { + margin-right: 8rem; + } + + .lg\:mb-32 { + margin-bottom: 8rem; + } + + .lg\:ml-32 { + margin-left: 8rem; + } + + .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-48 { + margin-top: 12rem; + } + + .lg\:mr-48 { + margin-right: 12rem; + } + + .lg\:mb-48 { + margin-bottom: 12rem; + } + + .lg\:ml-48 { + margin-left: 12rem; + } + + .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-64 { + margin-top: 16rem; + } + + .lg\:mr-64 { + margin-right: 16rem; + } + + .lg\:mb-64 { + margin-bottom: 16rem; + } + + .lg\:ml-64 { + margin-left: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + } + + .lg\:-mr-8 { + margin-right: -2rem; + } + + .lg\:-mb-8 { + margin-bottom: -2rem; + } + + .lg\:-ml-8 { + margin-left: -2rem; + } + + .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-12 { + margin-top: -3rem; + } + + .lg\:-mr-12 { + margin-right: -3rem; + } + + .lg\:-mb-12 { + margin-bottom: -3rem; + } + + .lg\:-ml-12 { + margin-left: -3rem; + } + + .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-32 { + margin-top: -8rem; + } + + .lg\:-mr-32 { + margin-right: -8rem; + } + + .lg\:-mb-32 { + margin-bottom: -8rem; + } + + .lg\:-ml-32 { + margin-left: -8rem; + } + + .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-48 { + margin-top: -12rem; + } + + .lg\:-mr-48 { + margin-right: -12rem; + } + + .lg\:-mb-48 { + margin-bottom: -12rem; + } + + .lg\:-ml-48 { + margin-left: -12rem; + } + + .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-64 { + margin-top: -16rem; + } + + .lg\:-mr-64 { + margin-right: -16rem; + } + + .lg\:-mb-64 { + margin-bottom: -16rem; + } + + .lg\:-ml-64 { + margin-left: -16rem; + } + + .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\:max-h-0 { + max-height: 0; + } + + .lg\:max-h-full { + max-height: 100%; + } + + .lg\:max-h-screen { + max-height: 100vh; + } + + .lg\:max-h-xl { + max-height: 36rem; + } + + .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-full { + max-width: 100%; + } + + .lg\:max-w-screen-sm { + max-width: 640px; + } + + .lg\:max-w-screen-md { + max-width: 768px; + } + + .lg\:max-w-screen-lg { + max-width: 1024px; + } + + .lg\:max-w-screen-xl { + max-width: 1280px; + } + + .lg\:min-h-0 { + min-height: 0; + } + + .lg\:min-h-full { + min-height: 100%; + } + + .lg\:min-h-screen { + min-height: 100vh; + } + + .lg\:min-w-0 { + min-width: 0; + } + + .lg\:min-w-full { + min-width: 100%; + } + + .lg\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .lg\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .lg\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .lg\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .lg\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .lg\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .lg\:object-center { + -o-object-position: center; + object-position: center; + } + + .lg\:object-left { + -o-object-position: left; + object-position: left; + } + + .lg\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .lg\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .lg\:object-right { + -o-object-position: right; + object-position: right; + } + + .lg\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .lg\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .lg\:object-top { + -o-object-position: top; + object-position: top; + } + + .lg\:opacity-0 { + opacity: 0; + } + + .lg\:opacity-25 { + opacity: 0.25; + } + + .lg\:opacity-50 { + opacity: 0.5; + } + + .lg\:opacity-75 { + opacity: 0.75; + } + + .lg\:opacity-100 { + opacity: 1; + } + + .lg\:hover\:opacity-0:hover { + opacity: 0; + } + + .lg\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .lg\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .lg\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .lg\:hover\:opacity-100:hover { + opacity: 1; + } + + .lg\:focus\:opacity-0:focus { + opacity: 0; + } + + .lg\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .lg\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .lg\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .lg\:focus\:opacity-100:focus { + opacity: 1; + } + + .lg\:outline-none { + outline: 0; + } + + .lg\:focus\:outline-none:focus { + outline: 0; + } + + .lg\:overflow-auto { + overflow: auto; + } + + .lg\:overflow-hidden { + overflow: hidden; + } + + .lg\:overflow-visible { + overflow: visible; + } + + .lg\:overflow-scroll { + overflow: scroll; + } + + .lg\:overflow-x-auto { + overflow-x: auto; + } + + .lg\:overflow-y-auto { + overflow-y: auto; + } + + .lg\:overflow-x-hidden { + overflow-x: hidden; + } + + .lg\:overflow-y-hidden { + overflow-y: hidden; + } + + .lg\:overflow-x-visible { + overflow-x: visible; + } + + .lg\:overflow-y-visible { + overflow-y: visible; + } + + .lg\:overflow-x-scroll { + overflow-x: scroll; + } + + .lg\:overflow-y-scroll { + overflow-y: scroll; + } + + .lg\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .lg\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + + .lg\:p-0 { + padding: 0; + } + + .lg\:p-1 { + padding: 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-8 { + padding: 2rem; + } + + .lg\:p-10 { + padding: 2.5rem; + } + + .lg\:p-12 { + padding: 3rem; + } + + .lg\:p-16 { + padding: 4rem; + } + + .lg\:p-20 { + padding: 5rem; + } + + .lg\:p-24 { + padding: 6rem; + } + + .lg\:p-32 { + padding: 8rem; + } + + .lg\:p-40 { + padding: 10rem; + } + + .lg\:p-48 { + padding: 12rem; + } + + .lg\:p-56 { + padding: 14rem; + } + + .lg\:p-64 { + padding: 16rem; + } + + .lg\:p-px { + padding: 1px; + } + + .lg\:py-0 { + padding-top: 0; + padding-bottom: 0; + } + + .lg\:px-0 { + padding-left: 0; + padding-right: 0; + } + + .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-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .lg\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .lg\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .lg\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .lg\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .lg\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .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-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .lg\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .lg\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .lg\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .lg\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .lg\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .lg\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .lg\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .lg\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .lg\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .lg\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .lg\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .lg\:pt-0 { + padding-top: 0; + } + + .lg\:pr-0 { + padding-right: 0; + } + + .lg\:pb-0 { + padding-bottom: 0; + } + + .lg\:pl-0 { + padding-left: 0; + } + + .lg\:pt-1 { + padding-top: 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-8 { + padding-top: 2rem; + } + + .lg\:pr-8 { + padding-right: 2rem; + } + + .lg\:pb-8 { + padding-bottom: 2rem; + } + + .lg\:pl-8 { + padding-left: 2rem; + } + + .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-12 { + padding-top: 3rem; + } + + .lg\:pr-12 { + padding-right: 3rem; + } + + .lg\:pb-12 { + padding-bottom: 3rem; + } + + .lg\:pl-12 { + padding-left: 3rem; + } + + .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-32 { + padding-top: 8rem; + } + + .lg\:pr-32 { + padding-right: 8rem; + } + + .lg\:pb-32 { + padding-bottom: 8rem; + } + + .lg\:pl-32 { + padding-left: 8rem; + } + + .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-48 { + padding-top: 12rem; + } + + .lg\:pr-48 { + padding-right: 12rem; + } + + .lg\:pb-48 { + padding-bottom: 12rem; + } + + .lg\:pl-48 { + padding-left: 12rem; + } + + .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-64 { + padding-top: 16rem; + } + + .lg\:pr-64 { + padding-right: 16rem; + } + + .lg\:pb-64 { + padding-bottom: 16rem; + } + + .lg\:pl-64 { + padding-left: 16rem; + } + + .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\:placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; + } + + .lg\:pointer-events-none { + pointer-events: none; + } + + .lg\:pointer-events-auto { + pointer-events: auto; + } + + .lg\:static { + position: static; + } + + .lg\:fixed { + position: fixed; + } + + .lg\:absolute { + position: absolute; + } + + .lg\:relative { + position: relative; + } + + .lg\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .lg\:inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .lg\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .lg\:inset-y-0 { + top: 0; + bottom: 0; + } + + .lg\:inset-x-0 { + right: 0; + left: 0; + } + + .lg\:inset-y-auto { + top: auto; + bottom: auto; + } + + .lg\:inset-x-auto { + right: auto; + left: auto; + } + + .lg\:top-0 { + top: 0; + } + + .lg\:right-0 { + right: 0; + } + + .lg\:bottom-0 { + bottom: 0; + } + + .lg\:left-0 { + left: 0; + } + + .lg\:top-auto { + top: auto; + } + + .lg\:right-auto { + right: auto; + } + + .lg\:bottom-auto { + bottom: auto; + } + + .lg\:left-auto { + left: auto; + } + + .lg\:resize-none { + resize: none; + } + + .lg\:resize-y { + resize: vertical; + } + + .lg\:resize-x { + resize: horizontal; + } + + .lg\:resize { + resize: both; + } + + .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-opacity-0 { + --text-opacity: 0; + } + + .lg\:text-opacity-25 { + --text-opacity: 0.25; + } + + .lg\:text-opacity-50 { + --text-opacity: 0.5; + } + + .lg\:text-opacity-75 { + --text-opacity: 0.75; + } + + .lg\:text-opacity-100 { + --text-opacity: 1; + } + + .lg\:hover\:text-opacity-0:hover { + --text-opacity: 0; + } + + .lg\:hover\:text-opacity-25:hover { + --text-opacity: 0.25; + } + + .lg\:hover\:text-opacity-50:hover { + --text-opacity: 0.5; + } + + .lg\:hover\:text-opacity-75:hover { + --text-opacity: 0.75; + } + + .lg\:hover\:text-opacity-100:hover { + --text-opacity: 1; + } + + .lg\:focus\:text-opacity-0:focus { + --text-opacity: 0; + } + + .lg\:focus\:text-opacity-25:focus { + --text-opacity: 0.25; + } + + .lg\:focus\:text-opacity-50:focus { + --text-opacity: 0.5; + } + + .lg\:focus\:text-opacity-75:focus { + --text-opacity: 0.75; + } + + .lg\:focus\:text-opacity-100:focus { + --text-opacity: 1; + } + + .lg\:italic { + font-style: italic; + } + + .lg\:not-italic { + font-style: normal; + } + + .lg\:uppercase { + text-transform: uppercase; + } + + .lg\:lowercase { + text-transform: lowercase; + } + + .lg\:capitalize { + text-transform: capitalize; + } + + .lg\:normal-case { + text-transform: none; + } + + .lg\:underline { + text-decoration: underline; + } + + .lg\:line-through { + text-decoration: line-through; + } + + .lg\:no-underline { + text-decoration: none; + } + + .lg\:hover\:underline:hover { + text-decoration: underline; + } + + .lg\:hover\:line-through:hover { + text-decoration: line-through; + } + + .lg\:hover\:no-underline:hover { + text-decoration: none; + } + + .lg\:focus\:underline:focus { + text-decoration: underline; + } + + .lg\:focus\:line-through:focus { + text-decoration: line-through; + } + + .lg\:focus\:no-underline:focus { + text-decoration: none; + } + + .lg\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .lg\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .lg\:tracking-tighter { + letter-spacing: -0.05em; + } + + .lg\:tracking-tight { + letter-spacing: -0.025em; + } + + .lg\:tracking-normal { + letter-spacing: 0; + } + + .lg\:tracking-wide { + letter-spacing: 0.025em; + } + + .lg\:tracking-wider { + letter-spacing: 0.05em; + } + + .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-no-wrap { + white-space: nowrap; + } + + .lg\:whitespace-pre { + white-space: pre; + } + + .lg\:whitespace-pre-line { + white-space: pre-line; + } + + .lg\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .lg\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .lg\:break-words { + overflow-wrap: break-word; + } + + .lg\:break-all { + word-break: break-all; + } + + .lg\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .lg\:w-0 { + width: 0; + } + + .lg\:w-1 { + width: 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-8 { + width: 2rem; + } + + .lg\:w-10 { + width: 2.5rem; + } + + .lg\:w-12 { + width: 3rem; + } + + .lg\:w-16 { + width: 4rem; + } + + .lg\:w-20 { + width: 5rem; + } + + .lg\:w-24 { + width: 6rem; + } + + .lg\:w-32 { + width: 8rem; + } + + .lg\:w-40 { + width: 10rem; + } + + .lg\:w-48 { + width: 12rem; + } + + .lg\:w-56 { + width: 14rem; + } + + .lg\:w-64 { + width: 16rem; + } + + .lg\:w-auto { + width: auto; + } + + .lg\:w-px { + width: 1px; + } + + .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\:gap-0 { + grid-gap: 0; + gap: 0; + } + + .lg\:gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; + } + + .lg\:gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; + } + + .lg\:gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; + } + + .lg\:gap-4 { + grid-gap: 1rem; + gap: 1rem; + } + + .lg\:gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; + } + + .lg\:gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; + } + + .lg\:gap-8 { + grid-gap: 2rem; + gap: 2rem; + } + + .lg\:gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; + } + + .lg\:gap-12 { + grid-gap: 3rem; + gap: 3rem; + } + + .lg\:gap-16 { + grid-gap: 4rem; + gap: 4rem; + } + + .lg\:gap-20 { + grid-gap: 5rem; + gap: 5rem; + } + + .lg\:gap-24 { + grid-gap: 6rem; + gap: 6rem; + } + + .lg\:gap-32 { + grid-gap: 8rem; + gap: 8rem; + } + + .lg\:gap-40 { + grid-gap: 10rem; + gap: 10rem; + } + + .lg\:gap-48 { + grid-gap: 12rem; + gap: 12rem; + } + + .lg\:gap-56 { + grid-gap: 14rem; + gap: 14rem; + } + + .lg\:gap-64 { + grid-gap: 16rem; + gap: 16rem; + } + + .lg\:gap-px { + grid-gap: 1px; + gap: 1px; + } + + .lg\:col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; + } + + .lg\:col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .lg\:col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .lg\:col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .lg\:col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .lg\:col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .lg\:col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .lg\:col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .lg\:col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .lg\:col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .lg\:col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .lg\:col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .lg\:col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .lg\:col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .lg\:col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .lg\:col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .lg\:col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .lg\:col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .lg\:col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; + } + + .lg\:row-gap-0 { + grid-row-gap: 0; + row-gap: 0; + } + + .lg\:row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; + } + + .lg\:row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; + } + + .lg\:row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; + } + + .lg\:row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; + } + + .lg\:row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; + } + + .lg\:row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; + } + + .lg\:row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; + } + + .lg\:row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; + } + + .lg\:row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; + } + + .lg\:row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; + } + + .lg\:row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; + } + + .lg\:row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; + } + + .lg\:row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; + } + + .lg\:row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; + } + + .lg\:row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; + } + + .lg\:row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; + } + + .lg\:row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; + } + + .lg\:row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; + } + + .lg\:grid-flow-row { + grid-auto-flow: row; + } + + .lg\:grid-flow-col { + grid-auto-flow: column; + } + + .lg\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .lg\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .lg\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .lg\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .lg\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .lg\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .lg\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .lg\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .lg\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .lg\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .lg\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .lg\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .lg\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .lg\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .lg\:grid-cols-none { + grid-template-columns: none; + } + + .lg\:col-auto { + grid-column: auto; + } + + .lg\:col-span-1 { + grid-column: span 1 / span 1; + } + + .lg\:col-span-2 { + grid-column: span 2 / span 2; + } + + .lg\:col-span-3 { + grid-column: span 3 / span 3; + } + + .lg\:col-span-4 { + grid-column: span 4 / span 4; + } + + .lg\:col-span-5 { + grid-column: span 5 / span 5; + } + + .lg\:col-span-6 { + grid-column: span 6 / span 6; + } + + .lg\:col-span-7 { + grid-column: span 7 / span 7; + } + + .lg\:col-span-8 { + grid-column: span 8 / span 8; + } + + .lg\:col-span-9 { + grid-column: span 9 / span 9; + } + + .lg\:col-span-10 { + grid-column: span 10 / span 10; + } + + .lg\:col-span-11 { + grid-column: span 11 / span 11; + } + + .lg\:col-span-12 { + grid-column: span 12 / span 12; + } + + .lg\:col-start-1 { + grid-column-start: 1; + } + + .lg\:col-start-2 { + grid-column-start: 2; + } + + .lg\:col-start-3 { + grid-column-start: 3; + } + + .lg\:col-start-4 { + grid-column-start: 4; + } + + .lg\:col-start-5 { + grid-column-start: 5; + } + + .lg\:col-start-6 { + grid-column-start: 6; + } + + .lg\:col-start-7 { + grid-column-start: 7; + } + + .lg\:col-start-8 { + grid-column-start: 8; + } + + .lg\:col-start-9 { + grid-column-start: 9; + } + + .lg\:col-start-10 { + grid-column-start: 10; + } + + .lg\:col-start-11 { + grid-column-start: 11; + } + + .lg\:col-start-12 { + grid-column-start: 12; + } + + .lg\:col-start-13 { + grid-column-start: 13; + } + + .lg\:col-start-auto { + grid-column-start: auto; + } + + .lg\:col-end-1 { + grid-column-end: 1; + } + + .lg\:col-end-2 { + grid-column-end: 2; + } + + .lg\:col-end-3 { + grid-column-end: 3; + } + + .lg\:col-end-4 { + grid-column-end: 4; + } + + .lg\:col-end-5 { + grid-column-end: 5; + } + + .lg\:col-end-6 { + grid-column-end: 6; + } + + .lg\:col-end-7 { + grid-column-end: 7; + } + + .lg\:col-end-8 { + grid-column-end: 8; + } + + .lg\:col-end-9 { + grid-column-end: 9; + } + + .lg\:col-end-10 { + grid-column-end: 10; + } + + .lg\:col-end-11 { + grid-column-end: 11; + } + + .lg\:col-end-12 { + grid-column-end: 12; + } + + .lg\:col-end-13 { + grid-column-end: 13; + } + + .lg\:col-end-auto { + grid-column-end: auto; + } + + .lg\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .lg\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .lg\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .lg\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .lg\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .lg\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .lg\:grid-rows-none { + grid-template-rows: none; + } + + .lg\:row-auto { + grid-row: auto; + } + + .lg\:row-span-1 { + grid-row: span 1 / span 1; + } + + .lg\:row-span-2 { + grid-row: span 2 / span 2; + } + + .lg\:row-span-3 { + grid-row: span 3 / span 3; + } + + .lg\:row-span-4 { + grid-row: span 4 / span 4; + } + + .lg\:row-span-5 { + grid-row: span 5 / span 5; + } + + .lg\:row-span-6 { + grid-row: span 6 / span 6; + } + + .lg\:row-start-1 { + grid-row-start: 1; + } + + .lg\:row-start-2 { + grid-row-start: 2; + } + + .lg\:row-start-3 { + grid-row-start: 3; + } + + .lg\:row-start-4 { + grid-row-start: 4; + } + + .lg\:row-start-5 { + grid-row-start: 5; + } + + .lg\:row-start-6 { + grid-row-start: 6; + } + + .lg\:row-start-7 { + grid-row-start: 7; + } + + .lg\:row-start-auto { + grid-row-start: auto; + } + + .lg\:row-end-1 { + grid-row-end: 1; + } + + .lg\:row-end-2 { + grid-row-end: 2; + } + + .lg\:row-end-3 { + grid-row-end: 3; + } + + .lg\:row-end-4 { + grid-row-end: 4; + } + + .lg\:row-end-5 { + grid-row-end: 5; + } + + .lg\:row-end-6 { + grid-row-end: 6; + } + + .lg\:row-end-7 { + grid-row-end: 7; + } + + .lg\:row-end-auto { + grid-row-end: auto; + } + + .lg\:transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); + } + + .lg\:transform-none { + transform: none; + } + + .lg\:origin-center { + transform-origin: center; + } + + .lg\:origin-top { + transform-origin: top; + } + + .lg\:origin-top-right { + transform-origin: top right; + } + + .lg\:origin-right { + transform-origin: right; + } + + .lg\:origin-bottom-right { + transform-origin: bottom right; + } + + .lg\:origin-bottom { + transform-origin: bottom; + } + + .lg\:origin-bottom-left { + transform-origin: bottom left; + } + + .lg\:origin-left { + transform-origin: left; + } + + .lg\:origin-top-left { + transform-origin: top left; + } + + .lg\:scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .lg\:scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .lg\:scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .lg\:scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .lg\:scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .lg\:scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .lg\:scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .lg\:scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .lg\:scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .lg\:scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .lg\:scale-x-0 { + --transform-scale-x: 0; + } + + .lg\:scale-x-50 { + --transform-scale-x: .5; + } + + .lg\:scale-x-75 { + --transform-scale-x: .75; + } + + .lg\:scale-x-90 { + --transform-scale-x: .9; + } + + .lg\:scale-x-95 { + --transform-scale-x: .95; + } + + .lg\:scale-x-100 { + --transform-scale-x: 1; + } + + .lg\:scale-x-105 { + --transform-scale-x: 1.05; + } + + .lg\:scale-x-110 { + --transform-scale-x: 1.1; + } + + .lg\:scale-x-125 { + --transform-scale-x: 1.25; + } + + .lg\:scale-x-150 { + --transform-scale-x: 1.5; + } + + .lg\:scale-y-0 { + --transform-scale-y: 0; + } + + .lg\:scale-y-50 { + --transform-scale-y: .5; + } + + .lg\:scale-y-75 { + --transform-scale-y: .75; + } + + .lg\:scale-y-90 { + --transform-scale-y: .9; + } + + .lg\:scale-y-95 { + --transform-scale-y: .95; + } + + .lg\:scale-y-100 { + --transform-scale-y: 1; + } + + .lg\:scale-y-105 { + --transform-scale-y: 1.05; + } + + .lg\:scale-y-110 { + --transform-scale-y: 1.1; + } + + .lg\:scale-y-125 { + --transform-scale-y: 1.25; + } + + .lg\:scale-y-150 { + --transform-scale-y: 1.5; + } + + .lg\:hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .lg\:hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .lg\:hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .lg\:hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .lg\:hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .lg\:hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .lg\:hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .lg\:hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .lg\:hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .lg\:hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .lg\:hover\:scale-x-0:hover { + --transform-scale-x: 0; + } + + .lg\:hover\:scale-x-50:hover { + --transform-scale-x: .5; + } + + .lg\:hover\:scale-x-75:hover { + --transform-scale-x: .75; + } + + .lg\:hover\:scale-x-90:hover { + --transform-scale-x: .9; + } + + .lg\:hover\:scale-x-95:hover { + --transform-scale-x: .95; + } + + .lg\:hover\:scale-x-100:hover { + --transform-scale-x: 1; + } + + .lg\:hover\:scale-x-105:hover { + --transform-scale-x: 1.05; + } + + .lg\:hover\:scale-x-110:hover { + --transform-scale-x: 1.1; + } + + .lg\:hover\:scale-x-125:hover { + --transform-scale-x: 1.25; + } + + .lg\:hover\:scale-x-150:hover { + --transform-scale-x: 1.5; + } + + .lg\:hover\:scale-y-0:hover { + --transform-scale-y: 0; + } + + .lg\:hover\:scale-y-50:hover { + --transform-scale-y: .5; + } + + .lg\:hover\:scale-y-75:hover { + --transform-scale-y: .75; + } + + .lg\:hover\:scale-y-90:hover { + --transform-scale-y: .9; + } + + .lg\:hover\:scale-y-95:hover { + --transform-scale-y: .95; + } + + .lg\:hover\:scale-y-100:hover { + --transform-scale-y: 1; + } + + .lg\:hover\:scale-y-105:hover { + --transform-scale-y: 1.05; + } + + .lg\:hover\:scale-y-110:hover { + --transform-scale-y: 1.1; + } + + .lg\:hover\:scale-y-125:hover { + --transform-scale-y: 1.25; + } + + .lg\:hover\:scale-y-150:hover { + --transform-scale-y: 1.5; + } + + .lg\:focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .lg\:focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .lg\:focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .lg\:focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .lg\:focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .lg\:focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .lg\:focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .lg\:focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .lg\:focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .lg\:focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .lg\:focus\:scale-x-0:focus { + --transform-scale-x: 0; + } + + .lg\:focus\:scale-x-50:focus { + --transform-scale-x: .5; + } + + .lg\:focus\:scale-x-75:focus { + --transform-scale-x: .75; + } + + .lg\:focus\:scale-x-90:focus { + --transform-scale-x: .9; + } + + .lg\:focus\:scale-x-95:focus { + --transform-scale-x: .95; + } + + .lg\:focus\:scale-x-100:focus { + --transform-scale-x: 1; + } + + .lg\:focus\:scale-x-105:focus { + --transform-scale-x: 1.05; + } + + .lg\:focus\:scale-x-110:focus { + --transform-scale-x: 1.1; + } + + .lg\:focus\:scale-x-125:focus { + --transform-scale-x: 1.25; + } + + .lg\:focus\:scale-x-150:focus { + --transform-scale-x: 1.5; + } + + .lg\:focus\:scale-y-0:focus { + --transform-scale-y: 0; + } + + .lg\:focus\:scale-y-50:focus { + --transform-scale-y: .5; + } + + .lg\:focus\:scale-y-75:focus { + --transform-scale-y: .75; + } + + .lg\:focus\:scale-y-90:focus { + --transform-scale-y: .9; + } + + .lg\:focus\:scale-y-95:focus { + --transform-scale-y: .95; + } + + .lg\:focus\:scale-y-100:focus { + --transform-scale-y: 1; + } + + .lg\:focus\:scale-y-105:focus { + --transform-scale-y: 1.05; + } + + .lg\:focus\:scale-y-110:focus { + --transform-scale-y: 1.1; + } + + .lg\:focus\:scale-y-125:focus { + --transform-scale-y: 1.25; + } + + .lg\:focus\:scale-y-150:focus { + --transform-scale-y: 1.5; + } + + .lg\:rotate-0 { + --transform-rotate: 0; + } + + .lg\:rotate-45 { + --transform-rotate: 45deg; + } + + .lg\:rotate-90 { + --transform-rotate: 90deg; + } + + .lg\:rotate-180 { + --transform-rotate: 180deg; + } + + .lg\:-rotate-180 { + --transform-rotate: -180deg; + } + + .lg\:-rotate-90 { + --transform-rotate: -90deg; + } + + .lg\:-rotate-45 { + --transform-rotate: -45deg; + } + + .lg\:hover\:rotate-0:hover { + --transform-rotate: 0; + } + + .lg\:hover\:rotate-45:hover { + --transform-rotate: 45deg; + } + + .lg\:hover\:rotate-90:hover { + --transform-rotate: 90deg; + } + + .lg\:hover\:rotate-180:hover { + --transform-rotate: 180deg; + } + + .lg\:hover\:-rotate-180:hover { + --transform-rotate: -180deg; + } + + .lg\:hover\:-rotate-90:hover { + --transform-rotate: -90deg; + } + + .lg\:hover\:-rotate-45:hover { + --transform-rotate: -45deg; + } + + .lg\:focus\:rotate-0:focus { + --transform-rotate: 0; + } + + .lg\:focus\:rotate-45:focus { + --transform-rotate: 45deg; + } + + .lg\:focus\:rotate-90:focus { + --transform-rotate: 90deg; + } + + .lg\:focus\:rotate-180:focus { + --transform-rotate: 180deg; + } + + .lg\:focus\:-rotate-180:focus { + --transform-rotate: -180deg; + } + + .lg\:focus\:-rotate-90:focus { + --transform-rotate: -90deg; + } + + .lg\:focus\:-rotate-45:focus { + --transform-rotate: -45deg; + } + + .lg\:translate-x-0 { + --transform-translate-x: 0; + } + + .lg\:translate-x-1 { + --transform-translate-x: 0.25rem; + } + + .lg\:translate-x-2 { + --transform-translate-x: 0.5rem; + } + + .lg\:translate-x-3 { + --transform-translate-x: 0.75rem; + } + + .lg\:translate-x-4 { + --transform-translate-x: 1rem; + } + + .lg\:translate-x-5 { + --transform-translate-x: 1.25rem; + } + + .lg\:translate-x-6 { + --transform-translate-x: 1.5rem; + } + + .lg\:translate-x-8 { + --transform-translate-x: 2rem; + } + + .lg\:translate-x-10 { + --transform-translate-x: 2.5rem; + } + + .lg\:translate-x-12 { + --transform-translate-x: 3rem; + } + + .lg\:translate-x-16 { + --transform-translate-x: 4rem; + } + + .lg\:translate-x-20 { + --transform-translate-x: 5rem; + } + + .lg\:translate-x-24 { + --transform-translate-x: 6rem; + } + + .lg\:translate-x-32 { + --transform-translate-x: 8rem; + } + + .lg\:translate-x-40 { + --transform-translate-x: 10rem; + } + + .lg\:translate-x-48 { + --transform-translate-x: 12rem; + } + + .lg\:translate-x-56 { + --transform-translate-x: 14rem; + } + + .lg\:translate-x-64 { + --transform-translate-x: 16rem; + } + + .lg\:translate-x-px { + --transform-translate-x: 1px; + } + + .lg\:-translate-x-1 { + --transform-translate-x: -0.25rem; + } + + .lg\:-translate-x-2 { + --transform-translate-x: -0.5rem; + } + + .lg\:-translate-x-3 { + --transform-translate-x: -0.75rem; + } + + .lg\:-translate-x-4 { + --transform-translate-x: -1rem; + } + + .lg\:-translate-x-5 { + --transform-translate-x: -1.25rem; + } + + .lg\:-translate-x-6 { + --transform-translate-x: -1.5rem; + } + + .lg\:-translate-x-8 { + --transform-translate-x: -2rem; + } + + .lg\:-translate-x-10 { + --transform-translate-x: -2.5rem; + } + + .lg\:-translate-x-12 { + --transform-translate-x: -3rem; + } + + .lg\:-translate-x-16 { + --transform-translate-x: -4rem; + } + + .lg\:-translate-x-20 { + --transform-translate-x: -5rem; + } + + .lg\:-translate-x-24 { + --transform-translate-x: -6rem; + } + + .lg\:-translate-x-32 { + --transform-translate-x: -8rem; + } + + .lg\:-translate-x-40 { + --transform-translate-x: -10rem; + } + + .lg\:-translate-x-48 { + --transform-translate-x: -12rem; + } + + .lg\:-translate-x-56 { + --transform-translate-x: -14rem; + } + + .lg\:-translate-x-64 { + --transform-translate-x: -16rem; + } + + .lg\:-translate-x-px { + --transform-translate-x: -1px; + } + + .lg\:-translate-x-full { + --transform-translate-x: -100%; + } + + .lg\:-translate-x-1\/2 { + --transform-translate-x: -50%; + } + + .lg\:translate-x-1\/2 { + --transform-translate-x: 50%; + } + + .lg\:translate-x-full { + --transform-translate-x: 100%; + } + + .lg\:translate-y-0 { + --transform-translate-y: 0; + } + + .lg\:translate-y-1 { + --transform-translate-y: 0.25rem; + } + + .lg\:translate-y-2 { + --transform-translate-y: 0.5rem; + } + + .lg\:translate-y-3 { + --transform-translate-y: 0.75rem; + } + + .lg\:translate-y-4 { + --transform-translate-y: 1rem; + } + + .lg\:translate-y-5 { + --transform-translate-y: 1.25rem; + } + + .lg\:translate-y-6 { + --transform-translate-y: 1.5rem; + } + + .lg\:translate-y-8 { + --transform-translate-y: 2rem; + } + + .lg\:translate-y-10 { + --transform-translate-y: 2.5rem; + } + + .lg\:translate-y-12 { + --transform-translate-y: 3rem; + } + + .lg\:translate-y-16 { + --transform-translate-y: 4rem; + } + + .lg\:translate-y-20 { + --transform-translate-y: 5rem; + } + + .lg\:translate-y-24 { + --transform-translate-y: 6rem; + } + + .lg\:translate-y-32 { + --transform-translate-y: 8rem; + } + + .lg\:translate-y-40 { + --transform-translate-y: 10rem; + } + + .lg\:translate-y-48 { + --transform-translate-y: 12rem; + } + + .lg\:translate-y-56 { + --transform-translate-y: 14rem; + } + + .lg\:translate-y-64 { + --transform-translate-y: 16rem; + } + + .lg\:translate-y-px { + --transform-translate-y: 1px; + } + + .lg\:-translate-y-1 { + --transform-translate-y: -0.25rem; + } + + .lg\:-translate-y-2 { + --transform-translate-y: -0.5rem; + } + + .lg\:-translate-y-3 { + --transform-translate-y: -0.75rem; + } + + .lg\:-translate-y-4 { + --transform-translate-y: -1rem; + } + + .lg\:-translate-y-5 { + --transform-translate-y: -1.25rem; + } + + .lg\:-translate-y-6 { + --transform-translate-y: -1.5rem; + } + + .lg\:-translate-y-8 { + --transform-translate-y: -2rem; + } + + .lg\:-translate-y-10 { + --transform-translate-y: -2.5rem; + } + + .lg\:-translate-y-12 { + --transform-translate-y: -3rem; + } + + .lg\:-translate-y-16 { + --transform-translate-y: -4rem; + } + + .lg\:-translate-y-20 { + --transform-translate-y: -5rem; + } + + .lg\:-translate-y-24 { + --transform-translate-y: -6rem; + } + + .lg\:-translate-y-32 { + --transform-translate-y: -8rem; + } + + .lg\:-translate-y-40 { + --transform-translate-y: -10rem; + } + + .lg\:-translate-y-48 { + --transform-translate-y: -12rem; + } + + .lg\:-translate-y-56 { + --transform-translate-y: -14rem; + } + + .lg\:-translate-y-64 { + --transform-translate-y: -16rem; + } + + .lg\:-translate-y-px { + --transform-translate-y: -1px; + } + + .lg\:-translate-y-full { + --transform-translate-y: -100%; + } + + .lg\:-translate-y-1\/2 { + --transform-translate-y: -50%; + } + + .lg\:translate-y-1\/2 { + --transform-translate-y: 50%; + } + + .lg\:translate-y-full { + --transform-translate-y: 100%; + } + + .lg\:hover\:translate-x-0:hover { + --transform-translate-x: 0; + } + + .lg\:hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; + } + + .lg\:hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; + } + + .lg\:hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; + } + + .lg\:hover\:translate-x-4:hover { + --transform-translate-x: 1rem; + } + + .lg\:hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; + } + + .lg\:hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; + } + + .lg\:hover\:translate-x-8:hover { + --transform-translate-x: 2rem; + } + + .lg\:hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; + } + + .lg\:hover\:translate-x-12:hover { + --transform-translate-x: 3rem; + } + + .lg\:hover\:translate-x-16:hover { + --transform-translate-x: 4rem; + } + + .lg\:hover\:translate-x-20:hover { + --transform-translate-x: 5rem; + } + + .lg\:hover\:translate-x-24:hover { + --transform-translate-x: 6rem; + } + + .lg\:hover\:translate-x-32:hover { + --transform-translate-x: 8rem; + } + + .lg\:hover\:translate-x-40:hover { + --transform-translate-x: 10rem; + } + + .lg\:hover\:translate-x-48:hover { + --transform-translate-x: 12rem; + } + + .lg\:hover\:translate-x-56:hover { + --transform-translate-x: 14rem; + } + + .lg\:hover\:translate-x-64:hover { + --transform-translate-x: 16rem; + } + + .lg\:hover\:translate-x-px:hover { + --transform-translate-x: 1px; + } + + .lg\:hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; + } + + .lg\:hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; + } + + .lg\:hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; + } + + .lg\:hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; + } + + .lg\:hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; + } + + .lg\:hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; + } + + .lg\:hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; + } + + .lg\:hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; + } + + .lg\:hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; + } + + .lg\:hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; + } + + .lg\:hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; + } + + .lg\:hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; + } + + .lg\:hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; + } + + .lg\:hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; + } + + .lg\:hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; + } + + .lg\:hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; + } + + .lg\:hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; + } + + .lg\:hover\:-translate-x-px:hover { + --transform-translate-x: -1px; + } + + .lg\:hover\:-translate-x-full:hover { + --transform-translate-x: -100%; + } + + .lg\:hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; + } + + .lg\:hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; + } + + .lg\:hover\:translate-x-full:hover { + --transform-translate-x: 100%; + } + + .lg\:hover\:translate-y-0:hover { + --transform-translate-y: 0; + } + + .lg\:hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; + } + + .lg\:hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; + } + + .lg\:hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; + } + + .lg\:hover\:translate-y-4:hover { + --transform-translate-y: 1rem; + } + + .lg\:hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; + } + + .lg\:hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; + } + + .lg\:hover\:translate-y-8:hover { + --transform-translate-y: 2rem; + } + + .lg\:hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; + } + + .lg\:hover\:translate-y-12:hover { + --transform-translate-y: 3rem; + } + + .lg\:hover\:translate-y-16:hover { + --transform-translate-y: 4rem; + } + + .lg\:hover\:translate-y-20:hover { + --transform-translate-y: 5rem; + } + + .lg\:hover\:translate-y-24:hover { + --transform-translate-y: 6rem; + } + + .lg\:hover\:translate-y-32:hover { + --transform-translate-y: 8rem; + } + + .lg\:hover\:translate-y-40:hover { + --transform-translate-y: 10rem; + } + + .lg\:hover\:translate-y-48:hover { + --transform-translate-y: 12rem; + } + + .lg\:hover\:translate-y-56:hover { + --transform-translate-y: 14rem; + } + + .lg\:hover\:translate-y-64:hover { + --transform-translate-y: 16rem; + } + + .lg\:hover\:translate-y-px:hover { + --transform-translate-y: 1px; + } + + .lg\:hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; + } + + .lg\:hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; + } + + .lg\:hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; + } + + .lg\:hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; + } + + .lg\:hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; + } + + .lg\:hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; + } + + .lg\:hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; + } + + .lg\:hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; + } + + .lg\:hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; + } + + .lg\:hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; + } + + .lg\:hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; + } + + .lg\:hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; + } + + .lg\:hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; + } + + .lg\:hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; + } + + .lg\:hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; + } + + .lg\:hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; + } + + .lg\:hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; + } + + .lg\:hover\:-translate-y-px:hover { + --transform-translate-y: -1px; + } + + .lg\:hover\:-translate-y-full:hover { + --transform-translate-y: -100%; + } + + .lg\:hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; + } + + .lg\:hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; + } + + .lg\:hover\:translate-y-full:hover { + --transform-translate-y: 100%; + } + + .lg\:focus\:translate-x-0:focus { + --transform-translate-x: 0; + } + + .lg\:focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; + } + + .lg\:focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; + } + + .lg\:focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; + } + + .lg\:focus\:translate-x-4:focus { + --transform-translate-x: 1rem; + } + + .lg\:focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; + } + + .lg\:focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; + } + + .lg\:focus\:translate-x-8:focus { + --transform-translate-x: 2rem; + } + + .lg\:focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; + } + + .lg\:focus\:translate-x-12:focus { + --transform-translate-x: 3rem; + } + + .lg\:focus\:translate-x-16:focus { + --transform-translate-x: 4rem; + } + + .lg\:focus\:translate-x-20:focus { + --transform-translate-x: 5rem; + } + + .lg\:focus\:translate-x-24:focus { + --transform-translate-x: 6rem; + } + + .lg\:focus\:translate-x-32:focus { + --transform-translate-x: 8rem; + } + + .lg\:focus\:translate-x-40:focus { + --transform-translate-x: 10rem; + } + + .lg\:focus\:translate-x-48:focus { + --transform-translate-x: 12rem; + } + + .lg\:focus\:translate-x-56:focus { + --transform-translate-x: 14rem; + } + + .lg\:focus\:translate-x-64:focus { + --transform-translate-x: 16rem; + } + + .lg\:focus\:translate-x-px:focus { + --transform-translate-x: 1px; + } + + .lg\:focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; + } + + .lg\:focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; + } + + .lg\:focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; + } + + .lg\:focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; + } + + .lg\:focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; + } + + .lg\:focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; + } + + .lg\:focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; + } + + .lg\:focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; + } + + .lg\:focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; + } + + .lg\:focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; + } + + .lg\:focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; + } + + .lg\:focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; + } + + .lg\:focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; + } + + .lg\:focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; + } + + .lg\:focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; + } + + .lg\:focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; + } + + .lg\:focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; + } + + .lg\:focus\:-translate-x-px:focus { + --transform-translate-x: -1px; + } + + .lg\:focus\:-translate-x-full:focus { + --transform-translate-x: -100%; + } + + .lg\:focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; + } + + .lg\:focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; + } + + .lg\:focus\:translate-x-full:focus { + --transform-translate-x: 100%; + } + + .lg\:focus\:translate-y-0:focus { + --transform-translate-y: 0; + } + + .lg\:focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; + } + + .lg\:focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; + } + + .lg\:focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; + } + + .lg\:focus\:translate-y-4:focus { + --transform-translate-y: 1rem; + } + + .lg\:focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; + } + + .lg\:focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; + } + + .lg\:focus\:translate-y-8:focus { + --transform-translate-y: 2rem; + } + + .lg\:focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; + } + + .lg\:focus\:translate-y-12:focus { + --transform-translate-y: 3rem; + } + + .lg\:focus\:translate-y-16:focus { + --transform-translate-y: 4rem; + } + + .lg\:focus\:translate-y-20:focus { + --transform-translate-y: 5rem; + } + + .lg\:focus\:translate-y-24:focus { + --transform-translate-y: 6rem; + } + + .lg\:focus\:translate-y-32:focus { + --transform-translate-y: 8rem; + } + + .lg\:focus\:translate-y-40:focus { + --transform-translate-y: 10rem; + } + + .lg\:focus\:translate-y-48:focus { + --transform-translate-y: 12rem; + } + + .lg\:focus\:translate-y-56:focus { + --transform-translate-y: 14rem; + } + + .lg\:focus\:translate-y-64:focus { + --transform-translate-y: 16rem; + } + + .lg\:focus\:translate-y-px:focus { + --transform-translate-y: 1px; + } + + .lg\:focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; + } + + .lg\:focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; + } + + .lg\:focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; + } + + .lg\:focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; + } + + .lg\:focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; + } + + .lg\:focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; + } + + .lg\:focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; + } + + .lg\:focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; + } + + .lg\:focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; + } + + .lg\:focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; + } + + .lg\:focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; + } + + .lg\:focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; + } + + .lg\:focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; + } + + .lg\:focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; + } + + .lg\:focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; + } + + .lg\:focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; + } + + .lg\:focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; + } + + .lg\:focus\:-translate-y-px:focus { + --transform-translate-y: -1px; + } + + .lg\:focus\:-translate-y-full:focus { + --transform-translate-y: -100%; + } + + .lg\:focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; + } + + .lg\:focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; + } + + .lg\:focus\:translate-y-full:focus { + --transform-translate-y: 100%; + } + + .lg\:skew-x-0 { + --transform-skew-x: 0; + } + + .lg\:skew-x-3 { + --transform-skew-x: 3deg; + } + + .lg\:skew-x-6 { + --transform-skew-x: 6deg; + } + + .lg\:skew-x-12 { + --transform-skew-x: 12deg; + } + + .lg\:-skew-x-12 { + --transform-skew-x: -12deg; + } + + .lg\:-skew-x-6 { + --transform-skew-x: -6deg; + } + + .lg\:-skew-x-3 { + --transform-skew-x: -3deg; + } + + .lg\:skew-y-0 { + --transform-skew-y: 0; + } + + .lg\:skew-y-3 { + --transform-skew-y: 3deg; + } + + .lg\:skew-y-6 { + --transform-skew-y: 6deg; + } + + .lg\:skew-y-12 { + --transform-skew-y: 12deg; + } + + .lg\:-skew-y-12 { + --transform-skew-y: -12deg; + } + + .lg\:-skew-y-6 { + --transform-skew-y: -6deg; + } + + .lg\:-skew-y-3 { + --transform-skew-y: -3deg; + } + + .lg\:hover\:skew-x-0:hover { + --transform-skew-x: 0; + } + + .lg\:hover\:skew-x-3:hover { + --transform-skew-x: 3deg; + } + + .lg\:hover\:skew-x-6:hover { + --transform-skew-x: 6deg; + } + + .lg\:hover\:skew-x-12:hover { + --transform-skew-x: 12deg; + } + + .lg\:hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; + } + + .lg\:hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; + } + + .lg\:hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; + } + + .lg\:hover\:skew-y-0:hover { + --transform-skew-y: 0; + } + + .lg\:hover\:skew-y-3:hover { + --transform-skew-y: 3deg; + } + + .lg\:hover\:skew-y-6:hover { + --transform-skew-y: 6deg; + } + + .lg\:hover\:skew-y-12:hover { + --transform-skew-y: 12deg; + } + + .lg\:hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; + } + + .lg\:hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; + } + + .lg\:hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; + } + + .lg\:focus\:skew-x-0:focus { + --transform-skew-x: 0; + } + + .lg\:focus\:skew-x-3:focus { + --transform-skew-x: 3deg; + } + + .lg\:focus\:skew-x-6:focus { + --transform-skew-x: 6deg; + } + + .lg\:focus\:skew-x-12:focus { + --transform-skew-x: 12deg; + } + + .lg\:focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; + } + + .lg\:focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; + } + + .lg\:focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; + } + + .lg\:focus\:skew-y-0:focus { + --transform-skew-y: 0; + } + + .lg\:focus\:skew-y-3:focus { + --transform-skew-y: 3deg; + } + + .lg\:focus\:skew-y-6:focus { + --transform-skew-y: 6deg; + } + + .lg\:focus\:skew-y-12:focus { + --transform-skew-y: 12deg; + } + + .lg\:focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; + } + + .lg\:focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; + } + + .lg\:focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; + } + + .lg\:transition-none { + transition-property: none; + } + + .lg\:transition-all { + transition-property: all; + } + + .lg\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + } + + .lg\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + } + + .lg\:transition-opacity { + transition-property: opacity; + } + + .lg\:transition-shadow { + transition-property: box-shadow; + } + + .lg\:transition-transform { + transition-property: transform; + } + + .lg\:ease-linear { + transition-timing-function: linear; + } + + .lg\:ease-in { + transition-timing-function: cubic-bezier(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; + } +} + +@media (min-width: 1280px) { + .xl\:space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); + } + + .xl\:space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); + } + + .xl\:space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); + } + + .xl\:space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); + } + + .xl\:space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); + } + + .xl\:space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); + } + + .xl\:space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); + } + + .xl\:space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); + } + + .xl\:space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); + } + + .xl\:space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); + } + + .xl\:space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); + } + + .xl\:space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); + } + + .xl\:space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); + } + + .xl\:space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); + } + + .xl\:space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); + } + + .xl\:space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); + } + + .xl\:space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); + } + + .xl\:space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); + } + + .xl\:space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); + } + + .xl\:space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); + } + + .xl\:-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); + } + + .xl\:-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); + } + + .xl\:-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); + } + + .xl\:-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); + } + + .xl\:-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); + } + + .xl\:-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); + } + + .xl\:-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); + } + + .xl\:-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); + } + + .xl\:-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); + } + + .xl\:-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); + } + + .xl\:-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); + } + + .xl\:-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); + } + + .xl\:-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); + } + + .xl\:-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); + } + + .xl\:-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); + } + + .xl\:-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); + } + + .xl\:-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); + } + + .xl\:-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; + } + + .xl\:space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; + } + + .xl\:divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); + } + + .xl\:divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); + } + + .xl\:divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); + } + + .xl\:divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); + } + + .xl\:divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); + } + + .xl\:divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; + } + + .xl\:divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; + } + + .xl\:divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; + } + + .xl\:divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; + } + + .xl\:divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; + } + + .xl\:divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; + } + + .xl\:divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + } + + .xl\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .xl\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .xl\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .xl\:bg-fixed { + background-attachment: fixed; + } + + .xl\:bg-local { + background-attachment: local; + } + + .xl\:bg-scroll { + background-attachment: scroll; + } + + .xl\:bg-opacity-0 { + --bg-opacity: 0; + } + + .xl\:bg-opacity-25 { + --bg-opacity: 0.25; + } + + .xl\:bg-opacity-50 { + --bg-opacity: 0.5; + } + + .xl\:bg-opacity-75 { + --bg-opacity: 0.75; + } + + .xl\:bg-opacity-100 { + --bg-opacity: 1; + } + + .xl\:hover\:bg-opacity-0:hover { + --bg-opacity: 0; + } + + .xl\:hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; + } + + .xl\:hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; + } + + .xl\:hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; + } + + .xl\:hover\:bg-opacity-100:hover { + --bg-opacity: 1; + } + + .xl\:focus\:bg-opacity-0:focus { + --bg-opacity: 0; + } + + .xl\:focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; + } + + .xl\:focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; + } + + .xl\:focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; + } + + .xl\:focus\:bg-opacity-100:focus { + --bg-opacity: 1; + } + + .xl\:bg-bottom { + background-position: bottom; + } + + .xl\:bg-center { + background-position: center; + } + + .xl\:bg-left { + background-position: left; + } + + .xl\:bg-left-bottom { + background-position: left bottom; + } + + .xl\:bg-left-top { + background-position: left top; + } + + .xl\:bg-right { + background-position: right; + } + + .xl\:bg-right-bottom { + background-position: right bottom; + } + + .xl\:bg-right-top { + background-position: right top; + } + + .xl\:bg-top { + background-position: top; + } + + .xl\:bg-repeat { + background-repeat: repeat; + } + + .xl\:bg-no-repeat { + background-repeat: no-repeat; + } + + .xl\:bg-repeat-x { + background-repeat: repeat-x; + } + + .xl\:bg-repeat-y { + background-repeat: repeat-y; + } + + .xl\:bg-repeat-round { + background-repeat: round; + } + + .xl\:bg-repeat-space { + background-repeat: space; + } + + .xl\:bg-auto { + background-size: auto; + } + + .xl\:bg-cover { + background-size: cover; + } + + .xl\:bg-contain { + background-size: contain; + } + + .xl\:border-collapse { + border-collapse: collapse; + } + + .xl\:border-separate { + border-collapse: separate; + } + + .xl\:border-opacity-0 { + --border-opacity: 0; + } + + .xl\:border-opacity-25 { + --border-opacity: 0.25; + } + + .xl\:border-opacity-50 { + --border-opacity: 0.5; + } + + .xl\:border-opacity-75 { + --border-opacity: 0.75; + } + + .xl\:border-opacity-100 { + --border-opacity: 1; + } + + .xl\:hover\:border-opacity-0:hover { + --border-opacity: 0; + } + + .xl\:hover\:border-opacity-25:hover { + --border-opacity: 0.25; + } + + .xl\:hover\:border-opacity-50:hover { + --border-opacity: 0.5; + } + + .xl\:hover\:border-opacity-75:hover { + --border-opacity: 0.75; + } + + .xl\:hover\:border-opacity-100:hover { + --border-opacity: 1; + } + + .xl\:focus\:border-opacity-0:focus { + --border-opacity: 0; + } + + .xl\:focus\:border-opacity-25:focus { + --border-opacity: 0.25; + } + + .xl\:focus\:border-opacity-50:focus { + --border-opacity: 0.5; + } + + .xl\:focus\:border-opacity-75:focus { + --border-opacity: 0.75; + } + + .xl\:focus\:border-opacity-100:focus { + --border-opacity: 1; + } + + .xl\:rounded-none { + border-radius: 0; + } + + .xl\:rounded-sm { + border-radius: 0.125rem; + } + + .xl\:rounded { + border-radius: 0.25rem; + } + + .xl\:rounded-md { + border-radius: 0.375rem; + } + + .xl\:rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; + } + + .xl\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .xl\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .xl\:border-solid { + border-style: solid; + } + + .xl\:border-dashed { + border-style: dashed; + } + + .xl\:border-dotted { + border-style: dotted; + } + + .xl\:border-double { + border-style: double; + } + + .xl\:border-none { + border-style: none; + } + + .xl\:border-0 { + border-width: 0; + } + + .xl\:border-2 { + border-width: 2px; + } + + .xl\:border-4 { + border-width: 4px; + } + + .xl\:border-8 { + border-width: 8px; + } + + .xl\:border { + border-width: 1px; + } + + .xl\:border-t-0 { + border-top-width: 0; + } + + .xl\:border-r-0 { + border-right-width: 0; + } + + .xl\:border-b-0 { + border-bottom-width: 0; + } + + .xl\:border-l-0 { + border-left-width: 0; + } + + .xl\:border-t-2 { + border-top-width: 2px; + } + + .xl\:border-r-2 { + border-right-width: 2px; + } + + .xl\:border-b-2 { + border-bottom-width: 2px; + } + + .xl\:border-l-2 { + border-left-width: 2px; + } + + .xl\:border-t-4 { + border-top-width: 4px; + } + + .xl\:border-r-4 { + border-right-width: 4px; + } + + .xl\:border-b-4 { + border-bottom-width: 4px; + } + + .xl\:border-l-4 { + border-left-width: 4px; + } + + .xl\:border-t-8 { + border-top-width: 8px; + } + + .xl\:border-r-8 { + border-right-width: 8px; + } + + .xl\:border-b-8 { + border-bottom-width: 8px; + } + + .xl\:border-l-8 { + border-left-width: 8px; + } + + .xl\:border-t { + border-top-width: 1px; + } + + .xl\:border-r { + border-right-width: 1px; + } + + .xl\:border-b { + border-bottom-width: 1px; + } + + .xl\:border-l { + border-left-width: 1px; + } + + .xl\:box-border { + box-sizing: border-box; + } + + .xl\:box-content { + box-sizing: content-box; + } + + .xl\:cursor-auto { + cursor: auto; + } + + .xl\:cursor-default { + cursor: default; + } + + .xl\:cursor-pointer { + cursor: pointer; + } + + .xl\:cursor-wait { + cursor: wait; + } + + .xl\:cursor-text { + cursor: text; + } + + .xl\:cursor-move { + cursor: move; + } + + .xl\:cursor-not-allowed { + cursor: not-allowed; + } + + .xl\:block { + display: block; + } + + .xl\:inline-block { + display: inline-block; + } + + .xl\:inline { + display: inline; + } + + .xl\:flex { + display: flex; + } + + .xl\:inline-flex { + display: inline-flex; + } + + .xl\:table { + display: table; + } + + .xl\:table-caption { + display: table-caption; + } + + .xl\:table-cell { + display: table-cell; + } + + .xl\:table-column { + display: table-column; + } + + .xl\:table-column-group { + display: table-column-group; + } + + .xl\:table-footer-group { + display: table-footer-group; + } + + .xl\:table-header-group { + display: table-header-group; + } + + .xl\:table-row-group { + display: table-row-group; + } + + .xl\:table-row { + display: table-row; + } + + .xl\:flow-root { + display: flow-root; + } + + .xl\:grid { + display: grid; + } + + .xl\:inline-grid { + display: inline-grid; + } + + .xl\:hidden { + display: none; + } + + .theme-dark .xl\:dark\:block { + display: block; + } + + .theme-dark .xl\:dark\:inline-block { + display: inline-block; + } + + .theme-dark .xl\:dark\:inline { + display: inline; + } + + .theme-dark .xl\:dark\:flex { + display: flex; + } + + .theme-dark .xl\:dark\:inline-flex { + display: inline-flex; + } + + .theme-dark .xl\:dark\:table { + display: table; + } + + .theme-dark .xl\:dark\:table-caption { + display: table-caption; + } + + .theme-dark .xl\:dark\:table-cell { + display: table-cell; + } + + .theme-dark .xl\:dark\:table-column { + display: table-column; + } + + .theme-dark .xl\:dark\:table-column-group { + display: table-column-group; + } + + .theme-dark .xl\:dark\:table-footer-group { + display: table-footer-group; + } + + .theme-dark .xl\:dark\:table-header-group { + display: table-header-group; + } + + .theme-dark .xl\:dark\:table-row-group { + display: table-row-group; + } + + .theme-dark .xl\:dark\:table-row { + display: table-row; + } + + .theme-dark .xl\:dark\:flow-root { + display: flow-root; + } + + .theme-dark .xl\:dark\:grid { + display: grid; + } + + .theme-dark .xl\:dark\:inline-grid { + display: inline-grid; + } + + .theme-dark .xl\:dark\:hidden { + display: none; + } + + .xl\:flex-row { + flex-direction: row; + } + + .xl\:flex-row-reverse { + flex-direction: row-reverse; + } + + .xl\:flex-col { + flex-direction: column; + } + + .xl\:flex-col-reverse { + flex-direction: column-reverse; + } + + .xl\:flex-wrap { + flex-wrap: wrap; + } + + .xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .xl\:flex-no-wrap { + flex-wrap: nowrap; + } + + .xl\:items-start { + align-items: flex-start; + } + + .xl\:items-end { + align-items: flex-end; + } + + .xl\:items-center { + align-items: center; + } + + .xl\:items-baseline { + align-items: baseline; + } + + .xl\:items-stretch { + align-items: stretch; + } + + .xl\:self-auto { + align-self: auto; + } + + .xl\:self-start { + align-self: flex-start; + } + + .xl\:self-end { + align-self: flex-end; + } + + .xl\:self-center { + align-self: center; + } + + .xl\:self-stretch { + align-self: stretch; + } + + .xl\:justify-start { + justify-content: flex-start; + } + + .xl\:justify-end { + justify-content: flex-end; + } + + .xl\:justify-center { + justify-content: center; + } + + .xl\:justify-between { + justify-content: space-between; + } + + .xl\:justify-around { + justify-content: space-around; + } + + .xl\:justify-evenly { + justify-content: space-evenly; + } + + .xl\:content-center { + align-content: center; + } + + .xl\:content-start { + align-content: flex-start; + } + + .xl\:content-end { + align-content: flex-end; + } + + .xl\:content-between { + align-content: space-between; + } + + .xl\:content-around { + align-content: space-around; + } + + .xl\:flex-1 { + flex: 1 1 0%; + } + + .xl\:flex-auto { + flex: 1 1 auto; + } + + .xl\:flex-initial { + flex: 0 1 auto; + } + + .xl\:flex-none { + flex: none; + } + + .xl\:flex-grow-0 { + flex-grow: 0; + } + + .xl\:flex-grow { + flex-grow: 1; + } + + .xl\:flex-shrink-0 { + flex-shrink: 0; + } + + .xl\:flex-shrink { + flex-shrink: 1; + } + + .xl\:order-1 { + order: 1; + } + + .xl\:order-2 { + order: 2; + } + + .xl\:order-3 { + order: 3; + } + + .xl\:order-4 { + order: 4; + } + + .xl\:order-5 { + order: 5; + } + + .xl\:order-6 { + order: 6; + } + + .xl\:order-7 { + order: 7; + } + + .xl\:order-8 { + order: 8; + } + + .xl\:order-9 { + order: 9; + } + + .xl\:order-10 { + order: 10; + } + + .xl\:order-11 { + order: 11; + } + + .xl\:order-12 { + order: 12; + } + + .xl\:order-first { + order: -9999; + } + + .xl\:order-last { + order: 9999; + } + + .xl\:order-none { + order: 0; + } + + .xl\:float-right { + float: right; + } + + .xl\:float-left { + float: left; + } + + .xl\:float-none { + float: none; + } + + .xl\:clearfix:after { + content: ""; + display: table; + clear: both; + } + + .xl\:clear-left { + clear: left; + } + + .xl\:clear-right { + clear: right; + } + + .xl\:clear-both { + clear: both; + } + + .xl\:clear-none { + clear: none; + } + + .xl\:font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .xl\:font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; + } + + .xl\:font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .xl\:font-hairline { + font-weight: 100; + } + + .xl\:font-thin { + font-weight: 200; + } + + .xl\:font-light { + font-weight: 300; + } + + .xl\:font-normal { + font-weight: 400; + } + + .xl\:font-medium { + font-weight: 500; + } + + .xl\:font-semibold { + font-weight: 600; + } + + .xl\:font-bold { + font-weight: 700; + } + + .xl\:font-extrabold { + font-weight: 800; + } + + .xl\:font-black { + font-weight: 900; + } + + .xl\:hover\:font-hairline:hover { + font-weight: 100; + } + + .xl\:hover\:font-thin:hover { + font-weight: 200; + } + + .xl\:hover\:font-light:hover { + font-weight: 300; + } + + .xl\:hover\:font-normal:hover { + font-weight: 400; + } + + .xl\:hover\:font-medium:hover { + font-weight: 500; + } + + .xl\:hover\:font-semibold:hover { + font-weight: 600; + } + + .xl\:hover\:font-bold:hover { + font-weight: 700; + } + + .xl\:hover\:font-extrabold:hover { + font-weight: 800; + } + + .xl\:hover\:font-black:hover { + font-weight: 900; + } + + .xl\:focus\:font-hairline:focus { + font-weight: 100; + } + + .xl\:focus\:font-thin:focus { + font-weight: 200; + } + + .xl\:focus\:font-light:focus { + font-weight: 300; + } + + .xl\:focus\:font-normal:focus { + font-weight: 400; + } + + .xl\:focus\:font-medium:focus { + font-weight: 500; + } + + .xl\:focus\:font-semibold:focus { + font-weight: 600; + } + + .xl\:focus\:font-bold:focus { + font-weight: 700; + } + + .xl\:focus\:font-extrabold:focus { + font-weight: 800; + } + + .xl\:focus\:font-black:focus { + font-weight: 900; + } + + .xl\:h-0 { + height: 0; + } + + .xl\:h-1 { + height: 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-8 { + height: 2rem; + } + + .xl\:h-10 { + height: 2.5rem; + } + + .xl\:h-12 { + height: 3rem; + } + + .xl\:h-16 { + height: 4rem; + } + + .xl\:h-20 { + height: 5rem; + } + + .xl\:h-24 { + height: 6rem; + } + + .xl\:h-32 { + height: 8rem; + } + + .xl\:h-40 { + height: 10rem; + } + + .xl\:h-48 { + height: 12rem; + } + + .xl\:h-56 { + height: 14rem; + } + + .xl\:h-64 { + height: 16rem; + } + + .xl\:h-auto { + height: auto; + } + + .xl\:h-px { + height: 1px; + } + + .xl\:h-full { + height: 100%; + } + + .xl\:h-screen { + height: 100vh; + } + + .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: 4rem; + } + + .xl\:leading-3 { + line-height: .75rem; + } + + .xl\:leading-4 { + line-height: 1rem; + } + + .xl\:leading-5 { + line-height: 1.25rem; + } + + .xl\:leading-6 { + line-height: 1.5rem; + } + + .xl\:leading-7 { + line-height: 1.75rem; + } + + .xl\:leading-8 { + line-height: 2rem; + } + + .xl\:leading-9 { + line-height: 2.25rem; + } + + .xl\:leading-10 { + line-height: 2.5rem; + } + + .xl\:leading-none { + line-height: 1; + } + + .xl\:leading-tight { + line-height: 1.25; + } + + .xl\:leading-snug { + line-height: 1.375; + } + + .xl\:leading-normal { + line-height: 1.5; + } + + .xl\:leading-relaxed { + line-height: 1.625; + } + + .xl\:leading-loose { + line-height: 2; + } + + .xl\:list-inside { + list-style-position: inside; + } + + .xl\:list-outside { + list-style-position: outside; + } + + .xl\:list-none { + list-style-type: none; + } + + .xl\:list-disc { + list-style-type: disc; + } + + .xl\:list-decimal { + list-style-type: decimal; + } + + .xl\:m-0 { + margin: 0; + } + + .xl\:m-1 { + margin: 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-8 { + margin: 2rem; + } + + .xl\:m-10 { + margin: 2.5rem; + } + + .xl\:m-12 { + margin: 3rem; + } + + .xl\:m-16 { + margin: 4rem; + } + + .xl\:m-20 { + margin: 5rem; + } + + .xl\:m-24 { + margin: 6rem; + } + + .xl\:m-32 { + margin: 8rem; + } + + .xl\:m-40 { + margin: 10rem; + } + + .xl\:m-48 { + margin: 12rem; + } + + .xl\:m-56 { + margin: 14rem; + } + + .xl\:m-64 { + margin: 16rem; + } + + .xl\:m-auto { + margin: auto; + } + + .xl\:m-px { + margin: 1px; + } + + .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-8 { + margin: -2rem; + } + + .xl\:-m-10 { + margin: -2.5rem; + } + + .xl\:-m-12 { + margin: -3rem; + } + + .xl\:-m-16 { + margin: -4rem; + } + + .xl\:-m-20 { + margin: -5rem; + } + + .xl\:-m-24 { + margin: -6rem; + } + + .xl\:-m-32 { + margin: -8rem; + } + + .xl\:-m-40 { + margin: -10rem; + } + + .xl\:-m-48 { + margin: -12rem; + } + + .xl\:-m-56 { + margin: -14rem; + } + + .xl\:-m-64 { + margin: -16rem; + } + + .xl\:-m-px { + margin: -1px; + } + + .xl\:my-0 { + margin-top: 0; + margin-bottom: 0; + } + + .xl\:mx-0 { + margin-left: 0; + margin-right: 0; + } + + .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-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .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-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .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-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .xl\:mt-0 { + margin-top: 0; + } + + .xl\:mr-0 { + margin-right: 0; + } + + .xl\:mb-0 { + margin-bottom: 0; + } + + .xl\:ml-0 { + margin-left: 0; + } + + .xl\:mt-1 { + margin-top: 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-8 { + margin-top: 2rem; + } + + .xl\:mr-8 { + margin-right: 2rem; + } + + .xl\:mb-8 { + margin-bottom: 2rem; + } + + .xl\:ml-8 { + margin-left: 2rem; + } + + .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-12 { + margin-top: 3rem; + } + + .xl\:mr-12 { + margin-right: 3rem; + } + + .xl\:mb-12 { + margin-bottom: 3rem; + } + + .xl\:ml-12 { + margin-left: 3rem; + } + + .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-32 { + margin-top: 8rem; + } + + .xl\:mr-32 { + margin-right: 8rem; + } + + .xl\:mb-32 { + margin-bottom: 8rem; + } + + .xl\:ml-32 { + margin-left: 8rem; + } + + .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-48 { + margin-top: 12rem; + } + + .xl\:mr-48 { + margin-right: 12rem; + } + + .xl\:mb-48 { + margin-bottom: 12rem; + } + + .xl\:ml-48 { + margin-left: 12rem; + } + + .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-64 { + margin-top: 16rem; + } + + .xl\:mr-64 { + margin-right: 16rem; + } + + .xl\:mb-64 { + margin-bottom: 16rem; + } + + .xl\:ml-64 { + margin-left: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + } + + .xl\:-mr-8 { + margin-right: -2rem; + } + + .xl\:-mb-8 { + margin-bottom: -2rem; + } + + .xl\:-ml-8 { + margin-left: -2rem; + } + + .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-12 { + margin-top: -3rem; + } + + .xl\:-mr-12 { + margin-right: -3rem; + } + + .xl\:-mb-12 { + margin-bottom: -3rem; + } + + .xl\:-ml-12 { + margin-left: -3rem; + } + + .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-32 { + margin-top: -8rem; + } + + .xl\:-mr-32 { + margin-right: -8rem; + } + + .xl\:-mb-32 { + margin-bottom: -8rem; + } + + .xl\:-ml-32 { + margin-left: -8rem; + } + + .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-48 { + margin-top: -12rem; + } + + .xl\:-mr-48 { + margin-right: -12rem; + } + + .xl\:-mb-48 { + margin-bottom: -12rem; + } + + .xl\:-ml-48 { + margin-left: -12rem; + } + + .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-64 { + margin-top: -16rem; + } + + .xl\:-mr-64 { + margin-right: -16rem; + } + + .xl\:-mb-64 { + margin-bottom: -16rem; + } + + .xl\:-ml-64 { + margin-left: -16rem; + } + + .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\:max-h-0 { + max-height: 0; + } + + .xl\:max-h-full { + max-height: 100%; + } + + .xl\:max-h-screen { + max-height: 100vh; + } + + .xl\:max-h-xl { + max-height: 36rem; + } + + .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-full { + max-width: 100%; + } + + .xl\:max-w-screen-sm { + max-width: 640px; + } + + .xl\:max-w-screen-md { + max-width: 768px; + } + + .xl\:max-w-screen-lg { + max-width: 1024px; + } + + .xl\:max-w-screen-xl { + max-width: 1280px; + } + + .xl\:min-h-0 { + min-height: 0; + } + + .xl\:min-h-full { + min-height: 100%; + } + + .xl\:min-h-screen { + min-height: 100vh; + } + + .xl\:min-w-0 { + min-width: 0; + } + + .xl\:min-w-full { + min-width: 100%; + } + + .xl\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .xl\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .xl\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .xl\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .xl\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .xl\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .xl\:object-center { + -o-object-position: center; + object-position: center; + } + + .xl\:object-left { + -o-object-position: left; + object-position: left; + } + + .xl\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .xl\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .xl\:object-right { + -o-object-position: right; + object-position: right; + } + + .xl\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .xl\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .xl\:object-top { + -o-object-position: top; + object-position: top; + } + + .xl\:opacity-0 { + opacity: 0; + } + + .xl\:opacity-25 { + opacity: 0.25; + } + + .xl\:opacity-50 { + opacity: 0.5; + } + + .xl\:opacity-75 { + opacity: 0.75; + } + + .xl\:opacity-100 { + opacity: 1; + } + + .xl\:hover\:opacity-0:hover { + opacity: 0; + } + + .xl\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .xl\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .xl\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .xl\:hover\:opacity-100:hover { + opacity: 1; + } + + .xl\:focus\:opacity-0:focus { + opacity: 0; + } + + .xl\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .xl\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .xl\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .xl\:focus\:opacity-100:focus { + opacity: 1; + } + + .xl\:outline-none { + outline: 0; + } + + .xl\:focus\:outline-none:focus { + outline: 0; + } + + .xl\:overflow-auto { + overflow: auto; + } + + .xl\:overflow-hidden { + overflow: hidden; + } + + .xl\:overflow-visible { + overflow: visible; + } + + .xl\:overflow-scroll { + overflow: scroll; + } + + .xl\:overflow-x-auto { + overflow-x: auto; + } + + .xl\:overflow-y-auto { + overflow-y: auto; + } + + .xl\:overflow-x-hidden { + overflow-x: hidden; + } + + .xl\:overflow-y-hidden { + overflow-y: hidden; + } + + .xl\:overflow-x-visible { + overflow-x: visible; + } + + .xl\:overflow-y-visible { + overflow-y: visible; + } + + .xl\:overflow-x-scroll { + overflow-x: scroll; + } + + .xl\:overflow-y-scroll { + overflow-y: scroll; + } + + .xl\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .xl\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + + .xl\:p-0 { + padding: 0; + } + + .xl\:p-1 { + padding: 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-8 { + padding: 2rem; + } + + .xl\:p-10 { + padding: 2.5rem; + } + + .xl\:p-12 { + padding: 3rem; + } + + .xl\:p-16 { + padding: 4rem; + } + + .xl\:p-20 { + padding: 5rem; + } + + .xl\:p-24 { + padding: 6rem; + } + + .xl\:p-32 { + padding: 8rem; + } + + .xl\:p-40 { + padding: 10rem; + } + + .xl\:p-48 { + padding: 12rem; + } + + .xl\:p-56 { + padding: 14rem; + } + + .xl\:p-64 { + padding: 16rem; + } + + .xl\:p-px { + padding: 1px; + } + + .xl\:py-0 { + padding-top: 0; + padding-bottom: 0; + } + + .xl\:px-0 { + padding-left: 0; + padding-right: 0; + } + + .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-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .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-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .xl\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .xl\:pt-0 { + padding-top: 0; + } + + .xl\:pr-0 { + padding-right: 0; + } + + .xl\:pb-0 { + padding-bottom: 0; + } + + .xl\:pl-0 { + padding-left: 0; + } + + .xl\:pt-1 { + padding-top: 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-8 { + padding-top: 2rem; + } + + .xl\:pr-8 { + padding-right: 2rem; + } + + .xl\:pb-8 { + padding-bottom: 2rem; + } + + .xl\:pl-8 { + padding-left: 2rem; + } + + .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-12 { + padding-top: 3rem; + } + + .xl\:pr-12 { + padding-right: 3rem; + } + + .xl\:pb-12 { + padding-bottom: 3rem; + } + + .xl\:pl-12 { + padding-left: 3rem; + } + + .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-32 { + padding-top: 8rem; + } + + .xl\:pr-32 { + padding-right: 8rem; + } + + .xl\:pb-32 { + padding-bottom: 8rem; + } + + .xl\:pl-32 { + padding-left: 8rem; + } + + .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-48 { + padding-top: 12rem; + } + + .xl\:pr-48 { + padding-right: 12rem; + } + + .xl\:pb-48 { + padding-bottom: 12rem; + } + + .xl\:pl-48 { + padding-left: 12rem; + } + + .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-64 { + padding-top: 16rem; + } + + .xl\:pr-64 { + padding-right: 16rem; + } + + .xl\:pb-64 { + padding-bottom: 16rem; + } + + .xl\:pl-64 { + padding-left: 16rem; + } + + .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\:placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; + } + + .xl\:pointer-events-none { + pointer-events: none; + } + + .xl\:pointer-events-auto { + pointer-events: auto; + } + + .xl\:static { + position: static; + } + + .xl\:fixed { + position: fixed; + } + + .xl\:absolute { + position: absolute; + } + + .xl\:relative { + position: relative; + } + + .xl\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .xl\:inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .xl\:inset-y-0 { + top: 0; + bottom: 0; + } + + .xl\:inset-x-0 { + right: 0; + left: 0; + } + + .xl\:inset-y-auto { + top: auto; + bottom: auto; + } + + .xl\:inset-x-auto { + right: auto; + left: auto; + } + + .xl\:top-0 { + top: 0; + } + + .xl\:right-0 { + right: 0; + } + + .xl\:bottom-0 { + bottom: 0; + } + + .xl\:left-0 { + left: 0; + } + + .xl\:top-auto { + top: auto; + } + + .xl\:right-auto { + right: auto; + } + + .xl\:bottom-auto { + bottom: auto; + } + + .xl\:left-auto { + left: auto; + } + + .xl\:resize-none { + resize: none; + } + + .xl\:resize-y { + resize: vertical; + } + + .xl\:resize-x { + resize: horizontal; + } + + .xl\:resize { + resize: both; + } + + .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-opacity-0 { + --text-opacity: 0; + } + + .xl\:text-opacity-25 { + --text-opacity: 0.25; + } + + .xl\:text-opacity-50 { + --text-opacity: 0.5; + } + + .xl\:text-opacity-75 { + --text-opacity: 0.75; + } + + .xl\:text-opacity-100 { + --text-opacity: 1; + } + + .xl\:hover\:text-opacity-0:hover { + --text-opacity: 0; + } + + .xl\:hover\:text-opacity-25:hover { + --text-opacity: 0.25; + } + + .xl\:hover\:text-opacity-50:hover { + --text-opacity: 0.5; + } + + .xl\:hover\:text-opacity-75:hover { + --text-opacity: 0.75; + } + + .xl\:hover\:text-opacity-100:hover { + --text-opacity: 1; + } + + .xl\:focus\:text-opacity-0:focus { + --text-opacity: 0; + } + + .xl\:focus\:text-opacity-25:focus { + --text-opacity: 0.25; + } + + .xl\:focus\:text-opacity-50:focus { + --text-opacity: 0.5; + } + + .xl\:focus\:text-opacity-75:focus { + --text-opacity: 0.75; + } + + .xl\:focus\:text-opacity-100:focus { + --text-opacity: 1; + } + + .xl\:italic { + font-style: italic; + } + + .xl\:not-italic { + font-style: normal; + } + + .xl\:uppercase { + text-transform: uppercase; + } + + .xl\:lowercase { + text-transform: lowercase; + } + + .xl\:capitalize { + text-transform: capitalize; + } + + .xl\:normal-case { + text-transform: none; + } + + .xl\:underline { + text-decoration: underline; + } + + .xl\:line-through { + text-decoration: line-through; + } + + .xl\:no-underline { + text-decoration: none; + } + + .xl\:hover\:underline:hover { + text-decoration: underline; + } + + .xl\:hover\:line-through:hover { + text-decoration: line-through; + } + + .xl\:hover\:no-underline:hover { + text-decoration: none; + } + + .xl\:focus\:underline:focus { + text-decoration: underline; + } + + .xl\:focus\:line-through:focus { + text-decoration: line-through; + } + + .xl\:focus\:no-underline:focus { + text-decoration: none; + } + + .xl\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .xl\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .xl\:tracking-tighter { + letter-spacing: -0.05em; + } + + .xl\:tracking-tight { + letter-spacing: -0.025em; + } + + .xl\:tracking-normal { + letter-spacing: 0; + } + + .xl\:tracking-wide { + letter-spacing: 0.025em; + } + + .xl\:tracking-wider { + letter-spacing: 0.05em; + } + + .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-no-wrap { + white-space: nowrap; + } + + .xl\:whitespace-pre { + white-space: pre; + } + + .xl\:whitespace-pre-line { + white-space: pre-line; + } + + .xl\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .xl\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .xl\:break-words { + overflow-wrap: break-word; + } + + .xl\:break-all { + word-break: break-all; + } + + .xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .xl\:w-0 { + width: 0; + } + + .xl\:w-1 { + width: 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-8 { + width: 2rem; + } + + .xl\:w-10 { + width: 2.5rem; + } + + .xl\:w-12 { + width: 3rem; + } + + .xl\:w-16 { + width: 4rem; + } + + .xl\:w-20 { + width: 5rem; + } + + .xl\:w-24 { + width: 6rem; + } + + .xl\:w-32 { + width: 8rem; + } + + .xl\:w-40 { + width: 10rem; + } + + .xl\:w-48 { + width: 12rem; + } + + .xl\:w-56 { + width: 14rem; + } + + .xl\:w-64 { + width: 16rem; + } + + .xl\:w-auto { + width: auto; + } + + .xl\:w-px { + width: 1px; + } + + .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\:gap-0 { + grid-gap: 0; + gap: 0; + } + + .xl\:gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; + } + + .xl\:gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; + } + + .xl\:gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; + } + + .xl\:gap-4 { + grid-gap: 1rem; + gap: 1rem; + } + + .xl\:gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; + } + + .xl\:gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; + } + + .xl\:gap-8 { + grid-gap: 2rem; + gap: 2rem; + } + + .xl\:gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; + } + + .xl\:gap-12 { + grid-gap: 3rem; + gap: 3rem; + } + + .xl\:gap-16 { + grid-gap: 4rem; + gap: 4rem; + } + + .xl\:gap-20 { + grid-gap: 5rem; + gap: 5rem; + } + + .xl\:gap-24 { + grid-gap: 6rem; + gap: 6rem; + } + + .xl\:gap-32 { + grid-gap: 8rem; + gap: 8rem; + } + + .xl\:gap-40 { + grid-gap: 10rem; + gap: 10rem; + } + + .xl\:gap-48 { + grid-gap: 12rem; + gap: 12rem; + } + + .xl\:gap-56 { + grid-gap: 14rem; + gap: 14rem; + } + + .xl\:gap-64 { + grid-gap: 16rem; + gap: 16rem; + } + + .xl\:gap-px { + grid-gap: 1px; + gap: 1px; + } + + .xl\:col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; + } + + .xl\:col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .xl\:col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .xl\:col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .xl\:col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .xl\:col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .xl\:col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .xl\:col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .xl\:col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .xl\:col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .xl\:col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .xl\:col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .xl\:col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .xl\:col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .xl\:col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .xl\:col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .xl\:col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .xl\:col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .xl\:col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; + } + + .xl\:row-gap-0 { + grid-row-gap: 0; + row-gap: 0; + } + + .xl\:row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; + } + + .xl\:row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; + } + + .xl\:row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; + } + + .xl\:row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; + } + + .xl\:row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; + } + + .xl\:row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; + } + + .xl\:row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; + } + + .xl\:row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; + } + + .xl\:row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; + } + + .xl\:row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; + } + + .xl\:row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; + } + + .xl\:row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; + } + + .xl\:row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; + } + + .xl\:row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; + } + + .xl\:row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; + } + + .xl\:row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; + } + + .xl\:row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; + } + + .xl\:row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; + } + + .xl\:grid-flow-row { + grid-auto-flow: row; + } + + .xl\:grid-flow-col { + grid-auto-flow: column; + } + + .xl\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .xl\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .xl\:grid-cols-none { + grid-template-columns: none; + } + + .xl\:col-auto { + grid-column: auto; + } + + .xl\:col-span-1 { + grid-column: span 1 / span 1; + } + + .xl\:col-span-2 { + grid-column: span 2 / span 2; + } + + .xl\:col-span-3 { + grid-column: span 3 / span 3; + } + + .xl\:col-span-4 { + grid-column: span 4 / span 4; + } + + .xl\:col-span-5 { + grid-column: span 5 / span 5; + } + + .xl\:col-span-6 { + grid-column: span 6 / span 6; + } + + .xl\:col-span-7 { + grid-column: span 7 / span 7; + } + + .xl\:col-span-8 { + grid-column: span 8 / span 8; + } + + .xl\:col-span-9 { + grid-column: span 9 / span 9; + } + + .xl\:col-span-10 { + grid-column: span 10 / span 10; + } + + .xl\:col-span-11 { + grid-column: span 11 / span 11; + } + + .xl\:col-span-12 { + grid-column: span 12 / span 12; + } + + .xl\:col-start-1 { + grid-column-start: 1; + } + + .xl\:col-start-2 { + grid-column-start: 2; + } + + .xl\:col-start-3 { + grid-column-start: 3; + } + + .xl\:col-start-4 { + grid-column-start: 4; + } + + .xl\:col-start-5 { + grid-column-start: 5; + } + + .xl\:col-start-6 { + grid-column-start: 6; + } + + .xl\:col-start-7 { + grid-column-start: 7; + } + + .xl\:col-start-8 { + grid-column-start: 8; + } + + .xl\:col-start-9 { + grid-column-start: 9; + } + + .xl\:col-start-10 { + grid-column-start: 10; + } + + .xl\:col-start-11 { + grid-column-start: 11; + } + + .xl\:col-start-12 { + grid-column-start: 12; + } + + .xl\:col-start-13 { + grid-column-start: 13; + } + + .xl\:col-start-auto { + grid-column-start: auto; + } + + .xl\:col-end-1 { + grid-column-end: 1; + } + + .xl\:col-end-2 { + grid-column-end: 2; + } + + .xl\:col-end-3 { + grid-column-end: 3; + } + + .xl\:col-end-4 { + grid-column-end: 4; + } + + .xl\:col-end-5 { + grid-column-end: 5; + } + + .xl\:col-end-6 { + grid-column-end: 6; + } + + .xl\:col-end-7 { + grid-column-end: 7; + } + + .xl\:col-end-8 { + grid-column-end: 8; + } + + .xl\:col-end-9 { + grid-column-end: 9; + } + + .xl\:col-end-10 { + grid-column-end: 10; + } + + .xl\:col-end-11 { + grid-column-end: 11; + } + + .xl\:col-end-12 { + grid-column-end: 12; + } + + .xl\:col-end-13 { + grid-column-end: 13; + } + + .xl\:col-end-auto { + grid-column-end: auto; + } + + .xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .xl\:grid-rows-none { + grid-template-rows: none; + } + + .xl\:row-auto { + grid-row: auto; + } + + .xl\:row-span-1 { + grid-row: span 1 / span 1; + } + + .xl\:row-span-2 { + grid-row: span 2 / span 2; + } + + .xl\:row-span-3 { + grid-row: span 3 / span 3; + } + + .xl\:row-span-4 { + grid-row: span 4 / span 4; + } + + .xl\:row-span-5 { + grid-row: span 5 / span 5; + } + + .xl\:row-span-6 { + grid-row: span 6 / span 6; + } + + .xl\:row-start-1 { + grid-row-start: 1; + } + + .xl\:row-start-2 { + grid-row-start: 2; + } + + .xl\:row-start-3 { + grid-row-start: 3; + } + + .xl\:row-start-4 { + grid-row-start: 4; + } + + .xl\:row-start-5 { + grid-row-start: 5; + } + + .xl\:row-start-6 { + grid-row-start: 6; + } + + .xl\:row-start-7 { + grid-row-start: 7; + } + + .xl\:row-start-auto { + grid-row-start: auto; + } + + .xl\:row-end-1 { + grid-row-end: 1; + } + + .xl\:row-end-2 { + grid-row-end: 2; + } + + .xl\:row-end-3 { + grid-row-end: 3; + } + + .xl\:row-end-4 { + grid-row-end: 4; + } + + .xl\:row-end-5 { + grid-row-end: 5; + } + + .xl\:row-end-6 { + grid-row-end: 6; + } + + .xl\:row-end-7 { + grid-row-end: 7; + } + + .xl\:row-end-auto { + grid-row-end: auto; + } + + .xl\:transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); + } + + .xl\:transform-none { + transform: none; + } + + .xl\:origin-center { + transform-origin: center; + } + + .xl\:origin-top { + transform-origin: top; + } + + .xl\:origin-top-right { + transform-origin: top right; + } + + .xl\:origin-right { + transform-origin: right; + } + + .xl\:origin-bottom-right { + transform-origin: bottom right; + } + + .xl\:origin-bottom { + transform-origin: bottom; + } + + .xl\:origin-bottom-left { + transform-origin: bottom left; + } + + .xl\:origin-left { + transform-origin: left; + } + + .xl\:origin-top-left { + transform-origin: top left; + } + + .xl\:scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .xl\:scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .xl\:scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .xl\:scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .xl\:scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .xl\:scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .xl\:scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .xl\:scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .xl\:scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .xl\:scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .xl\:scale-x-0 { + --transform-scale-x: 0; + } + + .xl\:scale-x-50 { + --transform-scale-x: .5; + } + + .xl\:scale-x-75 { + --transform-scale-x: .75; + } + + .xl\:scale-x-90 { + --transform-scale-x: .9; + } + + .xl\:scale-x-95 { + --transform-scale-x: .95; + } + + .xl\:scale-x-100 { + --transform-scale-x: 1; + } + + .xl\:scale-x-105 { + --transform-scale-x: 1.05; + } + + .xl\:scale-x-110 { + --transform-scale-x: 1.1; + } + + .xl\:scale-x-125 { + --transform-scale-x: 1.25; + } + + .xl\:scale-x-150 { + --transform-scale-x: 1.5; + } + + .xl\:scale-y-0 { + --transform-scale-y: 0; + } + + .xl\:scale-y-50 { + --transform-scale-y: .5; + } + + .xl\:scale-y-75 { + --transform-scale-y: .75; + } + + .xl\:scale-y-90 { + --transform-scale-y: .9; + } + + .xl\:scale-y-95 { + --transform-scale-y: .95; + } + + .xl\:scale-y-100 { + --transform-scale-y: 1; + } + + .xl\:scale-y-105 { + --transform-scale-y: 1.05; + } + + .xl\:scale-y-110 { + --transform-scale-y: 1.1; + } + + .xl\:scale-y-125 { + --transform-scale-y: 1.25; + } + + .xl\:scale-y-150 { + --transform-scale-y: 1.5; + } + + .xl\:hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .xl\:hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .xl\:hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .xl\:hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .xl\:hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .xl\:hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .xl\:hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .xl\:hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .xl\:hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .xl\:hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .xl\:hover\:scale-x-0:hover { + --transform-scale-x: 0; + } + + .xl\:hover\:scale-x-50:hover { + --transform-scale-x: .5; + } + + .xl\:hover\:scale-x-75:hover { + --transform-scale-x: .75; + } + + .xl\:hover\:scale-x-90:hover { + --transform-scale-x: .9; + } + + .xl\:hover\:scale-x-95:hover { + --transform-scale-x: .95; + } + + .xl\:hover\:scale-x-100:hover { + --transform-scale-x: 1; + } + + .xl\:hover\:scale-x-105:hover { + --transform-scale-x: 1.05; + } + + .xl\:hover\:scale-x-110:hover { + --transform-scale-x: 1.1; + } + + .xl\:hover\:scale-x-125:hover { + --transform-scale-x: 1.25; + } + + .xl\:hover\:scale-x-150:hover { + --transform-scale-x: 1.5; + } + + .xl\:hover\:scale-y-0:hover { + --transform-scale-y: 0; + } + + .xl\:hover\:scale-y-50:hover { + --transform-scale-y: .5; + } + + .xl\:hover\:scale-y-75:hover { + --transform-scale-y: .75; + } + + .xl\:hover\:scale-y-90:hover { + --transform-scale-y: .9; + } + + .xl\:hover\:scale-y-95:hover { + --transform-scale-y: .95; + } + + .xl\:hover\:scale-y-100:hover { + --transform-scale-y: 1; + } + + .xl\:hover\:scale-y-105:hover { + --transform-scale-y: 1.05; + } + + .xl\:hover\:scale-y-110:hover { + --transform-scale-y: 1.1; + } + + .xl\:hover\:scale-y-125:hover { + --transform-scale-y: 1.25; + } + + .xl\:hover\:scale-y-150:hover { + --transform-scale-y: 1.5; + } + + .xl\:focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .xl\:focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .xl\:focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .xl\:focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .xl\:focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .xl\:focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .xl\:focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .xl\:focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .xl\:focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .xl\:focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .xl\:focus\:scale-x-0:focus { + --transform-scale-x: 0; + } + + .xl\:focus\:scale-x-50:focus { + --transform-scale-x: .5; + } + + .xl\:focus\:scale-x-75:focus { + --transform-scale-x: .75; + } + + .xl\:focus\:scale-x-90:focus { + --transform-scale-x: .9; + } + + .xl\:focus\:scale-x-95:focus { + --transform-scale-x: .95; + } + + .xl\:focus\:scale-x-100:focus { + --transform-scale-x: 1; + } + + .xl\:focus\:scale-x-105:focus { + --transform-scale-x: 1.05; + } + + .xl\:focus\:scale-x-110:focus { + --transform-scale-x: 1.1; + } + + .xl\:focus\:scale-x-125:focus { + --transform-scale-x: 1.25; + } + + .xl\:focus\:scale-x-150:focus { + --transform-scale-x: 1.5; + } + + .xl\:focus\:scale-y-0:focus { + --transform-scale-y: 0; + } + + .xl\:focus\:scale-y-50:focus { + --transform-scale-y: .5; + } + + .xl\:focus\:scale-y-75:focus { + --transform-scale-y: .75; + } + + .xl\:focus\:scale-y-90:focus { + --transform-scale-y: .9; + } + + .xl\:focus\:scale-y-95:focus { + --transform-scale-y: .95; + } + + .xl\:focus\:scale-y-100:focus { + --transform-scale-y: 1; + } + + .xl\:focus\:scale-y-105:focus { + --transform-scale-y: 1.05; + } + + .xl\:focus\:scale-y-110:focus { + --transform-scale-y: 1.1; + } + + .xl\:focus\:scale-y-125:focus { + --transform-scale-y: 1.25; + } + + .xl\:focus\:scale-y-150:focus { + --transform-scale-y: 1.5; + } + + .xl\:rotate-0 { + --transform-rotate: 0; + } + + .xl\:rotate-45 { + --transform-rotate: 45deg; + } + + .xl\:rotate-90 { + --transform-rotate: 90deg; + } + + .xl\:rotate-180 { + --transform-rotate: 180deg; + } + + .xl\:-rotate-180 { + --transform-rotate: -180deg; + } + + .xl\:-rotate-90 { + --transform-rotate: -90deg; + } + + .xl\:-rotate-45 { + --transform-rotate: -45deg; + } + + .xl\:hover\:rotate-0:hover { + --transform-rotate: 0; + } + + .xl\:hover\:rotate-45:hover { + --transform-rotate: 45deg; + } + + .xl\:hover\:rotate-90:hover { + --transform-rotate: 90deg; + } + + .xl\:hover\:rotate-180:hover { + --transform-rotate: 180deg; + } + + .xl\:hover\:-rotate-180:hover { + --transform-rotate: -180deg; + } + + .xl\:hover\:-rotate-90:hover { + --transform-rotate: -90deg; + } + + .xl\:hover\:-rotate-45:hover { + --transform-rotate: -45deg; + } + + .xl\:focus\:rotate-0:focus { + --transform-rotate: 0; + } + + .xl\:focus\:rotate-45:focus { + --transform-rotate: 45deg; + } + + .xl\:focus\:rotate-90:focus { + --transform-rotate: 90deg; + } + + .xl\:focus\:rotate-180:focus { + --transform-rotate: 180deg; + } + + .xl\:focus\:-rotate-180:focus { + --transform-rotate: -180deg; + } + + .xl\:focus\:-rotate-90:focus { + --transform-rotate: -90deg; + } + + .xl\:focus\:-rotate-45:focus { + --transform-rotate: -45deg; + } + + .xl\:translate-x-0 { + --transform-translate-x: 0; + } + + .xl\:translate-x-1 { + --transform-translate-x: 0.25rem; + } + + .xl\:translate-x-2 { + --transform-translate-x: 0.5rem; + } + + .xl\:translate-x-3 { + --transform-translate-x: 0.75rem; + } + + .xl\:translate-x-4 { + --transform-translate-x: 1rem; + } + + .xl\:translate-x-5 { + --transform-translate-x: 1.25rem; + } + + .xl\:translate-x-6 { + --transform-translate-x: 1.5rem; + } + + .xl\:translate-x-8 { + --transform-translate-x: 2rem; + } + + .xl\:translate-x-10 { + --transform-translate-x: 2.5rem; + } + + .xl\:translate-x-12 { + --transform-translate-x: 3rem; + } + + .xl\:translate-x-16 { + --transform-translate-x: 4rem; + } + + .xl\:translate-x-20 { + --transform-translate-x: 5rem; + } + + .xl\:translate-x-24 { + --transform-translate-x: 6rem; + } + + .xl\:translate-x-32 { + --transform-translate-x: 8rem; + } + + .xl\:translate-x-40 { + --transform-translate-x: 10rem; + } + + .xl\:translate-x-48 { + --transform-translate-x: 12rem; + } + + .xl\:translate-x-56 { + --transform-translate-x: 14rem; + } + + .xl\:translate-x-64 { + --transform-translate-x: 16rem; + } + + .xl\:translate-x-px { + --transform-translate-x: 1px; + } + + .xl\:-translate-x-1 { + --transform-translate-x: -0.25rem; + } + + .xl\:-translate-x-2 { + --transform-translate-x: -0.5rem; + } + + .xl\:-translate-x-3 { + --transform-translate-x: -0.75rem; + } + + .xl\:-translate-x-4 { + --transform-translate-x: -1rem; + } + + .xl\:-translate-x-5 { + --transform-translate-x: -1.25rem; + } + + .xl\:-translate-x-6 { + --transform-translate-x: -1.5rem; + } + + .xl\:-translate-x-8 { + --transform-translate-x: -2rem; + } + + .xl\:-translate-x-10 { + --transform-translate-x: -2.5rem; + } + + .xl\:-translate-x-12 { + --transform-translate-x: -3rem; + } + + .xl\:-translate-x-16 { + --transform-translate-x: -4rem; + } + + .xl\:-translate-x-20 { + --transform-translate-x: -5rem; + } + + .xl\:-translate-x-24 { + --transform-translate-x: -6rem; + } + + .xl\:-translate-x-32 { + --transform-translate-x: -8rem; + } + + .xl\:-translate-x-40 { + --transform-translate-x: -10rem; + } + + .xl\:-translate-x-48 { + --transform-translate-x: -12rem; + } + + .xl\:-translate-x-56 { + --transform-translate-x: -14rem; + } + + .xl\:-translate-x-64 { + --transform-translate-x: -16rem; + } + + .xl\:-translate-x-px { + --transform-translate-x: -1px; + } + + .xl\:-translate-x-full { + --transform-translate-x: -100%; + } + + .xl\:-translate-x-1\/2 { + --transform-translate-x: -50%; + } + + .xl\:translate-x-1\/2 { + --transform-translate-x: 50%; + } + + .xl\:translate-x-full { + --transform-translate-x: 100%; + } + + .xl\:translate-y-0 { + --transform-translate-y: 0; + } + + .xl\:translate-y-1 { + --transform-translate-y: 0.25rem; + } + + .xl\:translate-y-2 { + --transform-translate-y: 0.5rem; + } + + .xl\:translate-y-3 { + --transform-translate-y: 0.75rem; + } + + .xl\:translate-y-4 { + --transform-translate-y: 1rem; + } + + .xl\:translate-y-5 { + --transform-translate-y: 1.25rem; + } + + .xl\:translate-y-6 { + --transform-translate-y: 1.5rem; + } + + .xl\:translate-y-8 { + --transform-translate-y: 2rem; + } + + .xl\:translate-y-10 { + --transform-translate-y: 2.5rem; + } + + .xl\:translate-y-12 { + --transform-translate-y: 3rem; + } + + .xl\:translate-y-16 { + --transform-translate-y: 4rem; + } + + .xl\:translate-y-20 { + --transform-translate-y: 5rem; + } + + .xl\:translate-y-24 { + --transform-translate-y: 6rem; + } + + .xl\:translate-y-32 { + --transform-translate-y: 8rem; + } + + .xl\:translate-y-40 { + --transform-translate-y: 10rem; + } + + .xl\:translate-y-48 { + --transform-translate-y: 12rem; + } + + .xl\:translate-y-56 { + --transform-translate-y: 14rem; + } + + .xl\:translate-y-64 { + --transform-translate-y: 16rem; + } + + .xl\:translate-y-px { + --transform-translate-y: 1px; + } + + .xl\:-translate-y-1 { + --transform-translate-y: -0.25rem; + } + + .xl\:-translate-y-2 { + --transform-translate-y: -0.5rem; + } + + .xl\:-translate-y-3 { + --transform-translate-y: -0.75rem; + } + + .xl\:-translate-y-4 { + --transform-translate-y: -1rem; + } + + .xl\:-translate-y-5 { + --transform-translate-y: -1.25rem; + } + + .xl\:-translate-y-6 { + --transform-translate-y: -1.5rem; + } + + .xl\:-translate-y-8 { + --transform-translate-y: -2rem; + } + + .xl\:-translate-y-10 { + --transform-translate-y: -2.5rem; + } + + .xl\:-translate-y-12 { + --transform-translate-y: -3rem; + } + + .xl\:-translate-y-16 { + --transform-translate-y: -4rem; + } + + .xl\:-translate-y-20 { + --transform-translate-y: -5rem; + } + + .xl\:-translate-y-24 { + --transform-translate-y: -6rem; + } + + .xl\:-translate-y-32 { + --transform-translate-y: -8rem; + } + + .xl\:-translate-y-40 { + --transform-translate-y: -10rem; + } + + .xl\:-translate-y-48 { + --transform-translate-y: -12rem; + } + + .xl\:-translate-y-56 { + --transform-translate-y: -14rem; + } + + .xl\:-translate-y-64 { + --transform-translate-y: -16rem; + } + + .xl\:-translate-y-px { + --transform-translate-y: -1px; + } + + .xl\:-translate-y-full { + --transform-translate-y: -100%; + } + + .xl\:-translate-y-1\/2 { + --transform-translate-y: -50%; + } + + .xl\:translate-y-1\/2 { + --transform-translate-y: 50%; + } + + .xl\:translate-y-full { + --transform-translate-y: 100%; + } + + .xl\:hover\:translate-x-0:hover { + --transform-translate-x: 0; + } + + .xl\:hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; + } + + .xl\:hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; + } + + .xl\:hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; + } + + .xl\:hover\:translate-x-4:hover { + --transform-translate-x: 1rem; + } + + .xl\:hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; + } + + .xl\:hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; + } + + .xl\:hover\:translate-x-8:hover { + --transform-translate-x: 2rem; + } + + .xl\:hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; + } + + .xl\:hover\:translate-x-12:hover { + --transform-translate-x: 3rem; + } + + .xl\:hover\:translate-x-16:hover { + --transform-translate-x: 4rem; + } + + .xl\:hover\:translate-x-20:hover { + --transform-translate-x: 5rem; + } + + .xl\:hover\:translate-x-24:hover { + --transform-translate-x: 6rem; + } + + .xl\:hover\:translate-x-32:hover { + --transform-translate-x: 8rem; + } + + .xl\:hover\:translate-x-40:hover { + --transform-translate-x: 10rem; + } + + .xl\:hover\:translate-x-48:hover { + --transform-translate-x: 12rem; + } + + .xl\:hover\:translate-x-56:hover { + --transform-translate-x: 14rem; + } + + .xl\:hover\:translate-x-64:hover { + --transform-translate-x: 16rem; + } + + .xl\:hover\:translate-x-px:hover { + --transform-translate-x: 1px; + } + + .xl\:hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; + } + + .xl\:hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; + } + + .xl\:hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; + } + + .xl\:hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; + } + + .xl\:hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; + } + + .xl\:hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; + } + + .xl\:hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; + } + + .xl\:hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; + } + + .xl\:hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; + } + + .xl\:hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; + } + + .xl\:hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; + } + + .xl\:hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; + } + + .xl\:hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; + } + + .xl\:hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; + } + + .xl\:hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; + } + + .xl\:hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; + } + + .xl\:hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; + } + + .xl\:hover\:-translate-x-px:hover { + --transform-translate-x: -1px; + } + + .xl\:hover\:-translate-x-full:hover { + --transform-translate-x: -100%; + } + + .xl\:hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; + } + + .xl\:hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; + } + + .xl\:hover\:translate-x-full:hover { + --transform-translate-x: 100%; + } + + .xl\:hover\:translate-y-0:hover { + --transform-translate-y: 0; + } + + .xl\:hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; + } + + .xl\:hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; + } + + .xl\:hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; + } + + .xl\:hover\:translate-y-4:hover { + --transform-translate-y: 1rem; + } + + .xl\:hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; + } + + .xl\:hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; + } + + .xl\:hover\:translate-y-8:hover { + --transform-translate-y: 2rem; + } + + .xl\:hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; + } + + .xl\:hover\:translate-y-12:hover { + --transform-translate-y: 3rem; + } + + .xl\:hover\:translate-y-16:hover { + --transform-translate-y: 4rem; + } + + .xl\:hover\:translate-y-20:hover { + --transform-translate-y: 5rem; + } + + .xl\:hover\:translate-y-24:hover { + --transform-translate-y: 6rem; + } + + .xl\:hover\:translate-y-32:hover { + --transform-translate-y: 8rem; + } + + .xl\:hover\:translate-y-40:hover { + --transform-translate-y: 10rem; + } + + .xl\:hover\:translate-y-48:hover { + --transform-translate-y: 12rem; + } + + .xl\:hover\:translate-y-56:hover { + --transform-translate-y: 14rem; + } + + .xl\:hover\:translate-y-64:hover { + --transform-translate-y: 16rem; + } + + .xl\:hover\:translate-y-px:hover { + --transform-translate-y: 1px; + } + + .xl\:hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; + } + + .xl\:hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; + } + + .xl\:hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; + } + + .xl\:hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; + } + + .xl\:hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; + } + + .xl\:hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; + } + + .xl\:hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; + } + + .xl\:hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; + } + + .xl\:hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; + } + + .xl\:hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; + } + + .xl\:hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; + } + + .xl\:hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; + } + + .xl\:hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; + } + + .xl\:hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; + } + + .xl\:hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; + } + + .xl\:hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; + } + + .xl\:hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; + } + + .xl\:hover\:-translate-y-px:hover { + --transform-translate-y: -1px; + } + + .xl\:hover\:-translate-y-full:hover { + --transform-translate-y: -100%; + } + + .xl\:hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; + } + + .xl\:hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; + } + + .xl\:hover\:translate-y-full:hover { + --transform-translate-y: 100%; + } + + .xl\:focus\:translate-x-0:focus { + --transform-translate-x: 0; + } + + .xl\:focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; + } + + .xl\:focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; + } + + .xl\:focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; + } + + .xl\:focus\:translate-x-4:focus { + --transform-translate-x: 1rem; + } + + .xl\:focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; + } + + .xl\:focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; + } + + .xl\:focus\:translate-x-8:focus { + --transform-translate-x: 2rem; + } + + .xl\:focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; + } + + .xl\:focus\:translate-x-12:focus { + --transform-translate-x: 3rem; + } + + .xl\:focus\:translate-x-16:focus { + --transform-translate-x: 4rem; + } + + .xl\:focus\:translate-x-20:focus { + --transform-translate-x: 5rem; + } + + .xl\:focus\:translate-x-24:focus { + --transform-translate-x: 6rem; + } + + .xl\:focus\:translate-x-32:focus { + --transform-translate-x: 8rem; + } + + .xl\:focus\:translate-x-40:focus { + --transform-translate-x: 10rem; + } + + .xl\:focus\:translate-x-48:focus { + --transform-translate-x: 12rem; + } + + .xl\:focus\:translate-x-56:focus { + --transform-translate-x: 14rem; + } + + .xl\:focus\:translate-x-64:focus { + --transform-translate-x: 16rem; + } + + .xl\:focus\:translate-x-px:focus { + --transform-translate-x: 1px; + } + + .xl\:focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; + } + + .xl\:focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; + } + + .xl\:focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; + } + + .xl\:focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; + } + + .xl\:focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; + } + + .xl\:focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; + } + + .xl\:focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; + } + + .xl\:focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; + } + + .xl\:focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; + } + + .xl\:focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; + } + + .xl\:focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; + } + + .xl\:focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; + } + + .xl\:focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; + } + + .xl\:focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; + } + + .xl\:focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; + } + + .xl\:focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; + } + + .xl\:focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; + } + + .xl\:focus\:-translate-x-px:focus { + --transform-translate-x: -1px; + } + + .xl\:focus\:-translate-x-full:focus { + --transform-translate-x: -100%; + } + + .xl\:focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; + } + + .xl\:focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; + } + + .xl\:focus\:translate-x-full:focus { + --transform-translate-x: 100%; + } + + .xl\:focus\:translate-y-0:focus { + --transform-translate-y: 0; + } + + .xl\:focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; + } + + .xl\:focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; + } + + .xl\:focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; + } + + .xl\:focus\:translate-y-4:focus { + --transform-translate-y: 1rem; + } + + .xl\:focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; + } + + .xl\:focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; + } + + .xl\:focus\:translate-y-8:focus { + --transform-translate-y: 2rem; + } + + .xl\:focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; + } + + .xl\:focus\:translate-y-12:focus { + --transform-translate-y: 3rem; + } + + .xl\:focus\:translate-y-16:focus { + --transform-translate-y: 4rem; + } + + .xl\:focus\:translate-y-20:focus { + --transform-translate-y: 5rem; + } + + .xl\:focus\:translate-y-24:focus { + --transform-translate-y: 6rem; + } + + .xl\:focus\:translate-y-32:focus { + --transform-translate-y: 8rem; + } + + .xl\:focus\:translate-y-40:focus { + --transform-translate-y: 10rem; + } + + .xl\:focus\:translate-y-48:focus { + --transform-translate-y: 12rem; + } + + .xl\:focus\:translate-y-56:focus { + --transform-translate-y: 14rem; + } + + .xl\:focus\:translate-y-64:focus { + --transform-translate-y: 16rem; + } + + .xl\:focus\:translate-y-px:focus { + --transform-translate-y: 1px; + } + + .xl\:focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; + } + + .xl\:focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; + } + + .xl\:focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; + } + + .xl\:focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; + } + + .xl\:focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; + } + + .xl\:focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; + } + + .xl\:focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; + } + + .xl\:focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; + } + + .xl\:focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; + } + + .xl\:focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; + } + + .xl\:focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; + } + + .xl\:focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; + } + + .xl\:focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; + } + + .xl\:focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; + } + + .xl\:focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; + } + + .xl\:focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; + } + + .xl\:focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; + } + + .xl\:focus\:-translate-y-px:focus { + --transform-translate-y: -1px; + } + + .xl\:focus\:-translate-y-full:focus { + --transform-translate-y: -100%; + } + + .xl\:focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; + } + + .xl\:focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; + } + + .xl\:focus\:translate-y-full:focus { + --transform-translate-y: 100%; + } + + .xl\:skew-x-0 { + --transform-skew-x: 0; + } + + .xl\:skew-x-3 { + --transform-skew-x: 3deg; + } + + .xl\:skew-x-6 { + --transform-skew-x: 6deg; + } + + .xl\:skew-x-12 { + --transform-skew-x: 12deg; + } + + .xl\:-skew-x-12 { + --transform-skew-x: -12deg; + } + + .xl\:-skew-x-6 { + --transform-skew-x: -6deg; + } + + .xl\:-skew-x-3 { + --transform-skew-x: -3deg; + } + + .xl\:skew-y-0 { + --transform-skew-y: 0; + } + + .xl\:skew-y-3 { + --transform-skew-y: 3deg; + } + + .xl\:skew-y-6 { + --transform-skew-y: 6deg; + } + + .xl\:skew-y-12 { + --transform-skew-y: 12deg; + } + + .xl\:-skew-y-12 { + --transform-skew-y: -12deg; + } + + .xl\:-skew-y-6 { + --transform-skew-y: -6deg; + } + + .xl\:-skew-y-3 { + --transform-skew-y: -3deg; + } + + .xl\:hover\:skew-x-0:hover { + --transform-skew-x: 0; + } + + .xl\:hover\:skew-x-3:hover { + --transform-skew-x: 3deg; + } + + .xl\:hover\:skew-x-6:hover { + --transform-skew-x: 6deg; + } + + .xl\:hover\:skew-x-12:hover { + --transform-skew-x: 12deg; + } + + .xl\:hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; + } + + .xl\:hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; + } + + .xl\:hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; + } + + .xl\:hover\:skew-y-0:hover { + --transform-skew-y: 0; + } + + .xl\:hover\:skew-y-3:hover { + --transform-skew-y: 3deg; + } + + .xl\:hover\:skew-y-6:hover { + --transform-skew-y: 6deg; + } + + .xl\:hover\:skew-y-12:hover { + --transform-skew-y: 12deg; + } + + .xl\:hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; + } + + .xl\:hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; + } + + .xl\:hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; + } + + .xl\:focus\:skew-x-0:focus { + --transform-skew-x: 0; + } + + .xl\:focus\:skew-x-3:focus { + --transform-skew-x: 3deg; + } + + .xl\:focus\:skew-x-6:focus { + --transform-skew-x: 6deg; + } + + .xl\:focus\:skew-x-12:focus { + --transform-skew-x: 12deg; + } + + .xl\:focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; + } + + .xl\:focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; + } + + .xl\:focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; + } + + .xl\:focus\:skew-y-0:focus { + --transform-skew-y: 0; + } + + .xl\:focus\:skew-y-3:focus { + --transform-skew-y: 3deg; + } + + .xl\:focus\:skew-y-6:focus { + --transform-skew-y: 6deg; + } + + .xl\:focus\:skew-y-12:focus { + --transform-skew-y: 12deg; + } + + .xl\:focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; + } + + .xl\:focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; + } + + .xl\:focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; + } + + .xl\:transition-none { + transition-property: none; + } + + .xl\:transition-all { + transition-property: all; + } + + .xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + } + + .xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + } + + .xl\:transition-opacity { + transition-property: opacity; + } + + .xl\:transition-shadow { + transition-property: box-shadow; + } + + .xl\:transition-transform { + transition-property: transform; + } + + .xl\:ease-linear { + transition-timing-function: linear; + } + + .xl\:ease-in { + transition-timing-function: cubic-bezier(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; + } +} diff --git a/static/vendor/css/tailwind.output.css b/static/vendor/css/tailwind.output.css index b174bcd6..13f8b7f8 100644 --- a/static/vendor/css/tailwind.output.css +++ b/static/vendor/css/tailwind.output.css @@ -1 +1,65240 @@ -/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none;padding:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{box-sizing:border-box;border:0 solid #d5d6d7}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#a0aec0}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-input::-moz-placeholder{color:#9e9e9e;opacity:1}.form-input:-ms-input-placeholder{color:#9e9e9e;opacity:1}.form-input::-ms-input-placeholder{color:#9e9e9e;opacity:1}.form-input::placeholder{color:#9e9e9e;opacity:1}.form-input:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-textarea::-moz-placeholder{color:#9e9e9e;opacity:1}.form-textarea:-ms-input-placeholder{color:#9e9e9e;opacity:1}.form-textarea::-ms-input-placeholder{color:#9e9e9e;opacity:1}.form-textarea::placeholder{color:#9e9e9e;opacity:1}.form-textarea:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-multiselect:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0aec0'%3E%3Cpath d='M15.3 9.3a1 1 0 011.4 1.4l-4 4a1 1 0 01-1.4 0l-4-4a1 1 0 011.4-1.4l3.3 3.29 3.3-3.3z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;background-repeat:no-repeat;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem;padding:.5rem 2.5rem .5rem .75rem;font-size:1rem;line-height:1.5;background-position:right .5rem center;background-size:1.5em 1.5em}.form-select::-ms-expand{color:#a0aec0;border:none}@media not print{.form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.form-select{padding-right:.75rem}}.form-select:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex-shrink:0;height:1em;width:1em;color:#4299e1;background-color:#fff;border-color:#e2e8f0;border-width:1px;border-radius:.25rem}.form-checkbox:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-checkbox::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-checkbox:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;flex-shrink:0;border-radius:100%;height:1em;width:1em;color:#4299e1;background-color:#fff;border-color:#e2e8f0;border-width:1px}.form-radio:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-radio::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-radio:focus{outline:none;box-shadow:0 0 0 3px rgba(66,153,225,.5);border-color:#63b3ed}.space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.5rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.5rem*var(--space-y-reverse))}.space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0.75rem*var(--space-x-reverse));margin-left:calc(0.75rem*(1 - var(--space-x-reverse)))}.space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1rem*var(--space-y-reverse))}.space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem*var(--space-x-reverse));margin-left:calc(1rem*(1 - var(--space-x-reverse)))}.space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.5rem*var(--space-x-reverse));margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))}.divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px*var(--divide-y-reverse))}.theme-dark .dark\:divide-gray-700>:not(template)~:not(template){--divide-opacity:1;border-color:#24262d;border-color:rgba(36,38,45,var(--divide-opacity))}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.bg-orange-100{--bg-opacity:1;background-color:#feecdc;background-color:rgba(254,236,220,var(--bg-opacity))}.bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.bg-teal-100{--bg-opacity:1;background-color:#d5f5f6;background-color:rgba(213,245,246,var(--bg-opacity))}.bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.bg-teal-600{--bg-opacity:1;background-color:#047481;background-color:rgba(4,116,129,var(--bg-opacity))}.bg-blue-100{--bg-opacity:1;background-color:#e1effe;background-color:rgba(225,239,254,var(--bg-opacity))}.bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.bg-blue-600{--bg-opacity:1;background-color:#1c64f2;background-color:rgba(28,100,242,var(--bg-opacity))}.bg-purple-600{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.hover\:bg-purple-700:hover{--bg-opacity:1;background-color:#6c2bd9;background-color:rgba(108,43,217,var(--bg-opacity))}.focus\:bg-white:focus{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.active\:bg-transparent:active{background-color:transparent}.active\:bg-purple-600:active{--bg-opacity:1;background-color:#7e3af2;background-color:rgba(126,58,242,var(--bg-opacity))}.theme-dark .dark\:bg-gray-700{--bg-opacity:1;background-color:#24262d;background-color:rgba(36,38,45,var(--bg-opacity))}.theme-dark .dark\:bg-gray-800{--bg-opacity:1;background-color:#1a1c23;background-color:rgba(26,28,35,var(--bg-opacity))}.theme-dark .dark\:bg-gray-900{--bg-opacity:1;background-color:#121317;background-color:rgba(18,19,23,var(--bg-opacity))}.theme-dark .dark\:bg-red-600{--bg-opacity:1;background-color:#e02424;background-color:rgba(224,36,36,var(--bg-opacity))}.theme-dark .dark\:bg-red-700{--bg-opacity:1;background-color:#c81e1e;background-color:rgba(200,30,30,var(--bg-opacity))}.theme-dark .dark\:bg-orange-500{--bg-opacity:1;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity))}.theme-dark .dark\:bg-orange-600{--bg-opacity:1;background-color:#d03801;background-color:rgba(208,56,1,var(--bg-opacity))}.theme-dark .dark\:bg-green-500{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.theme-dark .dark\:bg-green-700{--bg-opacity:1;background-color:#046c4e;background-color:rgba(4,108,78,var(--bg-opacity))}.theme-dark .dark\:bg-teal-500{--bg-opacity:1;background-color:#0694a2;background-color:rgba(6,148,162,var(--bg-opacity))}.theme-dark .dark\:bg-blue-500{--bg-opacity:1;background-color:#3f83f8;background-color:rgba(63,131,248,var(--bg-opacity))}.theme-dark .dark\:hover\:bg-gray-800:hover{--bg-opacity:1;background-color:#1a1c23;background-color:rgba(26,28,35,var(--bg-opacity))}.bg-opacity-50{--bg-opacity:0.5}.border-transparent{border-color:transparent}.border-white{--border-opacity:1;border-color:#fff;border-color:rgba(255,255,255,var(--border-opacity))}.border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.border-gray-300{--border-opacity:1;border-color:#d5d6d7;border-color:rgba(213,214,215,var(--border-opacity))}.border-red-600{--border-opacity:1;border-color:#e02424;border-color:rgba(224,36,36,var(--border-opacity))}.border-green-600{--border-opacity:1;border-color:#057a55;border-color:rgba(5,122,85,var(--border-opacity))}.border-purple-600{--border-opacity:1;border-color:#7e3af2;border-color:rgba(126,58,242,var(--border-opacity))}.focus\:border-gray-500:focus{--border-opacity:1;border-color:#707275;border-color:rgba(112,114,117,var(--border-opacity))}.focus\:border-red-400:focus{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.focus\:border-green-400:focus{--border-opacity:1;border-color:#31c48d;border-color:rgba(49,196,141,var(--border-opacity))}.focus\:border-purple-300:focus{--border-opacity:1;border-color:#cabffd;border-color:rgba(202,191,253,var(--border-opacity))}.focus\:border-purple-400:focus{--border-opacity:1;border-color:#ac94fa;border-color:rgba(172,148,250,var(--border-opacity))}.hover\:border-gray-500:hover{--border-opacity:1;border-color:#707275;border-color:rgba(112,114,117,var(--border-opacity))}.theme-dark .dark\:border-gray-600{--border-opacity:1;border-color:#4c4f52;border-color:rgba(76,79,82,var(--border-opacity))}.theme-dark .dark\:border-gray-700{--border-opacity:1;border-color:#24262d;border-color:rgba(36,38,45,var(--border-opacity))}.theme-dark .dark\:border-gray-800{--border-opacity:1;border-color:#1a1c23;border-color:rgba(26,28,35,var(--border-opacity))}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.rounded-t-lg{border-top-left-radius:.5rem}.rounded-r-lg,.rounded-t-lg{border-top-right-radius:.5rem}.rounded-r-lg{border-bottom-right-radius:.5rem}.rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-radius:.5rem}.rounded-tr-lg{border-top-right-radius:.5rem}.rounded-br-lg{border-bottom-right-radius:.5rem}.border-0{border-width:0}.border-2{border-width:2px}.border{border-width:1px}.border-r-0{border-right-width:0}.border-t{border-top-width:1px}.border-b{border-bottom-width:1px}.cursor-not-allowed{cursor:not-allowed}.block{display:block}.inline-block{display:inline-block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.theme-dark .dark\:block{display:block}.theme-dark .dark\:hidden{display:none}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-end{align-items:flex-end}.items-center{align-items:center}.justify-end{justify-content:flex-end}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-8{height:2rem}.h-12{height:3rem}.h-32{height:8rem}.h-full{height:100%}.h-screen{height:100vh}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-6xl{font-size:4rem}.leading-5{line-height:1.25rem}.leading-none{line-height:1}.leading-tight{line-height:1.25}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mx-auto{margin-left:auto;margin-right:auto}.-mx-6{margin-left:-1.5rem;margin-right:-1.5rem}.mt-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.mb-2{margin-bottom:.5rem}.ml-2{margin-left:.5rem}.mr-3{margin-right:.75rem}.ml-3{margin-left:.75rem}.mt-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-4{margin-bottom:1rem}.ml-4{margin-left:1rem}.mr-5{margin-right: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-8{margin-top:2rem}.mb-8{margin-bottom:2rem}.mt-16{margin-top:4rem}.-mr-1{margin-right:-.25rem}.-ml-1{margin-left:-.25rem}.-mb-4{margin-bottom:-1rem}.max-h-0{max-height:0}.max-h-xl{max-height:36rem}.max-w-xl{max-width:36rem}.max-w-2xl{max-width:42rem}.max-w-4xl{max-width:56rem}.min-h-screen{min-height:100vh}.min-w-0{min-width:0}.object-cover{-o-object-fit:cover;object-fit:cover}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-100{opacity:1}.focus\:outline-none:focus{outline:0}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.p-1{padding:.25rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.pr-2{padding-right:.5rem}.pl-2{padding-left:.5rem}.pl-8{padding-left:2rem}.pr-10{padding-right:2.5rem}.pl-10{padding-left:2.5rem}.pb-16{padding-bottom:4rem}.pr-20{padding-right:5rem}.pl-20{padding-left:5rem}.placeholder-gray-600::-moz-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.placeholder-gray-600:-ms-input-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.placeholder-gray-600::-ms-input-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.placeholder-gray-600::placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus::-moz-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.focus\:placeholder-gray-500:focus::placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:placeholder-gray-500::-moz-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:placeholder-gray-500:-ms-input-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:placeholder-gray-500::-ms-input-placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:placeholder-gray-500::placeholder{--placeholder-opacity:1;color:#707275;color:rgba(112,114,117,var(--placeholder-opacity))}.theme-dark .dark\:focus\:placeholder-gray-600:focus::-moz-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.theme-dark .dark\:focus\:placeholder-gray-600:focus:-ms-input-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.theme-dark .dark\:focus\:placeholder-gray-600:focus::-ms-input-placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.theme-dark .dark\:focus\:placeholder-gray-600:focus::placeholder{--placeholder-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--placeholder-opacity))}.pointer-events-none{pointer-events:none}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.top-0{top:0}.right-0{right:0}.left-0{left:0}.shadow-xs{box-shadow:0 0 0 1px rgba(0,0,0,.05)}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.fill-current{fill:currentColor}.text-left{text-align:left}.text-center{text-align:center}.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#9e9e9e;color:rgba(158,158,158,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#707275;color:rgba(112,114,117,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#4c4f52;color:rgba(76,79,82,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#24262d;color:rgba(36,38,45,var(--text-opacity))}.text-gray-800{--text-opacity:1;color:#1a1c23;color:rgba(26,28,35,var(--text-opacity))}.text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.text-red-700{--text-opacity:1;color:#c81e1e;color:rgba(200,30,30,var(--text-opacity))}.text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.text-orange-700{--text-opacity:1;color:#b43403;color:rgba(180,52,3,var(--text-opacity))}.text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.text-green-700{--text-opacity:1;color:#046c4e;color:rgba(4,108,78,var(--text-opacity))}.text-teal-500{--text-opacity:1;color:#0694a2;color:rgba(6,148,162,var(--text-opacity))}.text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.text-purple-100{--text-opacity:1;color:#edebfe;color:rgba(237,235,254,var(--text-opacity))}.text-purple-200{--text-opacity:1;color:#dcd7fe;color:rgba(220,215,254,var(--text-opacity))}.text-purple-600{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.focus-within\:text-purple-500:focus-within{--text-opacity:1;color:#9061f9;color:rgba(144,97,249,var(--text-opacity))}.focus-within\:text-purple-600:focus-within{--text-opacity:1;color:#7e3af2;color:rgba(126,58,242,var(--text-opacity))}.hover\:text-gray-700:hover{--text-opacity:1;color:#24262d;color:rgba(36,38,45,var(--text-opacity))}.hover\:text-gray-800:hover{--text-opacity:1;color:#1a1c23;color:rgba(26,28,35,var(--text-opacity))}.active\:text-gray-500:active{--text-opacity:1;color:#707275;color:rgba(112,114,117,var(--text-opacity))}.theme-dark .dark\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.theme-dark .dark\:text-gray-100{--text-opacity:1;color:#f4f5f7;color:rgba(244,245,247,var(--text-opacity))}.theme-dark .dark\:text-gray-200{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.theme-dark .dark\:text-gray-300{--text-opacity:1;color:#d5d6d7;color:rgba(213,214,215,var(--text-opacity))}.theme-dark .dark\:text-gray-400{--text-opacity:1;color:#9e9e9e;color:rgba(158,158,158,var(--text-opacity))}.theme-dark .dark\:text-red-100{--text-opacity:1;color:#fde8e8;color:rgba(253,232,232,var(--text-opacity))}.theme-dark .dark\:text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.theme-dark .dark\:text-orange-100{--text-opacity:1;color:#feecdc;color:rgba(254,236,220,var(--text-opacity))}.theme-dark .dark\:text-green-100{--text-opacity:1;color:#def7ec;color:rgba(222,247,236,var(--text-opacity))}.theme-dark .dark\:text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.theme-dark .dark\:text-teal-100{--text-opacity:1;color:#d5f5f6;color:rgba(213,245,246,var(--text-opacity))}.theme-dark .dark\:text-blue-100{--text-opacity:1;color:#e1effe;color:rgba(225,239,254,var(--text-opacity))}.theme-dark .dark\:text-purple-300{--text-opacity:1;color:#cabffd;color:rgba(202,191,253,var(--text-opacity))}.theme-dark .dark\:text-purple-400{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.theme-dark .dark\:focus-within\:text-purple-400:focus-within{--text-opacity:1;color:#ac94fa;color:rgba(172,148,250,var(--text-opacity))}.theme-dark .dark\:hover\:text-gray-200:hover{--text-opacity:1;color:#e5e7eb;color:rgba(229,231,235,var(--text-opacity))}.uppercase{text-transform:uppercase}.hover\:underline:hover,.underline{text-decoration:underline}.tracking-wide{letter-spacing:.025em}.align-middle{vertical-align:middle}.whitespace-no-wrap{white-space:nowrap}.w-1{width:.25rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-12{width:3rem}.w-56{width:14rem}.w-64{width:16rem}.w-full{width:100%}.z-10{z-index:10}.z-20{z-index:20}.z-30{z-index:30}.gap-6{grid-gap:1.5rem;gap:1.5rem}.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}.transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.translate-x-1{--transform-translate-x:0.25rem}.-translate-x-20{--transform-translate-x:-5rem}.-translate-y-1{--transform-translate-y:-0.25rem}.translate-y-1\/2{--transform-translate-y:50%}.transition-all{transition-property:all}.transition{transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform}.transition-colors{transition-property:background-color,border-color,color,fill,stroke}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-150{transition-duration:.15s}.duration-300{transition-duration:.3s}.focus\:shadow-outline-gray:focus{box-shadow:0 0 0 3px rgba(213,214,215,.45)}.focus\:shadow-outline-red:focus{box-shadow:0 0 0 3px rgba(248,180,180,.45)}.focus\:shadow-outline-green:focus{box-shadow:0 0 0 3px rgba(132,225,188,.45)}.focus\:shadow-outline-purple:focus{box-shadow:0 0 0 3px rgba(202,191,253,.45)}.theme-dark .dark\:focus\:shadow-outline-gray:focus{box-shadow:0 0 0 3px rgba(213,214,215,.45)}@media (min-width:640px){.sm\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px*(1 - var(--space-y-reverse)));margin-bottom:calc(0px*var(--space-y-reverse))}.sm\:space-x-6>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1.5rem*var(--space-x-reverse));margin-left:calc(1.5rem*(1 - var(--space-x-reverse)))}.sm\:rounded-lg{border-radius:.5rem}.sm\:flex-row{flex-direction:row}.sm\:items-center{align-items:center}.sm\:justify-end{justify-content:flex-end}.sm\:justify-center{justify-content:center}.sm\:m-4{margin:1rem}.sm\:mt-auto{margin-top:auto}.sm\:max-w-xl{max-width:36rem}.sm\:p-12{padding:3rem}.sm\:py-2{padding-top:.5rem;padding-bottom:.5rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:w-auto{width:auto}.sm\:grid-cols-9{grid-template-columns:repeat(9,minmax(0,1fr))}}@media (min-width:768px){.md\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem*var(--space-x-reverse));margin-left:calc(1rem*(1 - var(--space-x-reverse)))}.md\:block{display:block}.md\:hidden{display:none}.md\:flex-row{flex-direction:row}.md\:items-end{align-items:flex-end}.md\:h-auto{height:auto}.md\:w-1\/2{width:50%}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.lg\:mr-32{margin-right:8rem}}@media (min-width:1280px){.xl\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}} \ No newline at end of file +/* Tailwind CSS source file for admin panel */ + +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 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; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, 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; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* 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 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 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. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-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. + */ + +[type="search"]::-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 Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +} + +/** + * 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; + padding: 0; +} + +/** + * 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, 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 */ +} + +/** + * 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: #d5d6d7; /* 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::-moz-placeholder, textarea::-moz-placeholder { + color: #a0aec0; +} + +input:-ms-input-placeholder, textarea:-ms-input-placeholder { + color: #a0aec0; +} + +input::-ms-input-placeholder, textarea::-ms-input-placeholder { + color: #a0aec0; +} + +input::placeholder, +textarea::placeholder { + color: #a0aec0; +} + +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: 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; + } +} + +.form-input { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5; +} + +.form-input::-moz-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-input:-ms-input-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-input::-ms-input-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-input::placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-input:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-textarea { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5; +} + +.form-textarea::-moz-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-textarea:-ms-input-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-textarea::-ms-input-placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-textarea::placeholder { + color: #9e9e9e; + opacity: 1; +} + +.form-textarea:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-multiselect { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; + padding-top: 0.5rem; + padding-right: 0.75rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5; +} + +.form-multiselect:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-select { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a0aec0'%3e%3cpath d='M15.3 9.3a1 1 0 0 1 1.4 1.4l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.4l3.3 3.29 3.3-3.3z'/%3e%3c/svg%3e"); + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-print-color-adjust: exact; + color-adjust: exact; + background-repeat: no-repeat; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; + padding-top: 0.5rem; + padding-right: 2.5rem; + padding-bottom: 0.5rem; + padding-left: 0.75rem; + font-size: 1rem; + line-height: 1.5; + background-position: right 0.5rem center; + background-size: 1.5em 1.5em; +} + +.form-select::-ms-expand { + color: #a0aec0; + border: none; +} + +@media not print { + .form-select::-ms-expand { + display: none; + } +} + +@media print and (-ms-high-contrast: active), print and (-ms-high-contrast: none) { + .form-select { + padding-right: 0.75rem; + } +} + +.form-select:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-checkbox { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-print-color-adjust: exact; + color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + flex-shrink: 0; + height: 1em; + width: 1em; + color: #4299e1; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; + border-radius: 0.25rem; +} + +.form-checkbox:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.707 7.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0l4-4a1 1 0 0 0-1.414-1.414L7 8.586 5.707 7.293z'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +@media not print { + .form-checkbox::-ms-check { + border-width: 1px; + color: transparent; + background: inherit; + border-color: inherit; + border-radius: inherit; + } +} + +.form-checkbox:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.form-radio { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-print-color-adjust: exact; + color-adjust: exact; + display: inline-block; + vertical-align: middle; + background-origin: border-box; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + flex-shrink: 0; + border-radius: 100%; + height: 1em; + width: 1em; + color: #4299e1; + background-color: #fff; + border-color: #e2e8f0; + border-width: 1px; +} + +.form-radio:checked { + background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e"); + border-color: transparent; + background-color: currentColor; + background-size: 100% 100%; + background-position: center; + background-repeat: no-repeat; +} + +@media not print { + .form-radio::-ms-check { + border-width: 1px; + color: transparent; + background: inherit; + border-color: inherit; + border-radius: inherit; + } +} + +.form-radio:focus { + outline: none; + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); + border-color: #63b3ed; +} + +.space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); +} + +.space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); +} + +.space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); +} + +.space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); +} + +.space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); +} + +.space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); +} + +.space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); +} + +.space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); +} + +.space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); +} + +.space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); +} + +.space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); +} + +.space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); +} + +.space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); +} + +.space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); +} + +.space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); +} + +.space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); +} + +.space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); +} + +.space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); +} + +.space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); +} + +.space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); +} + +.space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); +} + +.space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); +} + +.-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); +} + +.-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); +} + +.-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); +} + +.-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); +} + +.-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); +} + +.-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); +} + +.-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); +} + +.-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); +} + +.-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); +} + +.-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); +} + +.-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); +} + +.-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); +} + +.-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); +} + +.-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); +} + +.-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); +} + +.-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); +} + +.-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); +} + +.-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); +} + +.-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); +} + +.-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); +} + +.space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; +} + +.space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; +} + +.divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); +} + +.divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); +} + +.divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); +} + +.divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); +} + +.divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); +} + +.divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); +} + +.divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; +} + +.divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; +} + +.divide-transparent > :not(template) ~ :not(template) { + border-color: transparent; +} + +.divide-white > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--divide-opacity)); +} + +.divide-black > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--divide-opacity)); +} + +.divide-gray-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--divide-opacity)); +} + +.divide-gray-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--divide-opacity)); +} + +.divide-gray-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--divide-opacity)); +} + +.divide-gray-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--divide-opacity)); +} + +.divide-gray-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--divide-opacity)); +} + +.divide-gray-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--divide-opacity)); +} + +.divide-gray-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--divide-opacity)); +} + +.divide-gray-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--divide-opacity)); +} + +.divide-gray-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--divide-opacity)); +} + +.divide-gray-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--divide-opacity)); +} + +.divide-cool-gray-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--divide-opacity)); +} + +.divide-cool-gray-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--divide-opacity)); +} + +.divide-cool-gray-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--divide-opacity)); +} + +.divide-cool-gray-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--divide-opacity)); +} + +.divide-cool-gray-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--divide-opacity)); +} + +.divide-cool-gray-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--divide-opacity)); +} + +.divide-cool-gray-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--divide-opacity)); +} + +.divide-cool-gray-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--divide-opacity)); +} + +.divide-cool-gray-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--divide-opacity)); +} + +.divide-cool-gray-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--divide-opacity)); +} + +.divide-red-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--divide-opacity)); +} + +.divide-red-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--divide-opacity)); +} + +.divide-red-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--divide-opacity)); +} + +.divide-red-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--divide-opacity)); +} + +.divide-red-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--divide-opacity)); +} + +.divide-red-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--divide-opacity)); +} + +.divide-red-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--divide-opacity)); +} + +.divide-red-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--divide-opacity)); +} + +.divide-red-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--divide-opacity)); +} + +.divide-red-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--divide-opacity)); +} + +.divide-orange-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--divide-opacity)); +} + +.divide-orange-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--divide-opacity)); +} + +.divide-orange-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--divide-opacity)); +} + +.divide-orange-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--divide-opacity)); +} + +.divide-orange-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--divide-opacity)); +} + +.divide-orange-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--divide-opacity)); +} + +.divide-orange-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--divide-opacity)); +} + +.divide-orange-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--divide-opacity)); +} + +.divide-orange-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--divide-opacity)); +} + +.divide-orange-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--divide-opacity)); +} + +.divide-yellow-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--divide-opacity)); +} + +.divide-yellow-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--divide-opacity)); +} + +.divide-yellow-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--divide-opacity)); +} + +.divide-yellow-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--divide-opacity)); +} + +.divide-yellow-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--divide-opacity)); +} + +.divide-yellow-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--divide-opacity)); +} + +.divide-yellow-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--divide-opacity)); +} + +.divide-yellow-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--divide-opacity)); +} + +.divide-yellow-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--divide-opacity)); +} + +.divide-yellow-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--divide-opacity)); +} + +.divide-green-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--divide-opacity)); +} + +.divide-green-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--divide-opacity)); +} + +.divide-green-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--divide-opacity)); +} + +.divide-green-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--divide-opacity)); +} + +.divide-green-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--divide-opacity)); +} + +.divide-green-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--divide-opacity)); +} + +.divide-green-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--divide-opacity)); +} + +.divide-green-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--divide-opacity)); +} + +.divide-green-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--divide-opacity)); +} + +.divide-green-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--divide-opacity)); +} + +.divide-teal-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--divide-opacity)); +} + +.divide-teal-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--divide-opacity)); +} + +.divide-teal-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--divide-opacity)); +} + +.divide-teal-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--divide-opacity)); +} + +.divide-teal-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--divide-opacity)); +} + +.divide-teal-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--divide-opacity)); +} + +.divide-teal-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--divide-opacity)); +} + +.divide-teal-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--divide-opacity)); +} + +.divide-teal-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--divide-opacity)); +} + +.divide-teal-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--divide-opacity)); +} + +.divide-blue-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--divide-opacity)); +} + +.divide-blue-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--divide-opacity)); +} + +.divide-blue-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--divide-opacity)); +} + +.divide-blue-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--divide-opacity)); +} + +.divide-blue-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--divide-opacity)); +} + +.divide-blue-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--divide-opacity)); +} + +.divide-blue-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--divide-opacity)); +} + +.divide-blue-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--divide-opacity)); +} + +.divide-blue-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--divide-opacity)); +} + +.divide-blue-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--divide-opacity)); +} + +.divide-indigo-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--divide-opacity)); +} + +.divide-indigo-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--divide-opacity)); +} + +.divide-indigo-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--divide-opacity)); +} + +.divide-indigo-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--divide-opacity)); +} + +.divide-indigo-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--divide-opacity)); +} + +.divide-indigo-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--divide-opacity)); +} + +.divide-indigo-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--divide-opacity)); +} + +.divide-indigo-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--divide-opacity)); +} + +.divide-indigo-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--divide-opacity)); +} + +.divide-indigo-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--divide-opacity)); +} + +.divide-purple-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--divide-opacity)); +} + +.divide-purple-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--divide-opacity)); +} + +.divide-purple-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--divide-opacity)); +} + +.divide-purple-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--divide-opacity)); +} + +.divide-purple-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--divide-opacity)); +} + +.divide-purple-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--divide-opacity)); +} + +.divide-purple-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--divide-opacity)); +} + +.divide-purple-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--divide-opacity)); +} + +.divide-purple-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--divide-opacity)); +} + +.divide-purple-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--divide-opacity)); +} + +.divide-pink-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--divide-opacity)); +} + +.divide-pink-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--divide-opacity)); +} + +.divide-pink-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--divide-opacity)); +} + +.divide-pink-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--divide-opacity)); +} + +.divide-pink-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--divide-opacity)); +} + +.divide-pink-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--divide-opacity)); +} + +.divide-pink-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--divide-opacity)); +} + +.divide-pink-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--divide-opacity)); +} + +.divide-pink-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--divide-opacity)); +} + +.divide-pink-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-transparent > :not(template) ~ :not(template) { + border-color: transparent; +} + +.theme-dark .dark\:divide-white > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-black > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-gray-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-cool-gray-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-red-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-orange-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-yellow-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-green-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-teal-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-blue-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-indigo-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-purple-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-50 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-200 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-300 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-400 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-500 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-600 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-700 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-800 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--divide-opacity)); +} + +.theme-dark .dark\:divide-pink-900 > :not(template) ~ :not(template) { + --divide-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--divide-opacity)); +} + +.divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; +} + +.divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; +} + +.divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; +} + +.divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; +} + +.divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +.not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; +} + +.focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +.focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; +} + +.appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} + +.bg-fixed { + background-attachment: fixed; +} + +.bg-local { + background-attachment: local; +} + +.bg-scroll { + background-attachment: scroll; +} + +.bg-transparent { + background-color: transparent; +} + +.bg-white { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.bg-black { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.bg-gray-50 { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.bg-gray-100 { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.bg-gray-200 { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.bg-gray-300 { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.bg-gray-400 { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.bg-gray-500 { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.bg-gray-600 { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.bg-gray-700 { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.bg-gray-800 { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.bg-gray-900 { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.bg-cool-gray-50 { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.bg-cool-gray-100 { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.bg-cool-gray-200 { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.bg-cool-gray-300 { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.bg-cool-gray-400 { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.bg-cool-gray-500 { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.bg-cool-gray-600 { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.bg-cool-gray-700 { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.bg-cool-gray-800 { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.bg-cool-gray-900 { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.bg-red-50 { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.bg-red-100 { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.bg-red-200 { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.bg-red-300 { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.bg-red-400 { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.bg-red-500 { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.bg-red-600 { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.bg-red-700 { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.bg-red-800 { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.bg-red-900 { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.bg-orange-50 { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.bg-orange-100 { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.bg-orange-200 { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.bg-orange-300 { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.bg-orange-400 { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.bg-orange-500 { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.bg-orange-600 { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.bg-orange-700 { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.bg-orange-800 { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.bg-orange-900 { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.bg-yellow-50 { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.bg-yellow-100 { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.bg-yellow-200 { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.bg-yellow-300 { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.bg-yellow-400 { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.bg-yellow-500 { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.bg-yellow-600 { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.bg-yellow-700 { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.bg-yellow-800 { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.bg-yellow-900 { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.bg-green-50 { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.bg-green-100 { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.bg-green-200 { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.bg-green-300 { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.bg-green-400 { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.bg-green-500 { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.bg-green-600 { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.bg-green-700 { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.bg-green-800 { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.bg-green-900 { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.bg-teal-50 { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.bg-teal-100 { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.bg-teal-200 { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.bg-teal-300 { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.bg-teal-400 { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.bg-teal-500 { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.bg-teal-600 { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.bg-teal-700 { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.bg-teal-800 { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.bg-teal-900 { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.bg-blue-50 { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.bg-blue-100 { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.bg-blue-200 { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.bg-blue-300 { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.bg-blue-400 { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.bg-blue-500 { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.bg-blue-600 { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.bg-blue-700 { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.bg-blue-800 { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.bg-blue-900 { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.bg-indigo-50 { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.bg-indigo-100 { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.bg-indigo-200 { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.bg-indigo-300 { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.bg-indigo-400 { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.bg-indigo-500 { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.bg-indigo-600 { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.bg-indigo-700 { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.bg-indigo-800 { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.bg-indigo-900 { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.bg-purple-50 { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.bg-purple-100 { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.bg-purple-200 { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.bg-purple-300 { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.bg-purple-400 { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.bg-purple-500 { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.bg-purple-600 { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.bg-purple-700 { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.bg-purple-800 { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.bg-purple-900 { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.bg-pink-50 { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.bg-pink-100 { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.bg-pink-200 { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.bg-pink-300 { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.bg-pink-400 { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.bg-pink-500 { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.bg-pink-600 { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.bg-pink-700 { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.bg-pink-800 { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.bg-pink-900 { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.hover\:bg-transparent:hover { + background-color: transparent; +} + +.hover\:bg-white:hover { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.hover\:bg-black:hover { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.hover\:bg-gray-50:hover { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.hover\:bg-gray-100:hover { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.hover\:bg-gray-200:hover { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.hover\:bg-gray-300:hover { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.hover\:bg-gray-400:hover { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.hover\:bg-gray-500:hover { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.hover\:bg-gray-600:hover { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.hover\:bg-gray-700:hover { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.hover\:bg-gray-800:hover { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.hover\:bg-gray-900:hover { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-50:hover { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-100:hover { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-200:hover { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-300:hover { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-400:hover { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-500:hover { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-600:hover { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-700:hover { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-800:hover { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.hover\:bg-cool-gray-900:hover { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.hover\:bg-red-50:hover { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.hover\:bg-red-100:hover { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.hover\:bg-red-200:hover { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.hover\:bg-red-300:hover { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.hover\:bg-red-400:hover { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.hover\:bg-red-500:hover { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.hover\:bg-red-600:hover { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.hover\:bg-red-700:hover { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.hover\:bg-red-800:hover { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.hover\:bg-red-900:hover { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.hover\:bg-orange-50:hover { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.hover\:bg-orange-100:hover { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.hover\:bg-orange-200:hover { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.hover\:bg-orange-300:hover { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.hover\:bg-orange-400:hover { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.hover\:bg-orange-500:hover { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.hover\:bg-orange-600:hover { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.hover\:bg-orange-700:hover { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.hover\:bg-orange-800:hover { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.hover\:bg-orange-900:hover { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.hover\:bg-yellow-50:hover { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.hover\:bg-yellow-100:hover { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.hover\:bg-yellow-200:hover { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.hover\:bg-yellow-300:hover { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.hover\:bg-yellow-400:hover { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.hover\:bg-yellow-500:hover { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.hover\:bg-yellow-600:hover { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.hover\:bg-yellow-700:hover { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.hover\:bg-yellow-800:hover { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.hover\:bg-yellow-900:hover { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.hover\:bg-green-50:hover { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.hover\:bg-green-100:hover { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.hover\:bg-green-200:hover { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.hover\:bg-green-300:hover { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.hover\:bg-green-400:hover { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.hover\:bg-green-500:hover { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.hover\:bg-green-600:hover { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.hover\:bg-green-700:hover { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.hover\:bg-green-800:hover { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.hover\:bg-green-900:hover { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.hover\:bg-teal-50:hover { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.hover\:bg-teal-100:hover { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.hover\:bg-teal-200:hover { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.hover\:bg-teal-300:hover { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.hover\:bg-teal-400:hover { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.hover\:bg-teal-500:hover { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.hover\:bg-teal-600:hover { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.hover\:bg-teal-700:hover { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.hover\:bg-teal-800:hover { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.hover\:bg-teal-900:hover { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.hover\:bg-blue-50:hover { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.hover\:bg-blue-100:hover { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.hover\:bg-blue-200:hover { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.hover\:bg-blue-300:hover { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.hover\:bg-blue-400:hover { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.hover\:bg-blue-500:hover { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.hover\:bg-blue-600:hover { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.hover\:bg-blue-700:hover { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.hover\:bg-blue-800:hover { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.hover\:bg-blue-900:hover { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.hover\:bg-indigo-50:hover { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.hover\:bg-indigo-100:hover { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.hover\:bg-indigo-200:hover { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.hover\:bg-indigo-300:hover { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.hover\:bg-indigo-400:hover { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.hover\:bg-indigo-500:hover { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.hover\:bg-indigo-600:hover { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.hover\:bg-indigo-700:hover { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.hover\:bg-indigo-800:hover { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.hover\:bg-indigo-900:hover { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.hover\:bg-purple-50:hover { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.hover\:bg-purple-100:hover { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.hover\:bg-purple-200:hover { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.hover\:bg-purple-300:hover { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.hover\:bg-purple-400:hover { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.hover\:bg-purple-500:hover { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.hover\:bg-purple-600:hover { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.hover\:bg-purple-700:hover { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.hover\:bg-purple-800:hover { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.hover\:bg-purple-900:hover { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.hover\:bg-pink-50:hover { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.hover\:bg-pink-100:hover { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.hover\:bg-pink-200:hover { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.hover\:bg-pink-300:hover { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.hover\:bg-pink-400:hover { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.hover\:bg-pink-500:hover { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.hover\:bg-pink-600:hover { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.hover\:bg-pink-700:hover { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.hover\:bg-pink-800:hover { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.hover\:bg-pink-900:hover { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.focus\:bg-transparent:focus { + background-color: transparent; +} + +.focus\:bg-white:focus { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.focus\:bg-black:focus { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.focus\:bg-gray-50:focus { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.focus\:bg-gray-100:focus { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.focus\:bg-gray-200:focus { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.focus\:bg-gray-300:focus { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.focus\:bg-gray-400:focus { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.focus\:bg-gray-500:focus { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.focus\:bg-gray-600:focus { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.focus\:bg-gray-700:focus { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.focus\:bg-gray-800:focus { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.focus\:bg-gray-900:focus { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-50:focus { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-100:focus { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-200:focus { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-300:focus { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-400:focus { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-500:focus { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-600:focus { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-700:focus { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-800:focus { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.focus\:bg-cool-gray-900:focus { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.focus\:bg-red-50:focus { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.focus\:bg-red-100:focus { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.focus\:bg-red-200:focus { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.focus\:bg-red-300:focus { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.focus\:bg-red-400:focus { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.focus\:bg-red-500:focus { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.focus\:bg-red-600:focus { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.focus\:bg-red-700:focus { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.focus\:bg-red-800:focus { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.focus\:bg-red-900:focus { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.focus\:bg-orange-50:focus { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.focus\:bg-orange-100:focus { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.focus\:bg-orange-200:focus { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.focus\:bg-orange-300:focus { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.focus\:bg-orange-400:focus { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.focus\:bg-orange-500:focus { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.focus\:bg-orange-600:focus { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.focus\:bg-orange-700:focus { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.focus\:bg-orange-800:focus { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.focus\:bg-orange-900:focus { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.focus\:bg-yellow-50:focus { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.focus\:bg-yellow-100:focus { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.focus\:bg-yellow-200:focus { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.focus\:bg-yellow-300:focus { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.focus\:bg-yellow-400:focus { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.focus\:bg-yellow-500:focus { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.focus\:bg-yellow-600:focus { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.focus\:bg-yellow-700:focus { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.focus\:bg-yellow-800:focus { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.focus\:bg-yellow-900:focus { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.focus\:bg-green-50:focus { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.focus\:bg-green-100:focus { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.focus\:bg-green-200:focus { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.focus\:bg-green-300:focus { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.focus\:bg-green-400:focus { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.focus\:bg-green-500:focus { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.focus\:bg-green-600:focus { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.focus\:bg-green-700:focus { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.focus\:bg-green-800:focus { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.focus\:bg-green-900:focus { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.focus\:bg-teal-50:focus { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.focus\:bg-teal-100:focus { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.focus\:bg-teal-200:focus { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.focus\:bg-teal-300:focus { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.focus\:bg-teal-400:focus { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.focus\:bg-teal-500:focus { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.focus\:bg-teal-600:focus { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.focus\:bg-teal-700:focus { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.focus\:bg-teal-800:focus { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.focus\:bg-teal-900:focus { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.focus\:bg-blue-50:focus { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.focus\:bg-blue-100:focus { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.focus\:bg-blue-200:focus { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.focus\:bg-blue-300:focus { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.focus\:bg-blue-400:focus { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.focus\:bg-blue-500:focus { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.focus\:bg-blue-600:focus { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.focus\:bg-blue-700:focus { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.focus\:bg-blue-800:focus { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.focus\:bg-blue-900:focus { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.focus\:bg-indigo-50:focus { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.focus\:bg-indigo-100:focus { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.focus\:bg-indigo-200:focus { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.focus\:bg-indigo-300:focus { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.focus\:bg-indigo-400:focus { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.focus\:bg-indigo-500:focus { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.focus\:bg-indigo-600:focus { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.focus\:bg-indigo-700:focus { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.focus\:bg-indigo-800:focus { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.focus\:bg-indigo-900:focus { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.focus\:bg-purple-50:focus { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.focus\:bg-purple-100:focus { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.focus\:bg-purple-200:focus { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.focus\:bg-purple-300:focus { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.focus\:bg-purple-400:focus { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.focus\:bg-purple-500:focus { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.focus\:bg-purple-600:focus { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.focus\:bg-purple-700:focus { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.focus\:bg-purple-800:focus { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.focus\:bg-purple-900:focus { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.focus\:bg-pink-50:focus { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.focus\:bg-pink-100:focus { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.focus\:bg-pink-200:focus { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.focus\:bg-pink-300:focus { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.focus\:bg-pink-400:focus { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.focus\:bg-pink-500:focus { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.focus\:bg-pink-600:focus { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.focus\:bg-pink-700:focus { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.focus\:bg-pink-800:focus { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.focus\:bg-pink-900:focus { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.active\:bg-transparent:active { + background-color: transparent; +} + +.active\:bg-white:active { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.active\:bg-black:active { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.active\:bg-gray-50:active { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.active\:bg-gray-100:active { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.active\:bg-gray-200:active { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.active\:bg-gray-300:active { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.active\:bg-gray-400:active { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.active\:bg-gray-500:active { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.active\:bg-gray-600:active { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.active\:bg-gray-700:active { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.active\:bg-gray-800:active { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.active\:bg-gray-900:active { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.active\:bg-cool-gray-50:active { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.active\:bg-cool-gray-100:active { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.active\:bg-cool-gray-200:active { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.active\:bg-cool-gray-300:active { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.active\:bg-cool-gray-400:active { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.active\:bg-cool-gray-500:active { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.active\:bg-cool-gray-600:active { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.active\:bg-cool-gray-700:active { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.active\:bg-cool-gray-800:active { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.active\:bg-cool-gray-900:active { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.active\:bg-red-50:active { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.active\:bg-red-100:active { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.active\:bg-red-200:active { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.active\:bg-red-300:active { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.active\:bg-red-400:active { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.active\:bg-red-500:active { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.active\:bg-red-600:active { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.active\:bg-red-700:active { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.active\:bg-red-800:active { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.active\:bg-red-900:active { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.active\:bg-orange-50:active { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.active\:bg-orange-100:active { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.active\:bg-orange-200:active { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.active\:bg-orange-300:active { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.active\:bg-orange-400:active { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.active\:bg-orange-500:active { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.active\:bg-orange-600:active { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.active\:bg-orange-700:active { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.active\:bg-orange-800:active { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.active\:bg-orange-900:active { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.active\:bg-yellow-50:active { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.active\:bg-yellow-100:active { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.active\:bg-yellow-200:active { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.active\:bg-yellow-300:active { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.active\:bg-yellow-400:active { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.active\:bg-yellow-500:active { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.active\:bg-yellow-600:active { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.active\:bg-yellow-700:active { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.active\:bg-yellow-800:active { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.active\:bg-yellow-900:active { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.active\:bg-green-50:active { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.active\:bg-green-100:active { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.active\:bg-green-200:active { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.active\:bg-green-300:active { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.active\:bg-green-400:active { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.active\:bg-green-500:active { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.active\:bg-green-600:active { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.active\:bg-green-700:active { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.active\:bg-green-800:active { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.active\:bg-green-900:active { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.active\:bg-teal-50:active { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.active\:bg-teal-100:active { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.active\:bg-teal-200:active { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.active\:bg-teal-300:active { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.active\:bg-teal-400:active { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.active\:bg-teal-500:active { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.active\:bg-teal-600:active { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.active\:bg-teal-700:active { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.active\:bg-teal-800:active { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.active\:bg-teal-900:active { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.active\:bg-blue-50:active { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.active\:bg-blue-100:active { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.active\:bg-blue-200:active { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.active\:bg-blue-300:active { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.active\:bg-blue-400:active { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.active\:bg-blue-500:active { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.active\:bg-blue-600:active { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.active\:bg-blue-700:active { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.active\:bg-blue-800:active { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.active\:bg-blue-900:active { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.active\:bg-indigo-50:active { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.active\:bg-indigo-100:active { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.active\:bg-indigo-200:active { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.active\:bg-indigo-300:active { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.active\:bg-indigo-400:active { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.active\:bg-indigo-500:active { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.active\:bg-indigo-600:active { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.active\:bg-indigo-700:active { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.active\:bg-indigo-800:active { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.active\:bg-indigo-900:active { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.active\:bg-purple-50:active { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.active\:bg-purple-100:active { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.active\:bg-purple-200:active { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.active\:bg-purple-300:active { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.active\:bg-purple-400:active { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.active\:bg-purple-500:active { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.active\:bg-purple-600:active { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.active\:bg-purple-700:active { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.active\:bg-purple-800:active { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.active\:bg-purple-900:active { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.active\:bg-pink-50:active { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.active\:bg-pink-100:active { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.active\:bg-pink-200:active { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.active\:bg-pink-300:active { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.active\:bg-pink-400:active { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.active\:bg-pink-500:active { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.active\:bg-pink-600:active { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.active\:bg-pink-700:active { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.active\:bg-pink-800:active { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.active\:bg-pink-900:active { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.odd\:bg-transparent:nth-child(odd) { + background-color: transparent; +} + +.odd\:bg-white:nth-child(odd) { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.odd\:bg-black:nth-child(odd) { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.odd\:bg-gray-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.odd\:bg-gray-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.odd\:bg-gray-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.odd\:bg-gray-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.odd\:bg-gray-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.odd\:bg-gray-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.odd\:bg-gray-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.odd\:bg-gray-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.odd\:bg-gray-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.odd\:bg-gray-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.odd\:bg-cool-gray-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.odd\:bg-red-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.odd\:bg-red-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.odd\:bg-red-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.odd\:bg-red-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.odd\:bg-red-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.odd\:bg-red-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.odd\:bg-red-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.odd\:bg-red-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.odd\:bg-red-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.odd\:bg-red-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.odd\:bg-orange-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.odd\:bg-orange-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.odd\:bg-orange-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.odd\:bg-orange-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.odd\:bg-orange-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.odd\:bg-orange-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.odd\:bg-orange-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.odd\:bg-orange-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.odd\:bg-orange-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.odd\:bg-orange-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.odd\:bg-yellow-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.odd\:bg-yellow-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.odd\:bg-yellow-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.odd\:bg-yellow-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.odd\:bg-yellow-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.odd\:bg-yellow-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.odd\:bg-yellow-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.odd\:bg-yellow-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.odd\:bg-yellow-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.odd\:bg-yellow-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.odd\:bg-green-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.odd\:bg-green-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.odd\:bg-green-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.odd\:bg-green-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.odd\:bg-green-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.odd\:bg-green-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.odd\:bg-green-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.odd\:bg-green-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.odd\:bg-green-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.odd\:bg-green-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.odd\:bg-teal-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.odd\:bg-teal-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.odd\:bg-teal-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.odd\:bg-teal-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.odd\:bg-teal-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.odd\:bg-teal-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.odd\:bg-teal-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.odd\:bg-teal-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.odd\:bg-teal-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.odd\:bg-teal-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.odd\:bg-blue-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.odd\:bg-blue-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.odd\:bg-blue-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.odd\:bg-blue-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.odd\:bg-blue-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.odd\:bg-blue-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.odd\:bg-blue-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.odd\:bg-blue-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.odd\:bg-blue-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.odd\:bg-blue-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.odd\:bg-indigo-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.odd\:bg-indigo-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.odd\:bg-indigo-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.odd\:bg-indigo-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.odd\:bg-indigo-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.odd\:bg-indigo-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.odd\:bg-indigo-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.odd\:bg-indigo-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.odd\:bg-indigo-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.odd\:bg-indigo-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.odd\:bg-purple-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.odd\:bg-purple-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.odd\:bg-purple-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.odd\:bg-purple-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.odd\:bg-purple-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.odd\:bg-purple-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.odd\:bg-purple-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.odd\:bg-purple-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.odd\:bg-purple-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.odd\:bg-purple-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.odd\:bg-pink-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.odd\:bg-pink-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.odd\:bg-pink-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.odd\:bg-pink-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.odd\:bg-pink-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.odd\:bg-pink-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.odd\:bg-pink-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.odd\:bg-pink-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.odd\:bg-pink-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.odd\:bg-pink-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-transparent { + background-color: transparent; +} + +.theme-dark .dark\:bg-white { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-black { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-50 { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-100 { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-200 { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-300 { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-400 { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-500 { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-600 { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-700 { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-800 { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-gray-900 { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-50 { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-100 { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-200 { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-300 { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-400 { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-500 { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-600 { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-700 { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-800 { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-cool-gray-900 { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-50 { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-100 { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-200 { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-300 { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-400 { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-500 { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-600 { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-700 { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-800 { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-red-900 { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-50 { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-100 { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-200 { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-300 { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-400 { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-500 { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-600 { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-700 { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-800 { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-orange-900 { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-50 { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-100 { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-200 { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-300 { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-400 { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-500 { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-600 { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-700 { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-800 { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-yellow-900 { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-50 { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-100 { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-200 { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-300 { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-400 { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-500 { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-600 { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-700 { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-800 { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-green-900 { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-50 { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-100 { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-200 { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-300 { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-400 { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-500 { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-600 { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-700 { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-800 { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-teal-900 { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-50 { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-100 { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-200 { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-300 { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-400 { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-500 { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-600 { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-700 { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-800 { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-blue-900 { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-50 { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-100 { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-200 { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-300 { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-400 { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-500 { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-600 { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-700 { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-800 { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-indigo-900 { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-50 { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-100 { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-200 { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-300 { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-400 { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-500 { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-600 { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-700 { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-800 { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-purple-900 { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-50 { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-100 { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-200 { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-300 { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-400 { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-500 { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-600 { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-700 { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-800 { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:bg-pink-900 { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-transparent:hover { + background-color: transparent; +} + +.theme-dark .dark\:hover\:bg-white:hover { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-black:hover { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-50:hover { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-100:hover { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-200:hover { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-300:hover { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-400:hover { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-500:hover { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-600:hover { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-700:hover { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-800:hover { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-gray-900:hover { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-50:hover { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-100:hover { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-200:hover { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-300:hover { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-400:hover { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-500:hover { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-600:hover { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-700:hover { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-800:hover { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-cool-gray-900:hover { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-50:hover { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-100:hover { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-200:hover { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-300:hover { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-400:hover { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-500:hover { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-600:hover { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-700:hover { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-800:hover { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-red-900:hover { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-50:hover { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-100:hover { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-200:hover { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-300:hover { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-400:hover { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-500:hover { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-600:hover { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-700:hover { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-800:hover { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-orange-900:hover { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-50:hover { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-100:hover { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-200:hover { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-300:hover { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-400:hover { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-500:hover { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-600:hover { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-700:hover { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-800:hover { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-yellow-900:hover { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-50:hover { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-100:hover { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-200:hover { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-300:hover { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-400:hover { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-500:hover { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-600:hover { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-700:hover { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-800:hover { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-green-900:hover { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-50:hover { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-100:hover { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-200:hover { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-300:hover { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-400:hover { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-500:hover { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-600:hover { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-700:hover { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-800:hover { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-teal-900:hover { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-50:hover { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-100:hover { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-200:hover { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-300:hover { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-400:hover { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-500:hover { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-600:hover { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-700:hover { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-800:hover { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-blue-900:hover { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-50:hover { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-100:hover { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-200:hover { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-300:hover { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-400:hover { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-500:hover { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-600:hover { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-700:hover { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-800:hover { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-indigo-900:hover { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-50:hover { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-100:hover { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-200:hover { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-300:hover { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-400:hover { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-500:hover { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-600:hover { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-700:hover { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-800:hover { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-purple-900:hover { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-50:hover { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-100:hover { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-200:hover { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-300:hover { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-400:hover { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-500:hover { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-600:hover { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-700:hover { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-800:hover { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:hover\:bg-pink-900:hover { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-transparent:focus { + background-color: transparent; +} + +.theme-dark .dark\:focus\:bg-white:focus { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-black:focus { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-50:focus { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-100:focus { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-200:focus { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-300:focus { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-400:focus { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-500:focus { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-600:focus { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-700:focus { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-800:focus { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-gray-900:focus { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-50:focus { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-100:focus { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-200:focus { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-300:focus { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-400:focus { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-500:focus { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-600:focus { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-700:focus { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-800:focus { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-cool-gray-900:focus { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-50:focus { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-100:focus { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-200:focus { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-300:focus { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-400:focus { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-500:focus { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-600:focus { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-700:focus { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-800:focus { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-red-900:focus { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-50:focus { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-100:focus { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-200:focus { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-300:focus { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-400:focus { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-500:focus { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-600:focus { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-700:focus { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-800:focus { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-orange-900:focus { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-50:focus { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-100:focus { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-200:focus { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-300:focus { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-400:focus { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-500:focus { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-600:focus { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-700:focus { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-800:focus { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-yellow-900:focus { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-50:focus { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-100:focus { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-200:focus { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-300:focus { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-400:focus { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-500:focus { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-600:focus { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-700:focus { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-800:focus { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-green-900:focus { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-50:focus { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-100:focus { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-200:focus { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-300:focus { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-400:focus { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-500:focus { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-600:focus { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-700:focus { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-800:focus { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-teal-900:focus { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-50:focus { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-100:focus { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-200:focus { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-300:focus { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-400:focus { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-500:focus { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-600:focus { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-700:focus { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-800:focus { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-blue-900:focus { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-50:focus { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-100:focus { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-200:focus { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-300:focus { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-400:focus { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-500:focus { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-600:focus { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-700:focus { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-800:focus { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-indigo-900:focus { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-50:focus { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-100:focus { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-200:focus { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-300:focus { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-400:focus { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-500:focus { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-600:focus { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-700:focus { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-800:focus { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-purple-900:focus { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-50:focus { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-100:focus { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-200:focus { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-300:focus { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-400:focus { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-500:focus { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-600:focus { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-700:focus { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-800:focus { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:focus\:bg-pink-900:focus { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-transparent:active { + background-color: transparent; +} + +.theme-dark .dark\:active\:bg-white:active { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-black:active { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-50:active { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-100:active { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-200:active { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-300:active { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-400:active { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-500:active { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-600:active { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-700:active { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-800:active { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-gray-900:active { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-50:active { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-100:active { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-200:active { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-300:active { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-400:active { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-500:active { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-600:active { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-700:active { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-800:active { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-cool-gray-900:active { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-50:active { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-100:active { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-200:active { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-300:active { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-400:active { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-500:active { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-600:active { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-700:active { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-800:active { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-red-900:active { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-50:active { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-100:active { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-200:active { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-300:active { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-400:active { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-500:active { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-600:active { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-700:active { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-800:active { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-orange-900:active { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-50:active { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-100:active { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-200:active { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-300:active { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-400:active { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-500:active { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-600:active { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-700:active { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-800:active { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-yellow-900:active { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-50:active { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-100:active { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-200:active { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-300:active { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-400:active { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-500:active { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-600:active { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-700:active { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-800:active { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-green-900:active { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-50:active { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-100:active { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-200:active { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-300:active { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-400:active { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-500:active { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-600:active { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-700:active { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-800:active { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-teal-900:active { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-50:active { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-100:active { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-200:active { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-300:active { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-400:active { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-500:active { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-600:active { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-700:active { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-800:active { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-blue-900:active { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-50:active { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-100:active { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-200:active { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-300:active { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-400:active { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-500:active { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-600:active { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-700:active { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-800:active { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-indigo-900:active { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-50:active { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-100:active { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-200:active { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-300:active { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-400:active { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-500:active { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-600:active { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-700:active { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-800:active { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-purple-900:active { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-50:active { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-100:active { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-200:active { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-300:active { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-400:active { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-500:active { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-600:active { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-700:active { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-800:active { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:active\:bg-pink-900:active { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-transparent:nth-child(odd) { + background-color: transparent; +} + +.theme-dark .dark\:odd\:bg-white:nth-child(odd) { + --bg-opacity: 1; + background-color: #ffffff; + background-color: rgba(255, 255, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-black:nth-child(odd) { + --bg-opacity: 1; + background-color: #000000; + background-color: rgba(0, 0, 0, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f9fafb; + background-color: rgba(249, 250, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #f4f5f7; + background-color: rgba(244, 245, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #e5e7eb; + background-color: rgba(229, 231, 235, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #d5d6d7; + background-color: rgba(213, 214, 215, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #9e9e9e; + background-color: rgba(158, 158, 158, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #707275; + background-color: rgba(112, 114, 117, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #4c4f52; + background-color: rgba(76, 79, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #24262d; + background-color: rgba(36, 38, 45, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a1c23; + background-color: rgba(26, 28, 35, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-gray-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #121317; + background-color: rgba(18, 19, 23, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fbfdfe; + background-color: rgba(251, 253, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #f1f5f9; + background-color: rgba(241, 245, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #e2e8f0; + background-color: rgba(226, 232, 240, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #cfd8e3; + background-color: rgba(207, 216, 227, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #97a6ba; + background-color: rgba(151, 166, 186, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #64748b; + background-color: rgba(100, 116, 139, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #475569; + background-color: rgba(71, 85, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #364152; + background-color: rgba(54, 65, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #27303f; + background-color: rgba(39, 48, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-cool-gray-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a202e; + background-color: rgba(26, 32, 46, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf2f2; + background-color: rgba(253, 242, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fde8e8; + background-color: rgba(253, 232, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fbd5d5; + background-color: rgba(251, 213, 213, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #f8b4b4; + background-color: rgba(248, 180, 180, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #f98080; + background-color: rgba(249, 128, 128, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #f05252; + background-color: rgba(240, 82, 82, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #e02424; + background-color: rgba(224, 36, 36, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #c81e1e; + background-color: rgba(200, 30, 30, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #9b1c1c; + background-color: rgba(155, 28, 28, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-red-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fff8f1; + background-color: rgba(255, 248, 241, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #feecdc; + background-color: rgba(254, 236, 220, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fcd9bd; + background-color: rgba(252, 217, 189, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdba8c; + background-color: rgba(253, 186, 140, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #ff8a4c; + background-color: rgba(255, 138, 76, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #ff5a1f; + background-color: rgba(255, 90, 31, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #d03801; + background-color: rgba(208, 56, 1, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #b43403; + background-color: rgba(180, 52, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #8a2c0d; + background-color: rgba(138, 44, 13, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-orange-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #771d1d; + background-color: rgba(119, 29, 29, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdfdea; + background-color: rgba(253, 253, 234, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf6b2; + background-color: rgba(253, 246, 178, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fce96a; + background-color: rgba(252, 233, 106, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #faca15; + background-color: rgba(250, 202, 21, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #e3a008; + background-color: rgba(227, 160, 8, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #c27803; + background-color: rgba(194, 120, 3, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #9f580a; + background-color: rgba(159, 88, 10, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #8e4b10; + background-color: rgba(142, 75, 16, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #723b13; + background-color: rgba(114, 59, 19, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-yellow-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #633112; + background-color: rgba(99, 49, 18, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f3faf7; + background-color: rgba(243, 250, 247, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #def7ec; + background-color: rgba(222, 247, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #bcf0da; + background-color: rgba(188, 240, 218, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #84e1bc; + background-color: rgba(132, 225, 188, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #31c48d; + background-color: rgba(49, 196, 141, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #0e9f6e; + background-color: rgba(14, 159, 110, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #057a55; + background-color: rgba(5, 122, 85, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #046c4e; + background-color: rgba(4, 108, 78, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #03543f; + background-color: rgba(3, 84, 63, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-green-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #014737; + background-color: rgba(1, 71, 55, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #edfafa; + background-color: rgba(237, 250, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #d5f5f6; + background-color: rgba(213, 245, 246, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #afecef; + background-color: rgba(175, 236, 239, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #7edce2; + background-color: rgba(126, 220, 226, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #16bdca; + background-color: rgba(22, 189, 202, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #0694a2; + background-color: rgba(6, 148, 162, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #047481; + background-color: rgba(4, 116, 129, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #036672; + background-color: rgba(3, 102, 114, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #05505c; + background-color: rgba(5, 80, 92, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-teal-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #014451; + background-color: rgba(1, 68, 81, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #ebf5ff; + background-color: rgba(235, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #e1effe; + background-color: rgba(225, 239, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #c3ddfd; + background-color: rgba(195, 221, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #a4cafe; + background-color: rgba(164, 202, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #76a9fa; + background-color: rgba(118, 169, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #3f83f8; + background-color: rgba(63, 131, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #1c64f2; + background-color: rgba(28, 100, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #1a56db; + background-color: rgba(26, 86, 219, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #1e429f; + background-color: rgba(30, 66, 159, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-blue-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #233876; + background-color: rgba(35, 56, 118, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f0f5ff; + background-color: rgba(240, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #e5edff; + background-color: rgba(229, 237, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #cddbfe; + background-color: rgba(205, 219, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #b4c6fc; + background-color: rgba(180, 198, 252, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #8da2fb; + background-color: rgba(141, 162, 251, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #6875f5; + background-color: rgba(104, 117, 245, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #5850ec; + background-color: rgba(88, 80, 236, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #5145cd; + background-color: rgba(81, 69, 205, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #42389d; + background-color: rgba(66, 56, 157, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-indigo-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #362f78; + background-color: rgba(54, 47, 120, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #f6f5ff; + background-color: rgba(246, 245, 255, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #edebfe; + background-color: rgba(237, 235, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #dcd7fe; + background-color: rgba(220, 215, 254, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #cabffd; + background-color: rgba(202, 191, 253, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #ac94fa; + background-color: rgba(172, 148, 250, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #9061f9; + background-color: rgba(144, 97, 249, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #7e3af2; + background-color: rgba(126, 58, 242, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #6c2bd9; + background-color: rgba(108, 43, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #5521b5; + background-color: rgba(85, 33, 181, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-purple-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #4a1d96; + background-color: rgba(74, 29, 150, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-50:nth-child(odd) { + --bg-opacity: 1; + background-color: #fdf2f8; + background-color: rgba(253, 242, 248, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-100:nth-child(odd) { + --bg-opacity: 1; + background-color: #fce8f3; + background-color: rgba(252, 232, 243, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-200:nth-child(odd) { + --bg-opacity: 1; + background-color: #fad1e8; + background-color: rgba(250, 209, 232, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-300:nth-child(odd) { + --bg-opacity: 1; + background-color: #f8b4d9; + background-color: rgba(248, 180, 217, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-400:nth-child(odd) { + --bg-opacity: 1; + background-color: #f17eb8; + background-color: rgba(241, 126, 184, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-500:nth-child(odd) { + --bg-opacity: 1; + background-color: #e74694; + background-color: rgba(231, 70, 148, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-600:nth-child(odd) { + --bg-opacity: 1; + background-color: #d61f69; + background-color: rgba(214, 31, 105, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-700:nth-child(odd) { + --bg-opacity: 1; + background-color: #bf125d; + background-color: rgba(191, 18, 93, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-800:nth-child(odd) { + --bg-opacity: 1; + background-color: #99154b; + background-color: rgba(153, 21, 75, var(--bg-opacity)); +} + +.theme-dark .dark\:odd\:bg-pink-900:nth-child(odd) { + --bg-opacity: 1; + background-color: #751a3d; + background-color: rgba(117, 26, 61, var(--bg-opacity)); +} + +.bg-opacity-0 { + --bg-opacity: 0; +} + +.bg-opacity-25 { + --bg-opacity: 0.25; +} + +.bg-opacity-50 { + --bg-opacity: 0.5; +} + +.bg-opacity-75 { + --bg-opacity: 0.75; +} + +.bg-opacity-100 { + --bg-opacity: 1; +} + +.hover\:bg-opacity-0:hover { + --bg-opacity: 0; +} + +.hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; +} + +.hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; +} + +.hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; +} + +.hover\:bg-opacity-100:hover { + --bg-opacity: 1; +} + +.focus\:bg-opacity-0:focus { + --bg-opacity: 0; +} + +.focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; +} + +.focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; +} + +.focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; +} + +.focus\:bg-opacity-100:focus { + --bg-opacity: 1; +} + +.bg-bottom { + background-position: bottom; +} + +.bg-center { + background-position: center; +} + +.bg-left { + background-position: left; +} + +.bg-left-bottom { + background-position: left bottom; +} + +.bg-left-top { + background-position: left top; +} + +.bg-right { + background-position: right; +} + +.bg-right-bottom { + background-position: right bottom; +} + +.bg-right-top { + background-position: right top; +} + +.bg-top { + background-position: top; +} + +.bg-repeat { + background-repeat: repeat; +} + +.bg-no-repeat { + background-repeat: no-repeat; +} + +.bg-repeat-x { + background-repeat: repeat-x; +} + +.bg-repeat-y { + background-repeat: repeat-y; +} + +.bg-repeat-round { + background-repeat: round; +} + +.bg-repeat-space { + background-repeat: space; +} + +.bg-auto { + background-size: auto; +} + +.bg-cover { + background-size: cover; +} + +.bg-contain { + background-size: contain; +} + +.border-collapse { + border-collapse: collapse; +} + +.border-separate { + border-collapse: separate; +} + +.border-transparent { + border-color: transparent; +} + +.border-white { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.border-black { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.border-gray-50 { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.border-gray-100 { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.border-gray-200 { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.border-gray-300 { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.border-gray-400 { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.border-gray-500 { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.border-gray-600 { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.border-gray-700 { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.border-gray-800 { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.border-gray-900 { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.border-cool-gray-50 { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.border-cool-gray-100 { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.border-cool-gray-200 { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.border-cool-gray-300 { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.border-cool-gray-400 { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.border-cool-gray-500 { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.border-cool-gray-600 { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.border-cool-gray-700 { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.border-cool-gray-800 { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.border-cool-gray-900 { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.border-red-50 { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.border-red-100 { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.border-red-200 { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.border-red-300 { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.border-red-400 { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.border-red-500 { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.border-red-600 { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.border-red-700 { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.border-red-800 { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.border-red-900 { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.border-orange-50 { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.border-orange-100 { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.border-orange-200 { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.border-orange-300 { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.border-orange-400 { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.border-orange-500 { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.border-orange-600 { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.border-orange-700 { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.border-orange-800 { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.border-orange-900 { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.border-yellow-50 { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.border-yellow-100 { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.border-yellow-200 { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.border-yellow-300 { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.border-yellow-400 { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.border-yellow-500 { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.border-yellow-600 { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.border-yellow-700 { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.border-yellow-800 { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.border-yellow-900 { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.border-green-50 { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.border-green-100 { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.border-green-200 { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.border-green-300 { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.border-green-400 { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.border-green-500 { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.border-green-600 { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.border-green-700 { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.border-green-800 { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.border-green-900 { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.border-teal-50 { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.border-teal-100 { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.border-teal-200 { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.border-teal-300 { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.border-teal-400 { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.border-teal-500 { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.border-teal-600 { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.border-teal-700 { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.border-teal-800 { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.border-teal-900 { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.border-blue-50 { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.border-blue-100 { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.border-blue-200 { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.border-blue-300 { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.border-blue-400 { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.border-blue-500 { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.border-blue-600 { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.border-blue-700 { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.border-blue-800 { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.border-blue-900 { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.border-indigo-50 { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.border-indigo-100 { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.border-indigo-200 { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.border-indigo-300 { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.border-indigo-400 { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.border-indigo-500 { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.border-indigo-600 { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.border-indigo-700 { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.border-indigo-800 { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.border-indigo-900 { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.border-purple-50 { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.border-purple-100 { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.border-purple-200 { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.border-purple-300 { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.border-purple-400 { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.border-purple-500 { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.border-purple-600 { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.border-purple-700 { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.border-purple-800 { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.border-purple-900 { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.border-pink-50 { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.border-pink-100 { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.border-pink-200 { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.border-pink-300 { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.border-pink-400 { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.border-pink-500 { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.border-pink-600 { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.border-pink-700 { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.border-pink-800 { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.border-pink-900 { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.focus\:border-transparent:focus { + border-color: transparent; +} + +.focus\:border-white:focus { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.focus\:border-black:focus { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.focus\:border-gray-50:focus { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.focus\:border-gray-100:focus { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.focus\:border-gray-200:focus { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.focus\:border-gray-300:focus { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.focus\:border-gray-400:focus { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.focus\:border-gray-500:focus { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.focus\:border-gray-600:focus { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.focus\:border-gray-700:focus { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.focus\:border-gray-800:focus { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.focus\:border-gray-900:focus { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.focus\:border-cool-gray-50:focus { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.focus\:border-cool-gray-100:focus { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.focus\:border-cool-gray-200:focus { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.focus\:border-cool-gray-300:focus { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.focus\:border-cool-gray-400:focus { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.focus\:border-cool-gray-500:focus { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.focus\:border-cool-gray-600:focus { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.focus\:border-cool-gray-700:focus { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.focus\:border-cool-gray-800:focus { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.focus\:border-cool-gray-900:focus { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.focus\:border-red-50:focus { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.focus\:border-red-100:focus { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.focus\:border-red-200:focus { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.focus\:border-red-300:focus { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.focus\:border-red-400:focus { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.focus\:border-red-500:focus { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.focus\:border-red-600:focus { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.focus\:border-red-700:focus { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.focus\:border-red-800:focus { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.focus\:border-red-900:focus { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.focus\:border-orange-50:focus { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.focus\:border-orange-100:focus { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.focus\:border-orange-200:focus { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.focus\:border-orange-300:focus { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.focus\:border-orange-400:focus { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.focus\:border-orange-500:focus { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.focus\:border-orange-600:focus { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.focus\:border-orange-700:focus { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.focus\:border-orange-800:focus { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.focus\:border-orange-900:focus { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.focus\:border-yellow-50:focus { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.focus\:border-yellow-100:focus { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.focus\:border-yellow-200:focus { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.focus\:border-yellow-300:focus { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.focus\:border-yellow-400:focus { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.focus\:border-yellow-500:focus { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.focus\:border-yellow-600:focus { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.focus\:border-yellow-700:focus { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.focus\:border-yellow-800:focus { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.focus\:border-yellow-900:focus { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.focus\:border-green-50:focus { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.focus\:border-green-100:focus { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.focus\:border-green-200:focus { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.focus\:border-green-300:focus { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.focus\:border-green-400:focus { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.focus\:border-green-500:focus { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.focus\:border-green-600:focus { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.focus\:border-green-700:focus { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.focus\:border-green-800:focus { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.focus\:border-green-900:focus { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.focus\:border-teal-50:focus { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.focus\:border-teal-100:focus { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.focus\:border-teal-200:focus { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.focus\:border-teal-300:focus { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.focus\:border-teal-400:focus { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.focus\:border-teal-500:focus { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.focus\:border-teal-600:focus { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.focus\:border-teal-700:focus { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.focus\:border-teal-800:focus { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.focus\:border-teal-900:focus { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.focus\:border-blue-50:focus { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.focus\:border-blue-100:focus { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.focus\:border-blue-200:focus { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.focus\:border-blue-300:focus { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.focus\:border-blue-400:focus { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.focus\:border-blue-500:focus { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.focus\:border-blue-600:focus { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.focus\:border-blue-700:focus { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.focus\:border-blue-800:focus { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.focus\:border-blue-900:focus { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.focus\:border-indigo-50:focus { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.focus\:border-indigo-100:focus { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.focus\:border-indigo-200:focus { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.focus\:border-indigo-300:focus { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.focus\:border-indigo-400:focus { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.focus\:border-indigo-500:focus { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.focus\:border-indigo-600:focus { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.focus\:border-indigo-700:focus { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.focus\:border-indigo-800:focus { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.focus\:border-indigo-900:focus { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.focus\:border-purple-50:focus { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.focus\:border-purple-100:focus { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.focus\:border-purple-200:focus { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.focus\:border-purple-300:focus { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.focus\:border-purple-400:focus { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.focus\:border-purple-500:focus { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.focus\:border-purple-600:focus { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.focus\:border-purple-700:focus { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.focus\:border-purple-800:focus { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.focus\:border-purple-900:focus { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.focus\:border-pink-50:focus { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.focus\:border-pink-100:focus { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.focus\:border-pink-200:focus { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.focus\:border-pink-300:focus { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.focus\:border-pink-400:focus { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.focus\:border-pink-500:focus { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.focus\:border-pink-600:focus { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.focus\:border-pink-700:focus { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.focus\:border-pink-800:focus { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.focus\:border-pink-900:focus { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.hover\:border-transparent:hover { + border-color: transparent; +} + +.hover\:border-white:hover { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.hover\:border-black:hover { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.hover\:border-gray-50:hover { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.hover\:border-gray-100:hover { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.hover\:border-gray-200:hover { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.hover\:border-gray-300:hover { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.hover\:border-gray-400:hover { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.hover\:border-gray-500:hover { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.hover\:border-gray-600:hover { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.hover\:border-gray-700:hover { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.hover\:border-gray-800:hover { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.hover\:border-gray-900:hover { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.hover\:border-cool-gray-50:hover { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.hover\:border-cool-gray-100:hover { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.hover\:border-cool-gray-200:hover { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.hover\:border-cool-gray-300:hover { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.hover\:border-cool-gray-400:hover { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.hover\:border-cool-gray-500:hover { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.hover\:border-cool-gray-600:hover { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.hover\:border-cool-gray-700:hover { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.hover\:border-cool-gray-800:hover { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.hover\:border-cool-gray-900:hover { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.hover\:border-red-50:hover { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.hover\:border-red-100:hover { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.hover\:border-red-200:hover { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.hover\:border-red-300:hover { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.hover\:border-red-400:hover { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.hover\:border-red-500:hover { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.hover\:border-red-600:hover { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.hover\:border-red-700:hover { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.hover\:border-red-800:hover { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.hover\:border-red-900:hover { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.hover\:border-orange-50:hover { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.hover\:border-orange-100:hover { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.hover\:border-orange-200:hover { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.hover\:border-orange-300:hover { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.hover\:border-orange-400:hover { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.hover\:border-orange-500:hover { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.hover\:border-orange-600:hover { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.hover\:border-orange-700:hover { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.hover\:border-orange-800:hover { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.hover\:border-orange-900:hover { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.hover\:border-yellow-50:hover { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.hover\:border-yellow-100:hover { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.hover\:border-yellow-200:hover { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.hover\:border-yellow-300:hover { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.hover\:border-yellow-400:hover { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.hover\:border-yellow-500:hover { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.hover\:border-yellow-600:hover { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.hover\:border-yellow-700:hover { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.hover\:border-yellow-800:hover { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.hover\:border-yellow-900:hover { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.hover\:border-green-50:hover { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.hover\:border-green-100:hover { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.hover\:border-green-200:hover { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.hover\:border-green-300:hover { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.hover\:border-green-400:hover { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.hover\:border-green-500:hover { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.hover\:border-green-600:hover { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.hover\:border-green-700:hover { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.hover\:border-green-800:hover { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.hover\:border-green-900:hover { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.hover\:border-teal-50:hover { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.hover\:border-teal-100:hover { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.hover\:border-teal-200:hover { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.hover\:border-teal-300:hover { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.hover\:border-teal-400:hover { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.hover\:border-teal-500:hover { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.hover\:border-teal-600:hover { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.hover\:border-teal-700:hover { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.hover\:border-teal-800:hover { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.hover\:border-teal-900:hover { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.hover\:border-blue-50:hover { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.hover\:border-blue-100:hover { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.hover\:border-blue-200:hover { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.hover\:border-blue-300:hover { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.hover\:border-blue-400:hover { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.hover\:border-blue-500:hover { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.hover\:border-blue-600:hover { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.hover\:border-blue-700:hover { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.hover\:border-blue-800:hover { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.hover\:border-blue-900:hover { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.hover\:border-indigo-50:hover { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.hover\:border-indigo-100:hover { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.hover\:border-indigo-200:hover { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.hover\:border-indigo-300:hover { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.hover\:border-indigo-400:hover { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.hover\:border-indigo-500:hover { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.hover\:border-indigo-600:hover { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.hover\:border-indigo-700:hover { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.hover\:border-indigo-800:hover { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.hover\:border-indigo-900:hover { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.hover\:border-purple-50:hover { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.hover\:border-purple-100:hover { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.hover\:border-purple-200:hover { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.hover\:border-purple-300:hover { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.hover\:border-purple-400:hover { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.hover\:border-purple-500:hover { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.hover\:border-purple-600:hover { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.hover\:border-purple-700:hover { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.hover\:border-purple-800:hover { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.hover\:border-purple-900:hover { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.hover\:border-pink-50:hover { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.hover\:border-pink-100:hover { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.hover\:border-pink-200:hover { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.hover\:border-pink-300:hover { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.hover\:border-pink-400:hover { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.hover\:border-pink-500:hover { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.hover\:border-pink-600:hover { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.hover\:border-pink-700:hover { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.hover\:border-pink-800:hover { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.hover\:border-pink-900:hover { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.theme-dark .dark\:border-transparent { + border-color: transparent; +} + +.theme-dark .dark\:border-white { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-black { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-50 { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-100 { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-200 { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-300 { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-400 { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-500 { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-600 { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-700 { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-800 { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.theme-dark .dark\:border-gray-900 { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-50 { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-100 { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-200 { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-300 { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-400 { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-500 { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-600 { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-700 { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-800 { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.theme-dark .dark\:border-cool-gray-900 { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-50 { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-100 { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-200 { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-300 { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-400 { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-500 { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-600 { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-700 { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-800 { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.theme-dark .dark\:border-red-900 { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-50 { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-100 { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-200 { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-300 { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-400 { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-500 { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-600 { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-700 { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-800 { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.theme-dark .dark\:border-orange-900 { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-50 { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-100 { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-200 { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-300 { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-400 { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-500 { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-600 { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-700 { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-800 { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.theme-dark .dark\:border-yellow-900 { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-50 { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-100 { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-200 { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-300 { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-400 { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-500 { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-600 { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-700 { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-800 { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.theme-dark .dark\:border-green-900 { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-50 { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-100 { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-200 { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-300 { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-400 { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-500 { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-600 { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-700 { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-800 { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.theme-dark .dark\:border-teal-900 { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-50 { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-100 { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-200 { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-300 { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-400 { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-500 { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-600 { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-700 { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-800 { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.theme-dark .dark\:border-blue-900 { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-50 { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-100 { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-200 { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-300 { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-400 { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-500 { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-600 { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-700 { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-800 { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.theme-dark .dark\:border-indigo-900 { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-50 { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-100 { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-200 { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-300 { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-400 { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-500 { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-600 { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-700 { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-800 { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.theme-dark .dark\:border-purple-900 { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-50 { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-100 { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-200 { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-300 { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-400 { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-500 { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-600 { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-700 { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-800 { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.theme-dark .dark\:border-pink-900 { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-transparent:focus { + border-color: transparent; +} + +.theme-dark .dark\:focus\:border-white:focus { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-black:focus { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-50:focus { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-100:focus { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-200:focus { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-300:focus { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-400:focus { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-500:focus { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-600:focus { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-700:focus { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-800:focus { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-gray-900:focus { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-50:focus { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-100:focus { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-200:focus { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-300:focus { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-400:focus { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-500:focus { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-600:focus { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-700:focus { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-800:focus { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-cool-gray-900:focus { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-50:focus { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-100:focus { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-200:focus { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-300:focus { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-400:focus { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-500:focus { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-600:focus { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-700:focus { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-800:focus { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-red-900:focus { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-50:focus { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-100:focus { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-200:focus { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-300:focus { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-400:focus { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-500:focus { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-600:focus { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-700:focus { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-800:focus { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-orange-900:focus { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-50:focus { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-100:focus { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-200:focus { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-300:focus { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-400:focus { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-500:focus { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-600:focus { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-700:focus { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-800:focus { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-yellow-900:focus { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-50:focus { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-100:focus { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-200:focus { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-300:focus { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-400:focus { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-500:focus { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-600:focus { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-700:focus { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-800:focus { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-green-900:focus { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-50:focus { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-100:focus { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-200:focus { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-300:focus { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-400:focus { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-500:focus { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-600:focus { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-700:focus { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-800:focus { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-teal-900:focus { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-50:focus { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-100:focus { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-200:focus { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-300:focus { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-400:focus { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-500:focus { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-600:focus { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-700:focus { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-800:focus { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-blue-900:focus { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-50:focus { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-100:focus { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-200:focus { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-300:focus { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-400:focus { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-500:focus { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-600:focus { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-700:focus { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-800:focus { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-indigo-900:focus { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-50:focus { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-100:focus { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-200:focus { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-300:focus { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-400:focus { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-500:focus { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-600:focus { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-700:focus { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-800:focus { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-purple-900:focus { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-50:focus { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-100:focus { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-200:focus { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-300:focus { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-400:focus { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-500:focus { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-600:focus { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-700:focus { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-800:focus { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.theme-dark .dark\:focus\:border-pink-900:focus { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-transparent:hover { + border-color: transparent; +} + +.theme-dark .dark\:hover\:border-white:hover { + --border-opacity: 1; + border-color: #ffffff; + border-color: rgba(255, 255, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-black:hover { + --border-opacity: 1; + border-color: #000000; + border-color: rgba(0, 0, 0, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-50:hover { + --border-opacity: 1; + border-color: #f9fafb; + border-color: rgba(249, 250, 251, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-100:hover { + --border-opacity: 1; + border-color: #f4f5f7; + border-color: rgba(244, 245, 247, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-200:hover { + --border-opacity: 1; + border-color: #e5e7eb; + border-color: rgba(229, 231, 235, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-300:hover { + --border-opacity: 1; + border-color: #d5d6d7; + border-color: rgba(213, 214, 215, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-400:hover { + --border-opacity: 1; + border-color: #9e9e9e; + border-color: rgba(158, 158, 158, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-500:hover { + --border-opacity: 1; + border-color: #707275; + border-color: rgba(112, 114, 117, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-600:hover { + --border-opacity: 1; + border-color: #4c4f52; + border-color: rgba(76, 79, 82, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-700:hover { + --border-opacity: 1; + border-color: #24262d; + border-color: rgba(36, 38, 45, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-800:hover { + --border-opacity: 1; + border-color: #1a1c23; + border-color: rgba(26, 28, 35, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-gray-900:hover { + --border-opacity: 1; + border-color: #121317; + border-color: rgba(18, 19, 23, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-50:hover { + --border-opacity: 1; + border-color: #fbfdfe; + border-color: rgba(251, 253, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-100:hover { + --border-opacity: 1; + border-color: #f1f5f9; + border-color: rgba(241, 245, 249, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-200:hover { + --border-opacity: 1; + border-color: #e2e8f0; + border-color: rgba(226, 232, 240, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-300:hover { + --border-opacity: 1; + border-color: #cfd8e3; + border-color: rgba(207, 216, 227, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-400:hover { + --border-opacity: 1; + border-color: #97a6ba; + border-color: rgba(151, 166, 186, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-500:hover { + --border-opacity: 1; + border-color: #64748b; + border-color: rgba(100, 116, 139, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-600:hover { + --border-opacity: 1; + border-color: #475569; + border-color: rgba(71, 85, 105, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-700:hover { + --border-opacity: 1; + border-color: #364152; + border-color: rgba(54, 65, 82, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-800:hover { + --border-opacity: 1; + border-color: #27303f; + border-color: rgba(39, 48, 63, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-cool-gray-900:hover { + --border-opacity: 1; + border-color: #1a202e; + border-color: rgba(26, 32, 46, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-50:hover { + --border-opacity: 1; + border-color: #fdf2f2; + border-color: rgba(253, 242, 242, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-100:hover { + --border-opacity: 1; + border-color: #fde8e8; + border-color: rgba(253, 232, 232, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-200:hover { + --border-opacity: 1; + border-color: #fbd5d5; + border-color: rgba(251, 213, 213, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-300:hover { + --border-opacity: 1; + border-color: #f8b4b4; + border-color: rgba(248, 180, 180, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-400:hover { + --border-opacity: 1; + border-color: #f98080; + border-color: rgba(249, 128, 128, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-500:hover { + --border-opacity: 1; + border-color: #f05252; + border-color: rgba(240, 82, 82, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-600:hover { + --border-opacity: 1; + border-color: #e02424; + border-color: rgba(224, 36, 36, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-700:hover { + --border-opacity: 1; + border-color: #c81e1e; + border-color: rgba(200, 30, 30, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-800:hover { + --border-opacity: 1; + border-color: #9b1c1c; + border-color: rgba(155, 28, 28, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-red-900:hover { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-50:hover { + --border-opacity: 1; + border-color: #fff8f1; + border-color: rgba(255, 248, 241, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-100:hover { + --border-opacity: 1; + border-color: #feecdc; + border-color: rgba(254, 236, 220, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-200:hover { + --border-opacity: 1; + border-color: #fcd9bd; + border-color: rgba(252, 217, 189, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-300:hover { + --border-opacity: 1; + border-color: #fdba8c; + border-color: rgba(253, 186, 140, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-400:hover { + --border-opacity: 1; + border-color: #ff8a4c; + border-color: rgba(255, 138, 76, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-500:hover { + --border-opacity: 1; + border-color: #ff5a1f; + border-color: rgba(255, 90, 31, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-600:hover { + --border-opacity: 1; + border-color: #d03801; + border-color: rgba(208, 56, 1, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-700:hover { + --border-opacity: 1; + border-color: #b43403; + border-color: rgba(180, 52, 3, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-800:hover { + --border-opacity: 1; + border-color: #8a2c0d; + border-color: rgba(138, 44, 13, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-orange-900:hover { + --border-opacity: 1; + border-color: #771d1d; + border-color: rgba(119, 29, 29, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-50:hover { + --border-opacity: 1; + border-color: #fdfdea; + border-color: rgba(253, 253, 234, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-100:hover { + --border-opacity: 1; + border-color: #fdf6b2; + border-color: rgba(253, 246, 178, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-200:hover { + --border-opacity: 1; + border-color: #fce96a; + border-color: rgba(252, 233, 106, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-300:hover { + --border-opacity: 1; + border-color: #faca15; + border-color: rgba(250, 202, 21, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-400:hover { + --border-opacity: 1; + border-color: #e3a008; + border-color: rgba(227, 160, 8, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-500:hover { + --border-opacity: 1; + border-color: #c27803; + border-color: rgba(194, 120, 3, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-600:hover { + --border-opacity: 1; + border-color: #9f580a; + border-color: rgba(159, 88, 10, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-700:hover { + --border-opacity: 1; + border-color: #8e4b10; + border-color: rgba(142, 75, 16, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-800:hover { + --border-opacity: 1; + border-color: #723b13; + border-color: rgba(114, 59, 19, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-yellow-900:hover { + --border-opacity: 1; + border-color: #633112; + border-color: rgba(99, 49, 18, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-50:hover { + --border-opacity: 1; + border-color: #f3faf7; + border-color: rgba(243, 250, 247, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-100:hover { + --border-opacity: 1; + border-color: #def7ec; + border-color: rgba(222, 247, 236, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-200:hover { + --border-opacity: 1; + border-color: #bcf0da; + border-color: rgba(188, 240, 218, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-300:hover { + --border-opacity: 1; + border-color: #84e1bc; + border-color: rgba(132, 225, 188, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-400:hover { + --border-opacity: 1; + border-color: #31c48d; + border-color: rgba(49, 196, 141, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-500:hover { + --border-opacity: 1; + border-color: #0e9f6e; + border-color: rgba(14, 159, 110, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-600:hover { + --border-opacity: 1; + border-color: #057a55; + border-color: rgba(5, 122, 85, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-700:hover { + --border-opacity: 1; + border-color: #046c4e; + border-color: rgba(4, 108, 78, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-800:hover { + --border-opacity: 1; + border-color: #03543f; + border-color: rgba(3, 84, 63, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-green-900:hover { + --border-opacity: 1; + border-color: #014737; + border-color: rgba(1, 71, 55, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-50:hover { + --border-opacity: 1; + border-color: #edfafa; + border-color: rgba(237, 250, 250, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-100:hover { + --border-opacity: 1; + border-color: #d5f5f6; + border-color: rgba(213, 245, 246, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-200:hover { + --border-opacity: 1; + border-color: #afecef; + border-color: rgba(175, 236, 239, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-300:hover { + --border-opacity: 1; + border-color: #7edce2; + border-color: rgba(126, 220, 226, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-400:hover { + --border-opacity: 1; + border-color: #16bdca; + border-color: rgba(22, 189, 202, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-500:hover { + --border-opacity: 1; + border-color: #0694a2; + border-color: rgba(6, 148, 162, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-600:hover { + --border-opacity: 1; + border-color: #047481; + border-color: rgba(4, 116, 129, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-700:hover { + --border-opacity: 1; + border-color: #036672; + border-color: rgba(3, 102, 114, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-800:hover { + --border-opacity: 1; + border-color: #05505c; + border-color: rgba(5, 80, 92, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-teal-900:hover { + --border-opacity: 1; + border-color: #014451; + border-color: rgba(1, 68, 81, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-50:hover { + --border-opacity: 1; + border-color: #ebf5ff; + border-color: rgba(235, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-100:hover { + --border-opacity: 1; + border-color: #e1effe; + border-color: rgba(225, 239, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-200:hover { + --border-opacity: 1; + border-color: #c3ddfd; + border-color: rgba(195, 221, 253, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-300:hover { + --border-opacity: 1; + border-color: #a4cafe; + border-color: rgba(164, 202, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-400:hover { + --border-opacity: 1; + border-color: #76a9fa; + border-color: rgba(118, 169, 250, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-500:hover { + --border-opacity: 1; + border-color: #3f83f8; + border-color: rgba(63, 131, 248, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-600:hover { + --border-opacity: 1; + border-color: #1c64f2; + border-color: rgba(28, 100, 242, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-700:hover { + --border-opacity: 1; + border-color: #1a56db; + border-color: rgba(26, 86, 219, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-800:hover { + --border-opacity: 1; + border-color: #1e429f; + border-color: rgba(30, 66, 159, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-blue-900:hover { + --border-opacity: 1; + border-color: #233876; + border-color: rgba(35, 56, 118, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-50:hover { + --border-opacity: 1; + border-color: #f0f5ff; + border-color: rgba(240, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-100:hover { + --border-opacity: 1; + border-color: #e5edff; + border-color: rgba(229, 237, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-200:hover { + --border-opacity: 1; + border-color: #cddbfe; + border-color: rgba(205, 219, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-300:hover { + --border-opacity: 1; + border-color: #b4c6fc; + border-color: rgba(180, 198, 252, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-400:hover { + --border-opacity: 1; + border-color: #8da2fb; + border-color: rgba(141, 162, 251, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-500:hover { + --border-opacity: 1; + border-color: #6875f5; + border-color: rgba(104, 117, 245, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-600:hover { + --border-opacity: 1; + border-color: #5850ec; + border-color: rgba(88, 80, 236, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-700:hover { + --border-opacity: 1; + border-color: #5145cd; + border-color: rgba(81, 69, 205, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-800:hover { + --border-opacity: 1; + border-color: #42389d; + border-color: rgba(66, 56, 157, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-indigo-900:hover { + --border-opacity: 1; + border-color: #362f78; + border-color: rgba(54, 47, 120, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-50:hover { + --border-opacity: 1; + border-color: #f6f5ff; + border-color: rgba(246, 245, 255, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-100:hover { + --border-opacity: 1; + border-color: #edebfe; + border-color: rgba(237, 235, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-200:hover { + --border-opacity: 1; + border-color: #dcd7fe; + border-color: rgba(220, 215, 254, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-300:hover { + --border-opacity: 1; + border-color: #cabffd; + border-color: rgba(202, 191, 253, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-400:hover { + --border-opacity: 1; + border-color: #ac94fa; + border-color: rgba(172, 148, 250, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-500:hover { + --border-opacity: 1; + border-color: #9061f9; + border-color: rgba(144, 97, 249, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-600:hover { + --border-opacity: 1; + border-color: #7e3af2; + border-color: rgba(126, 58, 242, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-700:hover { + --border-opacity: 1; + border-color: #6c2bd9; + border-color: rgba(108, 43, 217, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-800:hover { + --border-opacity: 1; + border-color: #5521b5; + border-color: rgba(85, 33, 181, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-purple-900:hover { + --border-opacity: 1; + border-color: #4a1d96; + border-color: rgba(74, 29, 150, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-50:hover { + --border-opacity: 1; + border-color: #fdf2f8; + border-color: rgba(253, 242, 248, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-100:hover { + --border-opacity: 1; + border-color: #fce8f3; + border-color: rgba(252, 232, 243, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-200:hover { + --border-opacity: 1; + border-color: #fad1e8; + border-color: rgba(250, 209, 232, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-300:hover { + --border-opacity: 1; + border-color: #f8b4d9; + border-color: rgba(248, 180, 217, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-400:hover { + --border-opacity: 1; + border-color: #f17eb8; + border-color: rgba(241, 126, 184, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-500:hover { + --border-opacity: 1; + border-color: #e74694; + border-color: rgba(231, 70, 148, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-600:hover { + --border-opacity: 1; + border-color: #d61f69; + border-color: rgba(214, 31, 105, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-700:hover { + --border-opacity: 1; + border-color: #bf125d; + border-color: rgba(191, 18, 93, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-800:hover { + --border-opacity: 1; + border-color: #99154b; + border-color: rgba(153, 21, 75, var(--border-opacity)); +} + +.theme-dark .dark\:hover\:border-pink-900:hover { + --border-opacity: 1; + border-color: #751a3d; + border-color: rgba(117, 26, 61, var(--border-opacity)); +} + +.border-opacity-0 { + --border-opacity: 0; +} + +.border-opacity-25 { + --border-opacity: 0.25; +} + +.border-opacity-50 { + --border-opacity: 0.5; +} + +.border-opacity-75 { + --border-opacity: 0.75; +} + +.border-opacity-100 { + --border-opacity: 1; +} + +.hover\:border-opacity-0:hover { + --border-opacity: 0; +} + +.hover\:border-opacity-25:hover { + --border-opacity: 0.25; +} + +.hover\:border-opacity-50:hover { + --border-opacity: 0.5; +} + +.hover\:border-opacity-75:hover { + --border-opacity: 0.75; +} + +.hover\:border-opacity-100:hover { + --border-opacity: 1; +} + +.focus\:border-opacity-0:focus { + --border-opacity: 0; +} + +.focus\:border-opacity-25:focus { + --border-opacity: 0.25; +} + +.focus\:border-opacity-50:focus { + --border-opacity: 0.5; +} + +.focus\:border-opacity-75:focus { + --border-opacity: 0.75; +} + +.focus\:border-opacity-100:focus { + --border-opacity: 1; +} + +.rounded-none { + border-radius: 0; +} + +.rounded-sm { + border-radius: 0.125rem; +} + +.rounded { + border-radius: 0.25rem; +} + +.rounded-md { + border-radius: 0.375rem; +} + +.rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; +} + +.rounded-tr-full { + border-top-right-radius: 9999px; +} + +.rounded-br-full { + border-bottom-right-radius: 9999px; +} + +.rounded-bl-full { + border-bottom-left-radius: 9999px; +} + +.border-solid { + border-style: solid; +} + +.border-dashed { + border-style: dashed; +} + +.border-dotted { + border-style: dotted; +} + +.border-double { + border-style: double; +} + +.border-none { + border-style: none; +} + +.border-0 { + border-width: 0; +} + +.border-2 { + border-width: 2px; +} + +.border-4 { + border-width: 4px; +} + +.border-8 { + border-width: 8px; +} + +.border { + border-width: 1px; +} + +.border-t-0 { + border-top-width: 0; +} + +.border-r-0 { + border-right-width: 0; +} + +.border-b-0 { + border-bottom-width: 0; +} + +.border-l-0 { + border-left-width: 0; +} + +.border-t-2 { + border-top-width: 2px; +} + +.border-r-2 { + border-right-width: 2px; +} + +.border-b-2 { + border-bottom-width: 2px; +} + +.border-l-2 { + border-left-width: 2px; +} + +.border-t-4 { + border-top-width: 4px; +} + +.border-r-4 { + border-right-width: 4px; +} + +.border-b-4 { + border-bottom-width: 4px; +} + +.border-l-4 { + border-left-width: 4px; +} + +.border-t-8 { + border-top-width: 8px; +} + +.border-r-8 { + border-right-width: 8px; +} + +.border-b-8 { + border-bottom-width: 8px; +} + +.border-l-8 { + border-left-width: 8px; +} + +.border-t { + border-top-width: 1px; +} + +.border-r { + border-right-width: 1px; +} + +.border-b { + border-bottom-width: 1px; +} + +.border-l { + border-left-width: 1px; +} + +.box-border { + box-sizing: border-box; +} + +.box-content { + box-sizing: content-box; +} + +.cursor-auto { + cursor: auto; +} + +.cursor-default { + cursor: default; +} + +.cursor-pointer { + cursor: pointer; +} + +.cursor-wait { + cursor: wait; +} + +.cursor-text { + cursor: text; +} + +.cursor-move { + cursor: move; +} + +.cursor-not-allowed { + cursor: not-allowed; +} + +.block { + display: block; +} + +.inline-block { + display: inline-block; +} + +.inline { + display: inline; +} + +.flex { + display: flex; +} + +.inline-flex { + display: inline-flex; +} + +.table { + display: table; +} + +.table-caption { + display: table-caption; +} + +.table-cell { + display: table-cell; +} + +.table-column { + display: table-column; +} + +.table-column-group { + display: table-column-group; +} + +.table-footer-group { + display: table-footer-group; +} + +.table-header-group { + display: table-header-group; +} + +.table-row-group { + display: table-row-group; +} + +.table-row { + display: table-row; +} + +.flow-root { + display: flow-root; +} + +.grid { + display: grid; +} + +.inline-grid { + display: inline-grid; +} + +.hidden { + display: none; +} + +.theme-dark .dark\:block { + display: block; +} + +.theme-dark .dark\:inline-block { + display: inline-block; +} + +.theme-dark .dark\:inline { + display: inline; +} + +.theme-dark .dark\:flex { + display: flex; +} + +.theme-dark .dark\:inline-flex { + display: inline-flex; +} + +.theme-dark .dark\:table { + display: table; +} + +.theme-dark .dark\:table-caption { + display: table-caption; +} + +.theme-dark .dark\:table-cell { + display: table-cell; +} + +.theme-dark .dark\:table-column { + display: table-column; +} + +.theme-dark .dark\:table-column-group { + display: table-column-group; +} + +.theme-dark .dark\:table-footer-group { + display: table-footer-group; +} + +.theme-dark .dark\:table-header-group { + display: table-header-group; +} + +.theme-dark .dark\:table-row-group { + display: table-row-group; +} + +.theme-dark .dark\:table-row { + display: table-row; +} + +.theme-dark .dark\:flow-root { + display: flow-root; +} + +.theme-dark .dark\:grid { + display: grid; +} + +.theme-dark .dark\:inline-grid { + display: inline-grid; +} + +.theme-dark .dark\:hidden { + display: none; +} + +.flex-row { + flex-direction: row; +} + +.flex-row-reverse { + flex-direction: row-reverse; +} + +.flex-col { + flex-direction: column; +} + +.flex-col-reverse { + flex-direction: column-reverse; +} + +.flex-wrap { + flex-wrap: wrap; +} + +.flex-wrap-reverse { + flex-wrap: wrap-reverse; +} + +.flex-no-wrap { + flex-wrap: nowrap; +} + +.items-start { + align-items: flex-start; +} + +.items-end { + align-items: flex-end; +} + +.items-center { + align-items: center; +} + +.items-baseline { + align-items: baseline; +} + +.items-stretch { + align-items: stretch; +} + +.self-auto { + align-self: auto; +} + +.self-start { + align-self: flex-start; +} + +.self-end { + align-self: flex-end; +} + +.self-center { + align-self: center; +} + +.self-stretch { + align-self: stretch; +} + +.justify-start { + justify-content: flex-start; +} + +.justify-end { + justify-content: flex-end; +} + +.justify-center { + justify-content: center; +} + +.justify-between { + justify-content: space-between; +} + +.justify-around { + justify-content: space-around; +} + +.justify-evenly { + justify-content: space-evenly; +} + +.content-center { + align-content: center; +} + +.content-start { + align-content: flex-start; +} + +.content-end { + align-content: flex-end; +} + +.content-between { + align-content: space-between; +} + +.content-around { + align-content: space-around; +} + +.flex-1 { + flex: 1 1 0%; +} + +.flex-auto { + flex: 1 1 auto; +} + +.flex-initial { + flex: 0 1 auto; +} + +.flex-none { + flex: none; +} + +.flex-grow-0 { + flex-grow: 0; +} + +.flex-grow { + flex-grow: 1; +} + +.flex-shrink-0 { + flex-shrink: 0; +} + +.flex-shrink { + flex-shrink: 1; +} + +.order-1 { + order: 1; +} + +.order-2 { + order: 2; +} + +.order-3 { + order: 3; +} + +.order-4 { + order: 4; +} + +.order-5 { + order: 5; +} + +.order-6 { + order: 6; +} + +.order-7 { + order: 7; +} + +.order-8 { + order: 8; +} + +.order-9 { + order: 9; +} + +.order-10 { + order: 10; +} + +.order-11 { + order: 11; +} + +.order-12 { + order: 12; +} + +.order-first { + order: -9999; +} + +.order-last { + order: 9999; +} + +.order-none { + order: 0; +} + +.float-right { + float: right; +} + +.float-left { + float: left; +} + +.float-none { + float: none; +} + +.clearfix:after { + content: ""; + display: table; + clear: both; +} + +.clear-left { + clear: left; +} + +.clear-right { + clear: right; +} + +.clear-both { + clear: both; +} + +.clear-none { + clear: none; +} + +.font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; +} + +.font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; +} + +.font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; +} + +.font-hairline { + font-weight: 100; +} + +.font-thin { + font-weight: 200; +} + +.font-light { + font-weight: 300; +} + +.font-normal { + font-weight: 400; +} + +.font-medium { + font-weight: 500; +} + +.font-semibold { + font-weight: 600; +} + +.font-bold { + font-weight: 700; +} + +.font-extrabold { + font-weight: 800; +} + +.font-black { + font-weight: 900; +} + +.hover\:font-hairline:hover { + font-weight: 100; +} + +.hover\:font-thin:hover { + font-weight: 200; +} + +.hover\:font-light:hover { + font-weight: 300; +} + +.hover\:font-normal:hover { + font-weight: 400; +} + +.hover\:font-medium:hover { + font-weight: 500; +} + +.hover\:font-semibold:hover { + font-weight: 600; +} + +.hover\:font-bold:hover { + font-weight: 700; +} + +.hover\:font-extrabold:hover { + font-weight: 800; +} + +.hover\:font-black:hover { + font-weight: 900; +} + +.focus\:font-hairline:focus { + font-weight: 100; +} + +.focus\:font-thin:focus { + font-weight: 200; +} + +.focus\:font-light:focus { + font-weight: 300; +} + +.focus\:font-normal:focus { + font-weight: 400; +} + +.focus\:font-medium:focus { + font-weight: 500; +} + +.focus\:font-semibold:focus { + font-weight: 600; +} + +.focus\:font-bold:focus { + font-weight: 700; +} + +.focus\:font-extrabold:focus { + font-weight: 800; +} + +.focus\:font-black:focus { + font-weight: 900; +} + +.h-0 { + height: 0; +} + +.h-1 { + height: 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-8 { + height: 2rem; +} + +.h-10 { + height: 2.5rem; +} + +.h-12 { + height: 3rem; +} + +.h-16 { + height: 4rem; +} + +.h-20 { + height: 5rem; +} + +.h-24 { + height: 6rem; +} + +.h-32 { + height: 8rem; +} + +.h-40 { + height: 10rem; +} + +.h-48 { + height: 12rem; +} + +.h-56 { + height: 14rem; +} + +.h-64 { + height: 16rem; +} + +.h-auto { + height: auto; +} + +.h-px { + height: 1px; +} + +.h-full { + height: 100%; +} + +.h-screen { + height: 100vh; +} + +.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: 4rem; +} + +.leading-3 { + line-height: .75rem; +} + +.leading-4 { + line-height: 1rem; +} + +.leading-5 { + line-height: 1.25rem; +} + +.leading-6 { + line-height: 1.5rem; +} + +.leading-7 { + line-height: 1.75rem; +} + +.leading-8 { + line-height: 2rem; +} + +.leading-9 { + line-height: 2.25rem; +} + +.leading-10 { + line-height: 2.5rem; +} + +.leading-none { + line-height: 1; +} + +.leading-tight { + line-height: 1.25; +} + +.leading-snug { + line-height: 1.375; +} + +.leading-normal { + line-height: 1.5; +} + +.leading-relaxed { + line-height: 1.625; +} + +.leading-loose { + line-height: 2; +} + +.list-inside { + list-style-position: inside; +} + +.list-outside { + list-style-position: outside; +} + +.list-none { + list-style-type: none; +} + +.list-disc { + list-style-type: disc; +} + +.list-decimal { + list-style-type: decimal; +} + +.m-0 { + margin: 0; +} + +.m-1 { + margin: 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-8 { + margin: 2rem; +} + +.m-10 { + margin: 2.5rem; +} + +.m-12 { + margin: 3rem; +} + +.m-16 { + margin: 4rem; +} + +.m-20 { + margin: 5rem; +} + +.m-24 { + margin: 6rem; +} + +.m-32 { + margin: 8rem; +} + +.m-40 { + margin: 10rem; +} + +.m-48 { + margin: 12rem; +} + +.m-56 { + margin: 14rem; +} + +.m-64 { + margin: 16rem; +} + +.m-auto { + margin: auto; +} + +.m-px { + margin: 1px; +} + +.-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-8 { + margin: -2rem; +} + +.-m-10 { + margin: -2.5rem; +} + +.-m-12 { + margin: -3rem; +} + +.-m-16 { + margin: -4rem; +} + +.-m-20 { + margin: -5rem; +} + +.-m-24 { + margin: -6rem; +} + +.-m-32 { + margin: -8rem; +} + +.-m-40 { + margin: -10rem; +} + +.-m-48 { + margin: -12rem; +} + +.-m-56 { + margin: -14rem; +} + +.-m-64 { + margin: -16rem; +} + +.-m-px { + margin: -1px; +} + +.my-0 { + margin-top: 0; + margin-bottom: 0; +} + +.mx-0 { + margin-left: 0; + margin-right: 0; +} + +.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-8 { + margin-top: 2rem; + margin-bottom: 2rem; +} + +.mx-8 { + margin-left: 2rem; + margin-right: 2rem; +} + +.my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; +} + +.mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; +} + +.my-12 { + margin-top: 3rem; + margin-bottom: 3rem; +} + +.mx-12 { + margin-left: 3rem; + margin-right: 3rem; +} + +.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-32 { + margin-top: 8rem; + margin-bottom: 8rem; +} + +.mx-32 { + margin-left: 8rem; + margin-right: 8rem; +} + +.my-40 { + margin-top: 10rem; + margin-bottom: 10rem; +} + +.mx-40 { + margin-left: 10rem; + margin-right: 10rem; +} + +.my-48 { + margin-top: 12rem; + margin-bottom: 12rem; +} + +.mx-48 { + margin-left: 12rem; + margin-right: 12rem; +} + +.my-56 { + margin-top: 14rem; + margin-bottom: 14rem; +} + +.mx-56 { + margin-left: 14rem; + margin-right: 14rem; +} + +.my-64 { + margin-top: 16rem; + margin-bottom: 16rem; +} + +.mx-64 { + margin-left: 16rem; + margin-right: 16rem; +} + +.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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; +} + +.-mx-8 { + margin-left: -2rem; + margin-right: -2rem; +} + +.-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; +} + +.-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; +} + +.-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; +} + +.-mx-12 { + margin-left: -3rem; + margin-right: -3rem; +} + +.-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-32 { + margin-top: -8rem; + margin-bottom: -8rem; +} + +.-mx-32 { + margin-left: -8rem; + margin-right: -8rem; +} + +.-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; +} + +.-mx-40 { + margin-left: -10rem; + margin-right: -10rem; +} + +.-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; +} + +.-mx-48 { + margin-left: -12rem; + margin-right: -12rem; +} + +.-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; +} + +.-mx-56 { + margin-left: -14rem; + margin-right: -14rem; +} + +.-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; +} + +.-mx-64 { + margin-left: -16rem; + margin-right: -16rem; +} + +.-my-px { + margin-top: -1px; + margin-bottom: -1px; +} + +.-mx-px { + margin-left: -1px; + margin-right: -1px; +} + +.mt-0 { + margin-top: 0; +} + +.mr-0 { + margin-right: 0; +} + +.mb-0 { + margin-bottom: 0; +} + +.ml-0 { + margin-left: 0; +} + +.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-8 { + margin-top: 2rem; +} + +.mr-8 { + margin-right: 2rem; +} + +.mb-8 { + margin-bottom: 2rem; +} + +.ml-8 { + margin-left: 2rem; +} + +.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-12 { + margin-top: 3rem; +} + +.mr-12 { + margin-right: 3rem; +} + +.mb-12 { + margin-bottom: 3rem; +} + +.ml-12 { + margin-left: 3rem; +} + +.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-32 { + margin-top: 8rem; +} + +.mr-32 { + margin-right: 8rem; +} + +.mb-32 { + margin-bottom: 8rem; +} + +.ml-32 { + margin-left: 8rem; +} + +.mt-40 { + margin-top: 10rem; +} + +.mr-40 { + margin-right: 10rem; +} + +.mb-40 { + margin-bottom: 10rem; +} + +.ml-40 { + margin-left: 10rem; +} + +.mt-48 { + margin-top: 12rem; +} + +.mr-48 { + margin-right: 12rem; +} + +.mb-48 { + margin-bottom: 12rem; +} + +.ml-48 { + margin-left: 12rem; +} + +.mt-56 { + margin-top: 14rem; +} + +.mr-56 { + margin-right: 14rem; +} + +.mb-56 { + margin-bottom: 14rem; +} + +.ml-56 { + margin-left: 14rem; +} + +.mt-64 { + margin-top: 16rem; +} + +.mr-64 { + margin-right: 16rem; +} + +.mb-64 { + margin-bottom: 16rem; +} + +.ml-64 { + margin-left: 16rem; +} + +.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-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-8 { + margin-top: -2rem; +} + +.-mr-8 { + margin-right: -2rem; +} + +.-mb-8 { + margin-bottom: -2rem; +} + +.-ml-8 { + margin-left: -2rem; +} + +.-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-12 { + margin-top: -3rem; +} + +.-mr-12 { + margin-right: -3rem; +} + +.-mb-12 { + margin-bottom: -3rem; +} + +.-ml-12 { + margin-left: -3rem; +} + +.-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-32 { + margin-top: -8rem; +} + +.-mr-32 { + margin-right: -8rem; +} + +.-mb-32 { + margin-bottom: -8rem; +} + +.-ml-32 { + margin-left: -8rem; +} + +.-mt-40 { + margin-top: -10rem; +} + +.-mr-40 { + margin-right: -10rem; +} + +.-mb-40 { + margin-bottom: -10rem; +} + +.-ml-40 { + margin-left: -10rem; +} + +.-mt-48 { + margin-top: -12rem; +} + +.-mr-48 { + margin-right: -12rem; +} + +.-mb-48 { + margin-bottom: -12rem; +} + +.-ml-48 { + margin-left: -12rem; +} + +.-mt-56 { + margin-top: -14rem; +} + +.-mr-56 { + margin-right: -14rem; +} + +.-mb-56 { + margin-bottom: -14rem; +} + +.-ml-56 { + margin-left: -14rem; +} + +.-mt-64 { + margin-top: -16rem; +} + +.-mr-64 { + margin-right: -16rem; +} + +.-mb-64 { + margin-bottom: -16rem; +} + +.-ml-64 { + margin-left: -16rem; +} + +.-mt-px { + margin-top: -1px; +} + +.-mr-px { + margin-right: -1px; +} + +.-mb-px { + margin-bottom: -1px; +} + +.-ml-px { + margin-left: -1px; +} + +.max-h-0 { + max-height: 0; +} + +.max-h-full { + max-height: 100%; +} + +.max-h-screen { + max-height: 100vh; +} + +.max-h-xl { + max-height: 36rem; +} + +.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-full { + max-width: 100%; +} + +.max-w-screen-sm { + max-width: 640px; +} + +.max-w-screen-md { + max-width: 768px; +} + +.max-w-screen-lg { + max-width: 1024px; +} + +.max-w-screen-xl { + max-width: 1280px; +} + +.min-h-0 { + min-height: 0; +} + +.min-h-full { + min-height: 100%; +} + +.min-h-screen { + min-height: 100vh; +} + +.min-w-0 { + min-width: 0; +} + +.min-w-full { + min-width: 100%; +} + +.object-contain { + -o-object-fit: contain; + object-fit: contain; +} + +.object-cover { + -o-object-fit: cover; + object-fit: cover; +} + +.object-fill { + -o-object-fit: fill; + object-fit: fill; +} + +.object-none { + -o-object-fit: none; + object-fit: none; +} + +.object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; +} + +.object-bottom { + -o-object-position: bottom; + object-position: bottom; +} + +.object-center { + -o-object-position: center; + object-position: center; +} + +.object-left { + -o-object-position: left; + object-position: left; +} + +.object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; +} + +.object-left-top { + -o-object-position: left top; + object-position: left top; +} + +.object-right { + -o-object-position: right; + object-position: right; +} + +.object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; +} + +.object-right-top { + -o-object-position: right top; + object-position: right top; +} + +.object-top { + -o-object-position: top; + object-position: top; +} + +.opacity-0 { + opacity: 0; +} + +.opacity-25 { + opacity: 0.25; +} + +.opacity-50 { + opacity: 0.5; +} + +.opacity-75 { + opacity: 0.75; +} + +.opacity-100 { + opacity: 1; +} + +.hover\:opacity-0:hover { + opacity: 0; +} + +.hover\:opacity-25:hover { + opacity: 0.25; +} + +.hover\:opacity-50:hover { + opacity: 0.5; +} + +.hover\:opacity-75:hover { + opacity: 0.75; +} + +.hover\:opacity-100:hover { + opacity: 1; +} + +.focus\:opacity-0:focus { + opacity: 0; +} + +.focus\:opacity-25:focus { + opacity: 0.25; +} + +.focus\:opacity-50:focus { + opacity: 0.5; +} + +.focus\:opacity-75:focus { + opacity: 0.75; +} + +.focus\:opacity-100:focus { + opacity: 1; +} + +.outline-none { + outline: 0; +} + +.focus\:outline-none:focus { + outline: 0; +} + +.overflow-auto { + overflow: auto; +} + +.overflow-hidden { + overflow: hidden; +} + +.overflow-visible { + overflow: visible; +} + +.overflow-scroll { + overflow: scroll; +} + +.overflow-x-auto { + overflow-x: auto; +} + +.overflow-y-auto { + overflow-y: auto; +} + +.overflow-x-hidden { + overflow-x: hidden; +} + +.overflow-y-hidden { + overflow-y: hidden; +} + +.overflow-x-visible { + overflow-x: visible; +} + +.overflow-y-visible { + overflow-y: visible; +} + +.overflow-x-scroll { + overflow-x: scroll; +} + +.overflow-y-scroll { + overflow-y: scroll; +} + +.scrolling-touch { + -webkit-overflow-scrolling: touch; +} + +.scrolling-auto { + -webkit-overflow-scrolling: auto; +} + +.p-0 { + padding: 0; +} + +.p-1 { + padding: 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-8 { + padding: 2rem; +} + +.p-10 { + padding: 2.5rem; +} + +.p-12 { + padding: 3rem; +} + +.p-16 { + padding: 4rem; +} + +.p-20 { + padding: 5rem; +} + +.p-24 { + padding: 6rem; +} + +.p-32 { + padding: 8rem; +} + +.p-40 { + padding: 10rem; +} + +.p-48 { + padding: 12rem; +} + +.p-56 { + padding: 14rem; +} + +.p-64 { + padding: 16rem; +} + +.p-px { + padding: 1px; +} + +.py-0 { + padding-top: 0; + padding-bottom: 0; +} + +.px-0 { + padding-left: 0; + padding-right: 0; +} + +.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-8 { + padding-top: 2rem; + padding-bottom: 2rem; +} + +.px-8 { + padding-left: 2rem; + padding-right: 2rem; +} + +.py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; +} + +.px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; +} + +.py-12 { + padding-top: 3rem; + padding-bottom: 3rem; +} + +.px-12 { + padding-left: 3rem; + padding-right: 3rem; +} + +.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-32 { + padding-top: 8rem; + padding-bottom: 8rem; +} + +.px-32 { + padding-left: 8rem; + padding-right: 8rem; +} + +.py-40 { + padding-top: 10rem; + padding-bottom: 10rem; +} + +.px-40 { + padding-left: 10rem; + padding-right: 10rem; +} + +.py-48 { + padding-top: 12rem; + padding-bottom: 12rem; +} + +.px-48 { + padding-left: 12rem; + padding-right: 12rem; +} + +.py-56 { + padding-top: 14rem; + padding-bottom: 14rem; +} + +.px-56 { + padding-left: 14rem; + padding-right: 14rem; +} + +.py-64 { + padding-top: 16rem; + padding-bottom: 16rem; +} + +.px-64 { + padding-left: 16rem; + padding-right: 16rem; +} + +.py-px { + padding-top: 1px; + padding-bottom: 1px; +} + +.px-px { + padding-left: 1px; + padding-right: 1px; +} + +.pt-0 { + padding-top: 0; +} + +.pr-0 { + padding-right: 0; +} + +.pb-0 { + padding-bottom: 0; +} + +.pl-0 { + padding-left: 0; +} + +.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-8 { + padding-top: 2rem; +} + +.pr-8 { + padding-right: 2rem; +} + +.pb-8 { + padding-bottom: 2rem; +} + +.pl-8 { + padding-left: 2rem; +} + +.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-12 { + padding-top: 3rem; +} + +.pr-12 { + padding-right: 3rem; +} + +.pb-12 { + padding-bottom: 3rem; +} + +.pl-12 { + padding-left: 3rem; +} + +.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-32 { + padding-top: 8rem; +} + +.pr-32 { + padding-right: 8rem; +} + +.pb-32 { + padding-bottom: 8rem; +} + +.pl-32 { + padding-left: 8rem; +} + +.pt-40 { + padding-top: 10rem; +} + +.pr-40 { + padding-right: 10rem; +} + +.pb-40 { + padding-bottom: 10rem; +} + +.pl-40 { + padding-left: 10rem; +} + +.pt-48 { + padding-top: 12rem; +} + +.pr-48 { + padding-right: 12rem; +} + +.pb-48 { + padding-bottom: 12rem; +} + +.pl-48 { + padding-left: 12rem; +} + +.pt-56 { + padding-top: 14rem; +} + +.pr-56 { + padding-right: 14rem; +} + +.pb-56 { + padding-bottom: 14rem; +} + +.pl-56 { + padding-left: 14rem; +} + +.pt-64 { + padding-top: 16rem; +} + +.pr-64 { + padding-right: 16rem; +} + +.pb-64 { + padding-bottom: 16rem; +} + +.pl-64 { + padding-left: 16rem; +} + +.pt-px { + padding-top: 1px; +} + +.pr-px { + padding-right: 1px; +} + +.pb-px { + padding-bottom: 1px; +} + +.pl-px { + padding-left: 1px; +} + +.placeholder-transparent::-moz-placeholder { + color: transparent; +} + +.placeholder-transparent:-ms-input-placeholder { + color: transparent; +} + +.placeholder-transparent::-ms-input-placeholder { + color: transparent; +} + +.placeholder-transparent::placeholder { + color: transparent; +} + +.placeholder-white::-moz-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.placeholder-white:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.placeholder-white::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.placeholder-white::placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.placeholder-black::-moz-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.placeholder-black:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.placeholder-black::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.placeholder-black::placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.placeholder-gray-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.placeholder-gray-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.placeholder-gray-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.placeholder-gray-50::placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.placeholder-gray-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.placeholder-gray-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.placeholder-gray-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.placeholder-gray-100::placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.placeholder-gray-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.placeholder-gray-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.placeholder-gray-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.placeholder-gray-200::placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.placeholder-gray-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.placeholder-gray-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.placeholder-gray-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.placeholder-gray-300::placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.placeholder-gray-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.placeholder-gray-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.placeholder-gray-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.placeholder-gray-400::placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.placeholder-gray-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.placeholder-gray-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.placeholder-gray-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.placeholder-gray-500::placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.placeholder-gray-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.placeholder-gray-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.placeholder-gray-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.placeholder-gray-600::placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.placeholder-gray-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.placeholder-gray-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.placeholder-gray-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.placeholder-gray-700::placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.placeholder-gray-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.placeholder-gray-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.placeholder-gray-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.placeholder-gray-800::placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.placeholder-gray-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.placeholder-gray-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.placeholder-gray-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.placeholder-gray-900::placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-50::placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-100::placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-200::placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-300::placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-400::placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-500::placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-600::placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-700::placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-800::placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.placeholder-cool-gray-900::placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.placeholder-red-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.placeholder-red-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.placeholder-red-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.placeholder-red-50::placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.placeholder-red-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.placeholder-red-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.placeholder-red-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.placeholder-red-100::placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.placeholder-red-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.placeholder-red-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.placeholder-red-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.placeholder-red-200::placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.placeholder-red-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.placeholder-red-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.placeholder-red-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.placeholder-red-300::placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.placeholder-red-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.placeholder-red-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.placeholder-red-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.placeholder-red-400::placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.placeholder-red-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.placeholder-red-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.placeholder-red-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.placeholder-red-500::placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.placeholder-red-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.placeholder-red-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.placeholder-red-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.placeholder-red-600::placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.placeholder-red-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.placeholder-red-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.placeholder-red-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.placeholder-red-700::placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.placeholder-red-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.placeholder-red-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.placeholder-red-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.placeholder-red-800::placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.placeholder-red-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-red-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-red-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-red-900::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-orange-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.placeholder-orange-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.placeholder-orange-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.placeholder-orange-50::placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.placeholder-orange-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.placeholder-orange-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.placeholder-orange-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.placeholder-orange-100::placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.placeholder-orange-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.placeholder-orange-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.placeholder-orange-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.placeholder-orange-200::placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.placeholder-orange-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.placeholder-orange-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.placeholder-orange-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.placeholder-orange-300::placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.placeholder-orange-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.placeholder-orange-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.placeholder-orange-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.placeholder-orange-400::placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.placeholder-orange-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.placeholder-orange-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.placeholder-orange-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.placeholder-orange-500::placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.placeholder-orange-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.placeholder-orange-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.placeholder-orange-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.placeholder-orange-600::placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.placeholder-orange-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.placeholder-orange-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.placeholder-orange-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.placeholder-orange-700::placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.placeholder-orange-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.placeholder-orange-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.placeholder-orange-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.placeholder-orange-800::placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.placeholder-orange-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-orange-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-orange-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-orange-900::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.placeholder-yellow-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.placeholder-yellow-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.placeholder-yellow-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.placeholder-yellow-50::placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.placeholder-yellow-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.placeholder-yellow-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.placeholder-yellow-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.placeholder-yellow-100::placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.placeholder-yellow-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.placeholder-yellow-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.placeholder-yellow-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.placeholder-yellow-200::placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.placeholder-yellow-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.placeholder-yellow-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.placeholder-yellow-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.placeholder-yellow-300::placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.placeholder-yellow-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.placeholder-yellow-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.placeholder-yellow-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.placeholder-yellow-400::placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.placeholder-yellow-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.placeholder-yellow-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.placeholder-yellow-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.placeholder-yellow-500::placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.placeholder-yellow-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.placeholder-yellow-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.placeholder-yellow-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.placeholder-yellow-600::placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.placeholder-yellow-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.placeholder-yellow-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.placeholder-yellow-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.placeholder-yellow-700::placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.placeholder-yellow-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.placeholder-yellow-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.placeholder-yellow-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.placeholder-yellow-800::placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.placeholder-yellow-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.placeholder-yellow-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.placeholder-yellow-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.placeholder-yellow-900::placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.placeholder-green-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.placeholder-green-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.placeholder-green-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.placeholder-green-50::placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.placeholder-green-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.placeholder-green-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.placeholder-green-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.placeholder-green-100::placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.placeholder-green-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.placeholder-green-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.placeholder-green-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.placeholder-green-200::placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.placeholder-green-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.placeholder-green-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.placeholder-green-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.placeholder-green-300::placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.placeholder-green-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.placeholder-green-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.placeholder-green-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.placeholder-green-400::placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.placeholder-green-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.placeholder-green-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.placeholder-green-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.placeholder-green-500::placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.placeholder-green-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.placeholder-green-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.placeholder-green-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.placeholder-green-600::placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.placeholder-green-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.placeholder-green-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.placeholder-green-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.placeholder-green-700::placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.placeholder-green-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.placeholder-green-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.placeholder-green-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.placeholder-green-800::placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.placeholder-green-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.placeholder-green-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.placeholder-green-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.placeholder-green-900::placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.placeholder-teal-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.placeholder-teal-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.placeholder-teal-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.placeholder-teal-50::placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.placeholder-teal-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.placeholder-teal-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.placeholder-teal-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.placeholder-teal-100::placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.placeholder-teal-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.placeholder-teal-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.placeholder-teal-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.placeholder-teal-200::placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.placeholder-teal-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.placeholder-teal-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.placeholder-teal-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.placeholder-teal-300::placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.placeholder-teal-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.placeholder-teal-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.placeholder-teal-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.placeholder-teal-400::placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.placeholder-teal-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.placeholder-teal-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.placeholder-teal-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.placeholder-teal-500::placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.placeholder-teal-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.placeholder-teal-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.placeholder-teal-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.placeholder-teal-600::placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.placeholder-teal-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.placeholder-teal-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.placeholder-teal-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.placeholder-teal-700::placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.placeholder-teal-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.placeholder-teal-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.placeholder-teal-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.placeholder-teal-800::placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.placeholder-teal-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.placeholder-teal-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.placeholder-teal-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.placeholder-teal-900::placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.placeholder-blue-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-blue-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-blue-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-blue-50::placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-blue-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-100::placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.placeholder-blue-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.placeholder-blue-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.placeholder-blue-200::placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.placeholder-blue-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-300::placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.placeholder-blue-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.placeholder-blue-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.placeholder-blue-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.placeholder-blue-400::placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.placeholder-blue-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.placeholder-blue-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.placeholder-blue-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.placeholder-blue-500::placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.placeholder-blue-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.placeholder-blue-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.placeholder-blue-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.placeholder-blue-600::placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.placeholder-blue-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.placeholder-blue-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.placeholder-blue-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.placeholder-blue-700::placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.placeholder-blue-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.placeholder-blue-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.placeholder-blue-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.placeholder-blue-800::placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.placeholder-blue-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.placeholder-blue-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.placeholder-blue-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.placeholder-blue-900::placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.placeholder-indigo-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-50::placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-100::placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.placeholder-indigo-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.placeholder-indigo-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.placeholder-indigo-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.placeholder-indigo-200::placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.placeholder-indigo-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.placeholder-indigo-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.placeholder-indigo-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.placeholder-indigo-300::placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.placeholder-indigo-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.placeholder-indigo-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.placeholder-indigo-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.placeholder-indigo-400::placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.placeholder-indigo-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.placeholder-indigo-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.placeholder-indigo-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.placeholder-indigo-500::placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.placeholder-indigo-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.placeholder-indigo-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.placeholder-indigo-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.placeholder-indigo-600::placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.placeholder-indigo-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.placeholder-indigo-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.placeholder-indigo-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.placeholder-indigo-700::placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.placeholder-indigo-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.placeholder-indigo-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.placeholder-indigo-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.placeholder-indigo-800::placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.placeholder-indigo-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.placeholder-indigo-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.placeholder-indigo-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.placeholder-indigo-900::placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.placeholder-purple-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-purple-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-purple-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-purple-50::placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.placeholder-purple-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-100::placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-200::placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.placeholder-purple-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.placeholder-purple-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.placeholder-purple-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.placeholder-purple-300::placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.placeholder-purple-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.placeholder-purple-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.placeholder-purple-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.placeholder-purple-400::placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.placeholder-purple-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.placeholder-purple-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.placeholder-purple-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.placeholder-purple-500::placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.placeholder-purple-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.placeholder-purple-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.placeholder-purple-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.placeholder-purple-600::placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.placeholder-purple-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.placeholder-purple-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.placeholder-purple-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.placeholder-purple-700::placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.placeholder-purple-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.placeholder-purple-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.placeholder-purple-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.placeholder-purple-800::placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.placeholder-purple-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.placeholder-purple-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.placeholder-purple-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.placeholder-purple-900::placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.placeholder-pink-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.placeholder-pink-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.placeholder-pink-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.placeholder-pink-50::placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.placeholder-pink-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.placeholder-pink-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.placeholder-pink-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.placeholder-pink-100::placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.placeholder-pink-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.placeholder-pink-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.placeholder-pink-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.placeholder-pink-200::placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.placeholder-pink-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.placeholder-pink-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.placeholder-pink-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.placeholder-pink-300::placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.placeholder-pink-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.placeholder-pink-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.placeholder-pink-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.placeholder-pink-400::placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.placeholder-pink-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.placeholder-pink-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.placeholder-pink-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.placeholder-pink-500::placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.placeholder-pink-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.placeholder-pink-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.placeholder-pink-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.placeholder-pink-600::placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.placeholder-pink-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.placeholder-pink-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.placeholder-pink-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.placeholder-pink-700::placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.placeholder-pink-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.placeholder-pink-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.placeholder-pink-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.placeholder-pink-800::placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.placeholder-pink-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.placeholder-pink-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.placeholder-pink-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.placeholder-pink-900::placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent; +} + +.focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent; +} + +.focus\:placeholder-transparent:focus::-ms-input-placeholder { + color: transparent; +} + +.focus\:placeholder-transparent:focus::placeholder { + color: transparent; +} + +.focus\:placeholder-white:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-white:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-white:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-white:focus::placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-black:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.focus\:placeholder-black:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.focus\:placeholder-black:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.focus\:placeholder-black:focus::placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-100:focus::placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-200:focus::placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-300:focus::placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-400:focus::placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-500:focus::placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-600:focus::placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-700:focus::placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-800:focus::placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.focus\:placeholder-gray-900:focus::placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-100:focus::placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-200:focus::placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-300:focus::placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-400:focus::placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-500:focus::placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-600:focus::placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-700:focus::placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-800:focus::placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.focus\:placeholder-cool-gray-900:focus::placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-300:focus::placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-400:focus::placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-500:focus::placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-600:focus::placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-700:focus::placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-800:focus::placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-red-900:focus::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-100:focus::placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-300:focus::placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-400:focus::placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-500:focus::placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-600:focus::placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-700:focus::placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-800:focus::placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-orange-900:focus::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-300:focus::placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-400:focus::placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-500:focus::placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-600:focus::placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-700:focus::placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-800:focus::placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.focus\:placeholder-yellow-900:focus::placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-100:focus::placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-200:focus::placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-300:focus::placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-400:focus::placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-500:focus::placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-600:focus::placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-700:focus::placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-800:focus::placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.focus\:placeholder-green-900:focus::placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-50:focus::placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-100:focus::placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-200:focus::placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-300:focus::placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-400:focus::placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-500:focus::placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-600:focus::placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-700:focus::placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-800:focus::placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.focus\:placeholder-teal-900:focus::placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-50:focus::placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-100:focus::placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-200:focus::placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-300:focus::placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-400:focus::placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-500:focus::placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-600:focus::placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-700:focus::placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-800:focus::placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.focus\:placeholder-blue-900:focus::placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-100:focus::placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-200:focus::placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-300:focus::placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-400:focus::placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-500:focus::placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-600:focus::placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-700:focus::placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-800:focus::placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.focus\:placeholder-indigo-900:focus::placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-100:focus::placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-200:focus::placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-300:focus::placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-400:focus::placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-500:focus::placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-600:focus::placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-700:focus::placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-800:focus::placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.focus\:placeholder-purple-900:focus::placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-300:focus::placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-400:focus::placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-500:focus::placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-600:focus::placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-700:focus::placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-800:focus::placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.focus\:placeholder-pink-900:focus::placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-transparent::-moz-placeholder { + color: transparent; +} + +.theme-dark .dark\:placeholder-transparent:-ms-input-placeholder { + color: transparent; +} + +.theme-dark .dark\:placeholder-transparent::-ms-input-placeholder { + color: transparent; +} + +.theme-dark .dark\:placeholder-transparent::placeholder { + color: transparent; +} + +.theme-dark .dark\:placeholder-white::-moz-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-white:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-white::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-white::placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-black::-moz-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-black:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-black::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-black::placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-50::placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-100::placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-200::placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-300::placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-400::placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-500::placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-600::placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-700::placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-800::placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-gray-900::placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-50::placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-100::placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-200::placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-300::placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-400::placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-500::placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-600::placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-700::placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-800::placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-cool-gray-900::placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-50::placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-100::placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-200::placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-300::placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-400::placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-500::placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-600::placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-700::placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-800::placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-red-900::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-50::placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-100::placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-200::placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-300::placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-400::placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-500::placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-600::placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-700::placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-800::placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-orange-900::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-50::placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-100::placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-200::placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-300::placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-400::placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-500::placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-600::placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-700::placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-800::placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-yellow-900::placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-50::placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-100::placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-200::placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-300::placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-400::placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-500::placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-600::placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-700::placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-800::placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-green-900::placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-50::placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-100::placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-200::placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-300::placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-400::placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-500::placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-600::placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-700::placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-800::placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-teal-900::placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-50::placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-100::placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-200::placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-300::placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-400::placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-500::placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-600::placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-700::placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-800::placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-blue-900::placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-50::placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-100::placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-200::placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-300::placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-400::placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-500::placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-600::placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-700::placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-800::placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-indigo-900::placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-50::placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-100::placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-200::placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-300::placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-400::placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-500::placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-600::placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-700::placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-800::placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-purple-900::placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-50::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-50:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-50::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-50::placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-100::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-100:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-100::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-100::placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-200::-moz-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-200:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-200::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-200::placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-300::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-300:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-300::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-300::placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-400::-moz-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-400:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-400::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-400::placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-500::-moz-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-500:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-500::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-500::placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-600::-moz-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-600:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-600::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-600::placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-700::-moz-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-700:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-700::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-700::placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-800::-moz-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-800:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-800::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-800::placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-900::-moz-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-900:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-900::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:placeholder-pink-900::placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-transparent:focus::-moz-placeholder { + color: transparent; +} + +.theme-dark .dark\:focus\:placeholder-transparent:focus:-ms-input-placeholder { + color: transparent; +} + +.theme-dark .dark\:focus\:placeholder-transparent:focus::-ms-input-placeholder { + color: transparent; +} + +.theme-dark .dark\:focus\:placeholder-transparent:focus::placeholder { + color: transparent; +} + +.theme-dark .dark\:focus\:placeholder-white:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-white:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-white:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-white:focus::placeholder { + --placeholder-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-black:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-black:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-black:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-black:focus::placeholder { + --placeholder-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-100:focus::placeholder { + --placeholder-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-200:focus::placeholder { + --placeholder-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-300:focus::placeholder { + --placeholder-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-400:focus::placeholder { + --placeholder-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-500:focus::placeholder { + --placeholder-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-600:focus::placeholder { + --placeholder-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-700:focus::placeholder { + --placeholder-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-800:focus::placeholder { + --placeholder-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-gray-900:focus::placeholder { + --placeholder-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-100:focus::placeholder { + --placeholder-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-200:focus::placeholder { + --placeholder-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-300:focus::placeholder { + --placeholder-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-400:focus::placeholder { + --placeholder-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-500:focus::placeholder { + --placeholder-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-600:focus::placeholder { + --placeholder-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-700:focus::placeholder { + --placeholder-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-800:focus::placeholder { + --placeholder-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-cool-gray-900:focus::placeholder { + --placeholder-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-300:focus::placeholder { + --placeholder-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-400:focus::placeholder { + --placeholder-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-500:focus::placeholder { + --placeholder-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-600:focus::placeholder { + --placeholder-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-700:focus::placeholder { + --placeholder-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-800:focus::placeholder { + --placeholder-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-red-900:focus::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-100:focus::placeholder { + --placeholder-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-300:focus::placeholder { + --placeholder-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-400:focus::placeholder { + --placeholder-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-500:focus::placeholder { + --placeholder-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-600:focus::placeholder { + --placeholder-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-700:focus::placeholder { + --placeholder-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-800:focus::placeholder { + --placeholder-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-orange-900:focus::placeholder { + --placeholder-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-300:focus::placeholder { + --placeholder-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-400:focus::placeholder { + --placeholder-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-500:focus::placeholder { + --placeholder-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-600:focus::placeholder { + --placeholder-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-700:focus::placeholder { + --placeholder-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-800:focus::placeholder { + --placeholder-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-yellow-900:focus::placeholder { + --placeholder-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-100:focus::placeholder { + --placeholder-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-200:focus::placeholder { + --placeholder-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-300:focus::placeholder { + --placeholder-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-400:focus::placeholder { + --placeholder-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-500:focus::placeholder { + --placeholder-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-600:focus::placeholder { + --placeholder-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-700:focus::placeholder { + --placeholder-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-800:focus::placeholder { + --placeholder-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-green-900:focus::placeholder { + --placeholder-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-50:focus::placeholder { + --placeholder-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-100:focus::placeholder { + --placeholder-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-200:focus::placeholder { + --placeholder-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-300:focus::placeholder { + --placeholder-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-400:focus::placeholder { + --placeholder-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-500:focus::placeholder { + --placeholder-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-600:focus::placeholder { + --placeholder-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-700:focus::placeholder { + --placeholder-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-800:focus::placeholder { + --placeholder-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-teal-900:focus::placeholder { + --placeholder-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-50:focus::placeholder { + --placeholder-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-100:focus::placeholder { + --placeholder-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-200:focus::placeholder { + --placeholder-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-300:focus::placeholder { + --placeholder-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-400:focus::placeholder { + --placeholder-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-500:focus::placeholder { + --placeholder-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-600:focus::placeholder { + --placeholder-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-700:focus::placeholder { + --placeholder-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-800:focus::placeholder { + --placeholder-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-blue-900:focus::placeholder { + --placeholder-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-100:focus::placeholder { + --placeholder-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-200:focus::placeholder { + --placeholder-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-300:focus::placeholder { + --placeholder-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-400:focus::placeholder { + --placeholder-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-500:focus::placeholder { + --placeholder-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-600:focus::placeholder { + --placeholder-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-700:focus::placeholder { + --placeholder-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-800:focus::placeholder { + --placeholder-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-indigo-900:focus::placeholder { + --placeholder-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-50:focus::placeholder { + --placeholder-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-100:focus::placeholder { + --placeholder-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-200:focus::placeholder { + --placeholder-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-300:focus::placeholder { + --placeholder-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-400:focus::placeholder { + --placeholder-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-500:focus::placeholder { + --placeholder-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-600:focus::placeholder { + --placeholder-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-700:focus::placeholder { + --placeholder-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-800:focus::placeholder { + --placeholder-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-purple-900:focus::placeholder { + --placeholder-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-50:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-50:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-50:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-50:focus::placeholder { + --placeholder-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-100:focus::placeholder { + --placeholder-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-200:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-200:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-200:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-200:focus::placeholder { + --placeholder-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-300:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-300:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-300:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-300:focus::placeholder { + --placeholder-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-400:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-400:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-400:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-400:focus::placeholder { + --placeholder-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-500:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-500:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-500:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-500:focus::placeholder { + --placeholder-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-600:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-600:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-600:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-600:focus::placeholder { + --placeholder-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-700:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-700:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-700:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-700:focus::placeholder { + --placeholder-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-800:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-800:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-800:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-800:focus::placeholder { + --placeholder-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-900:focus::-moz-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-900:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-900:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.theme-dark .dark\:focus\:placeholder-pink-900:focus::placeholder { + --placeholder-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--placeholder-opacity)); +} + +.placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; +} + +.placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; +} + +.placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; +} + +.placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; +} + +.placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; +} + +.placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; +} + +.placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; +} + +.placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; +} + +.placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; +} + +.placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; +} + +.placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; +} + +.placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; +} + +.placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; +} + +.placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; +} + +.placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; +} + +.placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; +} + +.placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; +} + +.focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; +} + +.focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; +} + +.focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; +} + +.focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; +} + +.focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; +} + +.pointer-events-none { + pointer-events: none; +} + +.pointer-events-auto { + pointer-events: auto; +} + +.static { + position: static; +} + +.fixed { + position: fixed; +} + +.absolute { + position: absolute; +} + +.relative { + position: relative; +} + +.sticky { + position: -webkit-sticky; + position: sticky; +} + +.inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; +} + +.inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; +} + +.inset-y-0 { + top: 0; + bottom: 0; +} + +.inset-x-0 { + right: 0; + left: 0; +} + +.inset-y-auto { + top: auto; + bottom: auto; +} + +.inset-x-auto { + right: auto; + left: auto; +} + +.top-0 { + top: 0; +} + +.right-0 { + right: 0; +} + +.bottom-0 { + bottom: 0; +} + +.left-0 { + left: 0; +} + +.top-auto { + top: auto; +} + +.right-auto { + right: auto; +} + +.bottom-auto { + bottom: auto; +} + +.left-auto { + left: auto; +} + +.resize-none { + resize: none; +} + +.resize-y { + resize: vertical; +} + +.resize-x { + resize: horizontal; +} + +.resize { + resize: both; +} + +.shadow-xs { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); +} + +.shadow-sm { + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); +} + +.shadow { + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); +} + +.shadow-md { + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); +} + +.shadow-lg { + box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); +} + +.shadow-xl { + box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); +} + +.shadow-2xl { + box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); +} + +.shadow-inner { + box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); +} + +.shadow-outline { + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); +} + +.shadow-none { + box-shadow: none; +} + +.focus\:shadow-xs:focus { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); +} + +.focus\:shadow-sm:focus { + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); +} + +.focus\:shadow:focus { + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); +} + +.focus\:shadow-md:focus { + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); +} + +.focus\:shadow-lg:focus { + box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); +} + +.focus\:shadow-xl:focus { + box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); +} + +.focus\:shadow-2xl:focus { + box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); +} + +.focus\:shadow-inner:focus { + box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); +} + +.focus\:shadow-outline:focus { + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); +} + +.focus\:shadow-none:focus { + box-shadow: none; +} + +.theme-dark .dark\:focus\:shadow-xs:focus { + box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05); +} + +.theme-dark .dark\:focus\:shadow-sm:focus { + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); +} + +.theme-dark .dark\:focus\:shadow:focus { + box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); +} + +.theme-dark .dark\:focus\:shadow-md:focus { + box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); +} + +.theme-dark .dark\:focus\:shadow-lg:focus { + box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); +} + +.theme-dark .dark\:focus\:shadow-xl:focus { + box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); +} + +.theme-dark .dark\:focus\:shadow-2xl:focus { + box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); +} + +.theme-dark .dark\:focus\:shadow-inner:focus { + box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); +} + +.theme-dark .dark\:focus\:shadow-outline:focus { + box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.5); +} + +.theme-dark .dark\:focus\:shadow-none:focus { + box-shadow: none; +} + +.fill-current { + fill: currentColor; +} + +.stroke-current { + stroke: currentColor; +} + +.stroke-0 { + stroke-width: 0; +} + +.stroke-1 { + stroke-width: 1; +} + +.stroke-2 { + stroke-width: 2; +} + +.table-auto { + table-layout: auto; +} + +.table-fixed { + table-layout: fixed; +} + +.text-left { + text-align: left; +} + +.text-center { + text-align: center; +} + +.text-right { + text-align: right; +} + +.text-justify { + text-align: justify; +} + +.text-transparent { + color: transparent; +} + +.text-white { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.text-black { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.text-gray-50 { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.text-gray-100 { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.text-gray-200 { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.text-gray-300 { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.text-gray-400 { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.text-gray-500 { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.text-gray-600 { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.text-gray-700 { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.text-gray-800 { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.text-gray-900 { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.text-cool-gray-50 { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.text-cool-gray-100 { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.text-cool-gray-200 { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.text-cool-gray-300 { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.text-cool-gray-400 { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.text-cool-gray-500 { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.text-cool-gray-600 { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.text-cool-gray-700 { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.text-cool-gray-800 { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.text-cool-gray-900 { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.text-red-50 { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.text-red-100 { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.text-red-200 { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.text-red-300 { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.text-red-400 { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.text-red-500 { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.text-red-600 { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.text-red-700 { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.text-red-800 { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.text-red-900 { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.text-orange-50 { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.text-orange-100 { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.text-orange-200 { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.text-orange-300 { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.text-orange-400 { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.text-orange-500 { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.text-orange-600 { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.text-orange-700 { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.text-orange-800 { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.text-orange-900 { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.text-yellow-50 { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.text-yellow-100 { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.text-yellow-200 { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.text-yellow-300 { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.text-yellow-400 { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.text-yellow-500 { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.text-yellow-600 { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.text-yellow-700 { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.text-yellow-800 { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.text-yellow-900 { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.text-green-50 { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.text-green-100 { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.text-green-200 { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.text-green-300 { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.text-green-400 { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.text-green-500 { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.text-green-600 { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.text-green-700 { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.text-green-800 { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.text-green-900 { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.text-teal-50 { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.text-teal-100 { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.text-teal-200 { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.text-teal-300 { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.text-teal-400 { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.text-teal-500 { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.text-teal-600 { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.text-teal-700 { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.text-teal-800 { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.text-teal-900 { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.text-blue-50 { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.text-blue-100 { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.text-blue-200 { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.text-blue-300 { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.text-blue-400 { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.text-blue-500 { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.text-blue-600 { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.text-blue-700 { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.text-blue-800 { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.text-blue-900 { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.text-indigo-50 { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.text-indigo-100 { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.text-indigo-200 { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.text-indigo-300 { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.text-indigo-400 { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.text-indigo-500 { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.text-indigo-600 { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.text-indigo-700 { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.text-indigo-800 { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.text-indigo-900 { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.text-purple-50 { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.text-purple-100 { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.text-purple-200 { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.text-purple-300 { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.text-purple-400 { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.text-purple-500 { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.text-purple-600 { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.text-purple-700 { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.text-purple-800 { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.text-purple-900 { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.text-pink-50 { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.text-pink-100 { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.text-pink-200 { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.text-pink-300 { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.text-pink-400 { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.text-pink-500 { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.text-pink-600 { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.text-pink-700 { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.text-pink-800 { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.text-pink-900 { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.focus-within\:text-transparent:focus-within { + color: transparent; +} + +.focus-within\:text-white:focus-within { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.focus-within\:text-black:focus-within { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.focus-within\:text-gray-50:focus-within { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.focus-within\:text-gray-100:focus-within { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.focus-within\:text-gray-200:focus-within { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.focus-within\:text-gray-300:focus-within { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.focus-within\:text-gray-400:focus-within { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.focus-within\:text-gray-500:focus-within { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.focus-within\:text-gray-600:focus-within { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.focus-within\:text-gray-700:focus-within { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.focus-within\:text-gray-800:focus-within { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.focus-within\:text-gray-900:focus-within { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-50:focus-within { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-100:focus-within { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-200:focus-within { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-300:focus-within { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-400:focus-within { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-500:focus-within { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-600:focus-within { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-700:focus-within { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-800:focus-within { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.focus-within\:text-cool-gray-900:focus-within { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.focus-within\:text-red-50:focus-within { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.focus-within\:text-red-100:focus-within { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.focus-within\:text-red-200:focus-within { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.focus-within\:text-red-300:focus-within { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.focus-within\:text-red-400:focus-within { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.focus-within\:text-red-500:focus-within { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.focus-within\:text-red-600:focus-within { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.focus-within\:text-red-700:focus-within { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.focus-within\:text-red-800:focus-within { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.focus-within\:text-red-900:focus-within { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.focus-within\:text-orange-50:focus-within { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.focus-within\:text-orange-100:focus-within { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.focus-within\:text-orange-200:focus-within { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.focus-within\:text-orange-300:focus-within { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.focus-within\:text-orange-400:focus-within { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.focus-within\:text-orange-500:focus-within { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.focus-within\:text-orange-600:focus-within { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.focus-within\:text-orange-700:focus-within { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.focus-within\:text-orange-800:focus-within { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.focus-within\:text-orange-900:focus-within { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.focus-within\:text-yellow-50:focus-within { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.focus-within\:text-yellow-100:focus-within { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.focus-within\:text-yellow-200:focus-within { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.focus-within\:text-yellow-300:focus-within { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.focus-within\:text-yellow-400:focus-within { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.focus-within\:text-yellow-500:focus-within { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.focus-within\:text-yellow-600:focus-within { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.focus-within\:text-yellow-700:focus-within { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.focus-within\:text-yellow-800:focus-within { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.focus-within\:text-yellow-900:focus-within { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.focus-within\:text-green-50:focus-within { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.focus-within\:text-green-100:focus-within { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.focus-within\:text-green-200:focus-within { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.focus-within\:text-green-300:focus-within { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.focus-within\:text-green-400:focus-within { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.focus-within\:text-green-500:focus-within { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.focus-within\:text-green-600:focus-within { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.focus-within\:text-green-700:focus-within { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.focus-within\:text-green-800:focus-within { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.focus-within\:text-green-900:focus-within { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.focus-within\:text-teal-50:focus-within { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.focus-within\:text-teal-100:focus-within { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.focus-within\:text-teal-200:focus-within { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.focus-within\:text-teal-300:focus-within { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.focus-within\:text-teal-400:focus-within { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.focus-within\:text-teal-500:focus-within { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.focus-within\:text-teal-600:focus-within { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.focus-within\:text-teal-700:focus-within { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.focus-within\:text-teal-800:focus-within { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.focus-within\:text-teal-900:focus-within { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.focus-within\:text-blue-50:focus-within { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.focus-within\:text-blue-100:focus-within { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.focus-within\:text-blue-200:focus-within { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.focus-within\:text-blue-300:focus-within { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.focus-within\:text-blue-400:focus-within { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.focus-within\:text-blue-500:focus-within { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.focus-within\:text-blue-600:focus-within { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.focus-within\:text-blue-700:focus-within { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.focus-within\:text-blue-800:focus-within { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.focus-within\:text-blue-900:focus-within { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.focus-within\:text-indigo-50:focus-within { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.focus-within\:text-indigo-100:focus-within { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.focus-within\:text-indigo-200:focus-within { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.focus-within\:text-indigo-300:focus-within { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.focus-within\:text-indigo-400:focus-within { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.focus-within\:text-indigo-500:focus-within { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.focus-within\:text-indigo-600:focus-within { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.focus-within\:text-indigo-700:focus-within { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.focus-within\:text-indigo-800:focus-within { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.focus-within\:text-indigo-900:focus-within { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.focus-within\:text-purple-50:focus-within { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.focus-within\:text-purple-100:focus-within { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.focus-within\:text-purple-200:focus-within { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.focus-within\:text-purple-300:focus-within { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.focus-within\:text-purple-400:focus-within { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.focus-within\:text-purple-500:focus-within { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.focus-within\:text-purple-600:focus-within { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.focus-within\:text-purple-700:focus-within { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.focus-within\:text-purple-800:focus-within { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.focus-within\:text-purple-900:focus-within { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.focus-within\:text-pink-50:focus-within { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.focus-within\:text-pink-100:focus-within { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.focus-within\:text-pink-200:focus-within { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.focus-within\:text-pink-300:focus-within { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.focus-within\:text-pink-400:focus-within { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.focus-within\:text-pink-500:focus-within { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.focus-within\:text-pink-600:focus-within { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.focus-within\:text-pink-700:focus-within { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.focus-within\:text-pink-800:focus-within { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.focus-within\:text-pink-900:focus-within { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.hover\:text-transparent:hover { + color: transparent; +} + +.hover\:text-white:hover { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.hover\:text-black:hover { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.hover\:text-gray-50:hover { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.hover\:text-gray-100:hover { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.hover\:text-gray-200:hover { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.hover\:text-gray-300:hover { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.hover\:text-gray-400:hover { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.hover\:text-gray-500:hover { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.hover\:text-gray-600:hover { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.hover\:text-gray-700:hover { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.hover\:text-gray-800:hover { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.hover\:text-gray-900:hover { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.hover\:text-cool-gray-50:hover { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.hover\:text-cool-gray-100:hover { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.hover\:text-cool-gray-200:hover { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.hover\:text-cool-gray-300:hover { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.hover\:text-cool-gray-400:hover { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.hover\:text-cool-gray-500:hover { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.hover\:text-cool-gray-600:hover { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.hover\:text-cool-gray-700:hover { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.hover\:text-cool-gray-800:hover { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.hover\:text-cool-gray-900:hover { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.hover\:text-red-50:hover { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.hover\:text-red-100:hover { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.hover\:text-red-200:hover { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.hover\:text-red-300:hover { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.hover\:text-red-400:hover { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.hover\:text-red-500:hover { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.hover\:text-red-600:hover { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.hover\:text-red-700:hover { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.hover\:text-red-800:hover { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.hover\:text-red-900:hover { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.hover\:text-orange-50:hover { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.hover\:text-orange-100:hover { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.hover\:text-orange-200:hover { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.hover\:text-orange-300:hover { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.hover\:text-orange-400:hover { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.hover\:text-orange-500:hover { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.hover\:text-orange-600:hover { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.hover\:text-orange-700:hover { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.hover\:text-orange-800:hover { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.hover\:text-orange-900:hover { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.hover\:text-yellow-50:hover { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.hover\:text-yellow-100:hover { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.hover\:text-yellow-200:hover { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.hover\:text-yellow-300:hover { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.hover\:text-yellow-400:hover { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.hover\:text-yellow-500:hover { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.hover\:text-yellow-600:hover { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.hover\:text-yellow-700:hover { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.hover\:text-yellow-800:hover { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.hover\:text-yellow-900:hover { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.hover\:text-green-50:hover { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.hover\:text-green-100:hover { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.hover\:text-green-200:hover { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.hover\:text-green-300:hover { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.hover\:text-green-400:hover { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.hover\:text-green-500:hover { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.hover\:text-green-600:hover { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.hover\:text-green-700:hover { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.hover\:text-green-800:hover { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.hover\:text-green-900:hover { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.hover\:text-teal-50:hover { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.hover\:text-teal-100:hover { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.hover\:text-teal-200:hover { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.hover\:text-teal-300:hover { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.hover\:text-teal-400:hover { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.hover\:text-teal-500:hover { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.hover\:text-teal-600:hover { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.hover\:text-teal-700:hover { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.hover\:text-teal-800:hover { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.hover\:text-teal-900:hover { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.hover\:text-blue-50:hover { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.hover\:text-blue-100:hover { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.hover\:text-blue-200:hover { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.hover\:text-blue-300:hover { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.hover\:text-blue-400:hover { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.hover\:text-blue-500:hover { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.hover\:text-blue-600:hover { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.hover\:text-blue-700:hover { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.hover\:text-blue-800:hover { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.hover\:text-blue-900:hover { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.hover\:text-indigo-50:hover { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.hover\:text-indigo-100:hover { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.hover\:text-indigo-200:hover { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.hover\:text-indigo-300:hover { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.hover\:text-indigo-400:hover { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.hover\:text-indigo-500:hover { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.hover\:text-indigo-600:hover { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.hover\:text-indigo-700:hover { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.hover\:text-indigo-800:hover { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.hover\:text-indigo-900:hover { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.hover\:text-purple-50:hover { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.hover\:text-purple-100:hover { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.hover\:text-purple-200:hover { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.hover\:text-purple-300:hover { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.hover\:text-purple-400:hover { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.hover\:text-purple-500:hover { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.hover\:text-purple-600:hover { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.hover\:text-purple-700:hover { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.hover\:text-purple-800:hover { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.hover\:text-purple-900:hover { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.hover\:text-pink-50:hover { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.hover\:text-pink-100:hover { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.hover\:text-pink-200:hover { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.hover\:text-pink-300:hover { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.hover\:text-pink-400:hover { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.hover\:text-pink-500:hover { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.hover\:text-pink-600:hover { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.hover\:text-pink-700:hover { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.hover\:text-pink-800:hover { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.hover\:text-pink-900:hover { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.active\:text-transparent:active { + color: transparent; +} + +.active\:text-white:active { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.active\:text-black:active { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.active\:text-gray-50:active { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.active\:text-gray-100:active { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.active\:text-gray-200:active { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.active\:text-gray-300:active { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.active\:text-gray-400:active { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.active\:text-gray-500:active { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.active\:text-gray-600:active { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.active\:text-gray-700:active { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.active\:text-gray-800:active { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.active\:text-gray-900:active { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.active\:text-cool-gray-50:active { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.active\:text-cool-gray-100:active { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.active\:text-cool-gray-200:active { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.active\:text-cool-gray-300:active { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.active\:text-cool-gray-400:active { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.active\:text-cool-gray-500:active { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.active\:text-cool-gray-600:active { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.active\:text-cool-gray-700:active { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.active\:text-cool-gray-800:active { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.active\:text-cool-gray-900:active { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.active\:text-red-50:active { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.active\:text-red-100:active { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.active\:text-red-200:active { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.active\:text-red-300:active { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.active\:text-red-400:active { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.active\:text-red-500:active { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.active\:text-red-600:active { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.active\:text-red-700:active { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.active\:text-red-800:active { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.active\:text-red-900:active { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.active\:text-orange-50:active { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.active\:text-orange-100:active { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.active\:text-orange-200:active { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.active\:text-orange-300:active { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.active\:text-orange-400:active { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.active\:text-orange-500:active { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.active\:text-orange-600:active { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.active\:text-orange-700:active { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.active\:text-orange-800:active { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.active\:text-orange-900:active { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.active\:text-yellow-50:active { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.active\:text-yellow-100:active { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.active\:text-yellow-200:active { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.active\:text-yellow-300:active { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.active\:text-yellow-400:active { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.active\:text-yellow-500:active { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.active\:text-yellow-600:active { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.active\:text-yellow-700:active { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.active\:text-yellow-800:active { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.active\:text-yellow-900:active { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.active\:text-green-50:active { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.active\:text-green-100:active { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.active\:text-green-200:active { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.active\:text-green-300:active { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.active\:text-green-400:active { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.active\:text-green-500:active { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.active\:text-green-600:active { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.active\:text-green-700:active { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.active\:text-green-800:active { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.active\:text-green-900:active { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.active\:text-teal-50:active { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.active\:text-teal-100:active { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.active\:text-teal-200:active { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.active\:text-teal-300:active { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.active\:text-teal-400:active { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.active\:text-teal-500:active { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.active\:text-teal-600:active { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.active\:text-teal-700:active { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.active\:text-teal-800:active { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.active\:text-teal-900:active { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.active\:text-blue-50:active { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.active\:text-blue-100:active { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.active\:text-blue-200:active { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.active\:text-blue-300:active { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.active\:text-blue-400:active { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.active\:text-blue-500:active { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.active\:text-blue-600:active { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.active\:text-blue-700:active { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.active\:text-blue-800:active { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.active\:text-blue-900:active { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.active\:text-indigo-50:active { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.active\:text-indigo-100:active { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.active\:text-indigo-200:active { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.active\:text-indigo-300:active { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.active\:text-indigo-400:active { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.active\:text-indigo-500:active { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.active\:text-indigo-600:active { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.active\:text-indigo-700:active { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.active\:text-indigo-800:active { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.active\:text-indigo-900:active { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.active\:text-purple-50:active { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.active\:text-purple-100:active { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.active\:text-purple-200:active { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.active\:text-purple-300:active { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.active\:text-purple-400:active { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.active\:text-purple-500:active { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.active\:text-purple-600:active { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.active\:text-purple-700:active { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.active\:text-purple-800:active { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.active\:text-purple-900:active { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.active\:text-pink-50:active { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.active\:text-pink-100:active { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.active\:text-pink-200:active { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.active\:text-pink-300:active { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.active\:text-pink-400:active { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.active\:text-pink-500:active { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.active\:text-pink-600:active { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.active\:text-pink-700:active { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.active\:text-pink-800:active { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.active\:text-pink-900:active { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.theme-dark .dark\:text-transparent { + color: transparent; +} + +.theme-dark .dark\:text-white { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-black { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-50 { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-100 { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-200 { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-300 { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-400 { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-500 { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-600 { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-700 { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-800 { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.theme-dark .dark\:text-gray-900 { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-50 { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-100 { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-200 { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-300 { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-400 { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-500 { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-600 { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-700 { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-800 { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.theme-dark .dark\:text-cool-gray-900 { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-50 { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-100 { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-200 { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-300 { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-400 { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-500 { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-600 { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-700 { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-800 { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.theme-dark .dark\:text-red-900 { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-50 { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-100 { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-200 { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-300 { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-400 { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-500 { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-600 { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-700 { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-800 { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.theme-dark .dark\:text-orange-900 { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-50 { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-100 { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-200 { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-300 { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-400 { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-500 { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-600 { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-700 { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-800 { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.theme-dark .dark\:text-yellow-900 { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-50 { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-100 { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-200 { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-300 { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-400 { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-500 { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-600 { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-700 { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-800 { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.theme-dark .dark\:text-green-900 { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-50 { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-100 { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-200 { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-300 { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-400 { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-500 { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-600 { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-700 { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-800 { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.theme-dark .dark\:text-teal-900 { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-50 { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-100 { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-200 { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-300 { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-400 { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-500 { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-600 { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-700 { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-800 { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.theme-dark .dark\:text-blue-900 { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-50 { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-100 { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-200 { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-300 { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-400 { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-500 { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-600 { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-700 { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-800 { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.theme-dark .dark\:text-indigo-900 { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-50 { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-100 { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-200 { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-300 { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-400 { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-500 { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-600 { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-700 { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-800 { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.theme-dark .dark\:text-purple-900 { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-50 { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-100 { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-200 { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-300 { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-400 { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-500 { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-600 { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-700 { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-800 { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.theme-dark .dark\:text-pink-900 { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-transparent:focus-within { + color: transparent; +} + +.theme-dark .dark\:focus-within\:text-white:focus-within { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-black:focus-within { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-50:focus-within { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-100:focus-within { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-200:focus-within { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-300:focus-within { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-400:focus-within { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-500:focus-within { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-600:focus-within { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-700:focus-within { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-800:focus-within { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-gray-900:focus-within { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-50:focus-within { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-100:focus-within { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-200:focus-within { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-300:focus-within { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-400:focus-within { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-500:focus-within { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-600:focus-within { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-700:focus-within { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-800:focus-within { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-cool-gray-900:focus-within { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-50:focus-within { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-100:focus-within { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-200:focus-within { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-300:focus-within { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-400:focus-within { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-500:focus-within { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-600:focus-within { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-700:focus-within { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-800:focus-within { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-red-900:focus-within { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-50:focus-within { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-100:focus-within { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-200:focus-within { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-300:focus-within { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-400:focus-within { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-500:focus-within { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-600:focus-within { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-700:focus-within { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-800:focus-within { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-orange-900:focus-within { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-50:focus-within { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-100:focus-within { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-200:focus-within { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-300:focus-within { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-400:focus-within { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-500:focus-within { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-600:focus-within { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-700:focus-within { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-800:focus-within { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-yellow-900:focus-within { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-50:focus-within { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-100:focus-within { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-200:focus-within { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-300:focus-within { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-400:focus-within { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-500:focus-within { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-600:focus-within { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-700:focus-within { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-800:focus-within { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-green-900:focus-within { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-50:focus-within { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-100:focus-within { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-200:focus-within { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-300:focus-within { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-400:focus-within { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-500:focus-within { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-600:focus-within { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-700:focus-within { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-800:focus-within { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-teal-900:focus-within { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-50:focus-within { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-100:focus-within { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-200:focus-within { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-300:focus-within { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-400:focus-within { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-500:focus-within { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-600:focus-within { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-700:focus-within { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-800:focus-within { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-blue-900:focus-within { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-50:focus-within { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-100:focus-within { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-200:focus-within { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-300:focus-within { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-400:focus-within { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-500:focus-within { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-600:focus-within { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-700:focus-within { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-800:focus-within { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-indigo-900:focus-within { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-50:focus-within { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-100:focus-within { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-200:focus-within { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-300:focus-within { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-400:focus-within { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-500:focus-within { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-600:focus-within { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-700:focus-within { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-800:focus-within { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-purple-900:focus-within { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-50:focus-within { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-100:focus-within { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-200:focus-within { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-300:focus-within { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-400:focus-within { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-500:focus-within { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-600:focus-within { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-700:focus-within { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-800:focus-within { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.theme-dark .dark\:focus-within\:text-pink-900:focus-within { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-transparent:hover { + color: transparent; +} + +.theme-dark .dark\:hover\:text-white:hover { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-black:hover { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-50:hover { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-100:hover { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-200:hover { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-300:hover { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-400:hover { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-500:hover { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-600:hover { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-700:hover { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-800:hover { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-gray-900:hover { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-50:hover { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-100:hover { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-200:hover { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-300:hover { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-400:hover { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-500:hover { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-600:hover { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-700:hover { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-800:hover { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-cool-gray-900:hover { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-50:hover { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-100:hover { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-200:hover { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-300:hover { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-400:hover { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-500:hover { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-600:hover { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-700:hover { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-800:hover { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-red-900:hover { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-50:hover { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-100:hover { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-200:hover { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-300:hover { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-400:hover { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-500:hover { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-600:hover { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-700:hover { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-800:hover { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-orange-900:hover { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-50:hover { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-100:hover { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-200:hover { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-300:hover { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-400:hover { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-500:hover { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-600:hover { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-700:hover { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-800:hover { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-yellow-900:hover { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-50:hover { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-100:hover { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-200:hover { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-300:hover { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-400:hover { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-500:hover { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-600:hover { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-700:hover { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-800:hover { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-green-900:hover { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-50:hover { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-100:hover { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-200:hover { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-300:hover { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-400:hover { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-500:hover { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-600:hover { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-700:hover { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-800:hover { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-teal-900:hover { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-50:hover { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-100:hover { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-200:hover { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-300:hover { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-400:hover { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-500:hover { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-600:hover { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-700:hover { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-800:hover { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-blue-900:hover { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-50:hover { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-100:hover { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-200:hover { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-300:hover { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-400:hover { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-500:hover { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-600:hover { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-700:hover { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-800:hover { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-indigo-900:hover { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-50:hover { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-100:hover { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-200:hover { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-300:hover { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-400:hover { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-500:hover { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-600:hover { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-700:hover { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-800:hover { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-purple-900:hover { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-50:hover { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-100:hover { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-200:hover { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-300:hover { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-400:hover { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-500:hover { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-600:hover { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-700:hover { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-800:hover { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.theme-dark .dark\:hover\:text-pink-900:hover { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-transparent:active { + color: transparent; +} + +.theme-dark .dark\:active\:text-white:active { + --text-opacity: 1; + color: #ffffff; + color: rgba(255, 255, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-black:active { + --text-opacity: 1; + color: #000000; + color: rgba(0, 0, 0, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-50:active { + --text-opacity: 1; + color: #f9fafb; + color: rgba(249, 250, 251, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-100:active { + --text-opacity: 1; + color: #f4f5f7; + color: rgba(244, 245, 247, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-200:active { + --text-opacity: 1; + color: #e5e7eb; + color: rgba(229, 231, 235, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-300:active { + --text-opacity: 1; + color: #d5d6d7; + color: rgba(213, 214, 215, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-400:active { + --text-opacity: 1; + color: #9e9e9e; + color: rgba(158, 158, 158, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-500:active { + --text-opacity: 1; + color: #707275; + color: rgba(112, 114, 117, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-600:active { + --text-opacity: 1; + color: #4c4f52; + color: rgba(76, 79, 82, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-700:active { + --text-opacity: 1; + color: #24262d; + color: rgba(36, 38, 45, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-800:active { + --text-opacity: 1; + color: #1a1c23; + color: rgba(26, 28, 35, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-gray-900:active { + --text-opacity: 1; + color: #121317; + color: rgba(18, 19, 23, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-50:active { + --text-opacity: 1; + color: #fbfdfe; + color: rgba(251, 253, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-100:active { + --text-opacity: 1; + color: #f1f5f9; + color: rgba(241, 245, 249, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-200:active { + --text-opacity: 1; + color: #e2e8f0; + color: rgba(226, 232, 240, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-300:active { + --text-opacity: 1; + color: #cfd8e3; + color: rgba(207, 216, 227, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-400:active { + --text-opacity: 1; + color: #97a6ba; + color: rgba(151, 166, 186, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-500:active { + --text-opacity: 1; + color: #64748b; + color: rgba(100, 116, 139, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-600:active { + --text-opacity: 1; + color: #475569; + color: rgba(71, 85, 105, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-700:active { + --text-opacity: 1; + color: #364152; + color: rgba(54, 65, 82, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-800:active { + --text-opacity: 1; + color: #27303f; + color: rgba(39, 48, 63, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-cool-gray-900:active { + --text-opacity: 1; + color: #1a202e; + color: rgba(26, 32, 46, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-50:active { + --text-opacity: 1; + color: #fdf2f2; + color: rgba(253, 242, 242, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-100:active { + --text-opacity: 1; + color: #fde8e8; + color: rgba(253, 232, 232, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-200:active { + --text-opacity: 1; + color: #fbd5d5; + color: rgba(251, 213, 213, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-300:active { + --text-opacity: 1; + color: #f8b4b4; + color: rgba(248, 180, 180, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-400:active { + --text-opacity: 1; + color: #f98080; + color: rgba(249, 128, 128, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-500:active { + --text-opacity: 1; + color: #f05252; + color: rgba(240, 82, 82, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-600:active { + --text-opacity: 1; + color: #e02424; + color: rgba(224, 36, 36, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-700:active { + --text-opacity: 1; + color: #c81e1e; + color: rgba(200, 30, 30, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-800:active { + --text-opacity: 1; + color: #9b1c1c; + color: rgba(155, 28, 28, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-red-900:active { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-50:active { + --text-opacity: 1; + color: #fff8f1; + color: rgba(255, 248, 241, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-100:active { + --text-opacity: 1; + color: #feecdc; + color: rgba(254, 236, 220, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-200:active { + --text-opacity: 1; + color: #fcd9bd; + color: rgba(252, 217, 189, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-300:active { + --text-opacity: 1; + color: #fdba8c; + color: rgba(253, 186, 140, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-400:active { + --text-opacity: 1; + color: #ff8a4c; + color: rgba(255, 138, 76, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-500:active { + --text-opacity: 1; + color: #ff5a1f; + color: rgba(255, 90, 31, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-600:active { + --text-opacity: 1; + color: #d03801; + color: rgba(208, 56, 1, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-700:active { + --text-opacity: 1; + color: #b43403; + color: rgba(180, 52, 3, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-800:active { + --text-opacity: 1; + color: #8a2c0d; + color: rgba(138, 44, 13, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-orange-900:active { + --text-opacity: 1; + color: #771d1d; + color: rgba(119, 29, 29, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-50:active { + --text-opacity: 1; + color: #fdfdea; + color: rgba(253, 253, 234, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-100:active { + --text-opacity: 1; + color: #fdf6b2; + color: rgba(253, 246, 178, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-200:active { + --text-opacity: 1; + color: #fce96a; + color: rgba(252, 233, 106, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-300:active { + --text-opacity: 1; + color: #faca15; + color: rgba(250, 202, 21, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-400:active { + --text-opacity: 1; + color: #e3a008; + color: rgba(227, 160, 8, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-500:active { + --text-opacity: 1; + color: #c27803; + color: rgba(194, 120, 3, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-600:active { + --text-opacity: 1; + color: #9f580a; + color: rgba(159, 88, 10, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-700:active { + --text-opacity: 1; + color: #8e4b10; + color: rgba(142, 75, 16, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-800:active { + --text-opacity: 1; + color: #723b13; + color: rgba(114, 59, 19, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-yellow-900:active { + --text-opacity: 1; + color: #633112; + color: rgba(99, 49, 18, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-50:active { + --text-opacity: 1; + color: #f3faf7; + color: rgba(243, 250, 247, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-100:active { + --text-opacity: 1; + color: #def7ec; + color: rgba(222, 247, 236, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-200:active { + --text-opacity: 1; + color: #bcf0da; + color: rgba(188, 240, 218, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-300:active { + --text-opacity: 1; + color: #84e1bc; + color: rgba(132, 225, 188, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-400:active { + --text-opacity: 1; + color: #31c48d; + color: rgba(49, 196, 141, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-500:active { + --text-opacity: 1; + color: #0e9f6e; + color: rgba(14, 159, 110, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-600:active { + --text-opacity: 1; + color: #057a55; + color: rgba(5, 122, 85, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-700:active { + --text-opacity: 1; + color: #046c4e; + color: rgba(4, 108, 78, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-800:active { + --text-opacity: 1; + color: #03543f; + color: rgba(3, 84, 63, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-green-900:active { + --text-opacity: 1; + color: #014737; + color: rgba(1, 71, 55, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-50:active { + --text-opacity: 1; + color: #edfafa; + color: rgba(237, 250, 250, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-100:active { + --text-opacity: 1; + color: #d5f5f6; + color: rgba(213, 245, 246, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-200:active { + --text-opacity: 1; + color: #afecef; + color: rgba(175, 236, 239, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-300:active { + --text-opacity: 1; + color: #7edce2; + color: rgba(126, 220, 226, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-400:active { + --text-opacity: 1; + color: #16bdca; + color: rgba(22, 189, 202, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-500:active { + --text-opacity: 1; + color: #0694a2; + color: rgba(6, 148, 162, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-600:active { + --text-opacity: 1; + color: #047481; + color: rgba(4, 116, 129, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-700:active { + --text-opacity: 1; + color: #036672; + color: rgba(3, 102, 114, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-800:active { + --text-opacity: 1; + color: #05505c; + color: rgba(5, 80, 92, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-teal-900:active { + --text-opacity: 1; + color: #014451; + color: rgba(1, 68, 81, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-50:active { + --text-opacity: 1; + color: #ebf5ff; + color: rgba(235, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-100:active { + --text-opacity: 1; + color: #e1effe; + color: rgba(225, 239, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-200:active { + --text-opacity: 1; + color: #c3ddfd; + color: rgba(195, 221, 253, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-300:active { + --text-opacity: 1; + color: #a4cafe; + color: rgba(164, 202, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-400:active { + --text-opacity: 1; + color: #76a9fa; + color: rgba(118, 169, 250, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-500:active { + --text-opacity: 1; + color: #3f83f8; + color: rgba(63, 131, 248, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-600:active { + --text-opacity: 1; + color: #1c64f2; + color: rgba(28, 100, 242, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-700:active { + --text-opacity: 1; + color: #1a56db; + color: rgba(26, 86, 219, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-800:active { + --text-opacity: 1; + color: #1e429f; + color: rgba(30, 66, 159, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-blue-900:active { + --text-opacity: 1; + color: #233876; + color: rgba(35, 56, 118, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-50:active { + --text-opacity: 1; + color: #f0f5ff; + color: rgba(240, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-100:active { + --text-opacity: 1; + color: #e5edff; + color: rgba(229, 237, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-200:active { + --text-opacity: 1; + color: #cddbfe; + color: rgba(205, 219, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-300:active { + --text-opacity: 1; + color: #b4c6fc; + color: rgba(180, 198, 252, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-400:active { + --text-opacity: 1; + color: #8da2fb; + color: rgba(141, 162, 251, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-500:active { + --text-opacity: 1; + color: #6875f5; + color: rgba(104, 117, 245, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-600:active { + --text-opacity: 1; + color: #5850ec; + color: rgba(88, 80, 236, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-700:active { + --text-opacity: 1; + color: #5145cd; + color: rgba(81, 69, 205, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-800:active { + --text-opacity: 1; + color: #42389d; + color: rgba(66, 56, 157, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-indigo-900:active { + --text-opacity: 1; + color: #362f78; + color: rgba(54, 47, 120, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-50:active { + --text-opacity: 1; + color: #f6f5ff; + color: rgba(246, 245, 255, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-100:active { + --text-opacity: 1; + color: #edebfe; + color: rgba(237, 235, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-200:active { + --text-opacity: 1; + color: #dcd7fe; + color: rgba(220, 215, 254, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-300:active { + --text-opacity: 1; + color: #cabffd; + color: rgba(202, 191, 253, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-400:active { + --text-opacity: 1; + color: #ac94fa; + color: rgba(172, 148, 250, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-500:active { + --text-opacity: 1; + color: #9061f9; + color: rgba(144, 97, 249, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-600:active { + --text-opacity: 1; + color: #7e3af2; + color: rgba(126, 58, 242, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-700:active { + --text-opacity: 1; + color: #6c2bd9; + color: rgba(108, 43, 217, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-800:active { + --text-opacity: 1; + color: #5521b5; + color: rgba(85, 33, 181, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-purple-900:active { + --text-opacity: 1; + color: #4a1d96; + color: rgba(74, 29, 150, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-50:active { + --text-opacity: 1; + color: #fdf2f8; + color: rgba(253, 242, 248, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-100:active { + --text-opacity: 1; + color: #fce8f3; + color: rgba(252, 232, 243, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-200:active { + --text-opacity: 1; + color: #fad1e8; + color: rgba(250, 209, 232, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-300:active { + --text-opacity: 1; + color: #f8b4d9; + color: rgba(248, 180, 217, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-400:active { + --text-opacity: 1; + color: #f17eb8; + color: rgba(241, 126, 184, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-500:active { + --text-opacity: 1; + color: #e74694; + color: rgba(231, 70, 148, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-600:active { + --text-opacity: 1; + color: #d61f69; + color: rgba(214, 31, 105, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-700:active { + --text-opacity: 1; + color: #bf125d; + color: rgba(191, 18, 93, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-800:active { + --text-opacity: 1; + color: #99154b; + color: rgba(153, 21, 75, var(--text-opacity)); +} + +.theme-dark .dark\:active\:text-pink-900:active { + --text-opacity: 1; + color: #751a3d; + color: rgba(117, 26, 61, var(--text-opacity)); +} + +.text-opacity-0 { + --text-opacity: 0; +} + +.text-opacity-25 { + --text-opacity: 0.25; +} + +.text-opacity-50 { + --text-opacity: 0.5; +} + +.text-opacity-75 { + --text-opacity: 0.75; +} + +.text-opacity-100 { + --text-opacity: 1; +} + +.hover\:text-opacity-0:hover { + --text-opacity: 0; +} + +.hover\:text-opacity-25:hover { + --text-opacity: 0.25; +} + +.hover\:text-opacity-50:hover { + --text-opacity: 0.5; +} + +.hover\:text-opacity-75:hover { + --text-opacity: 0.75; +} + +.hover\:text-opacity-100:hover { + --text-opacity: 1; +} + +.focus\:text-opacity-0:focus { + --text-opacity: 0; +} + +.focus\:text-opacity-25:focus { + --text-opacity: 0.25; +} + +.focus\:text-opacity-50:focus { + --text-opacity: 0.5; +} + +.focus\:text-opacity-75:focus { + --text-opacity: 0.75; +} + +.focus\:text-opacity-100:focus { + --text-opacity: 1; +} + +.italic { + font-style: italic; +} + +.not-italic { + font-style: normal; +} + +.uppercase { + text-transform: uppercase; +} + +.lowercase { + text-transform: lowercase; +} + +.capitalize { + text-transform: capitalize; +} + +.normal-case { + text-transform: none; +} + +.underline { + text-decoration: underline; +} + +.line-through { + text-decoration: line-through; +} + +.no-underline { + text-decoration: none; +} + +.hover\:underline:hover { + text-decoration: underline; +} + +.hover\:line-through:hover { + text-decoration: line-through; +} + +.hover\:no-underline:hover { + text-decoration: none; +} + +.focus\:underline:focus { + text-decoration: underline; +} + +.focus\:line-through:focus { + text-decoration: line-through; +} + +.focus\:no-underline:focus { + text-decoration: none; +} + +.antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; +} + +.tracking-tighter { + letter-spacing: -0.05em; +} + +.tracking-tight { + letter-spacing: -0.025em; +} + +.tracking-normal { + letter-spacing: 0; +} + +.tracking-wide { + letter-spacing: 0.025em; +} + +.tracking-wider { + letter-spacing: 0.05em; +} + +.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-no-wrap { + white-space: nowrap; +} + +.whitespace-pre { + white-space: pre; +} + +.whitespace-pre-line { + white-space: pre-line; +} + +.whitespace-pre-wrap { + white-space: pre-wrap; +} + +.break-normal { + overflow-wrap: normal; + word-break: normal; +} + +.break-words { + overflow-wrap: break-word; +} + +.break-all { + word-break: break-all; +} + +.truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +.w-0 { + width: 0; +} + +.w-1 { + width: 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-8 { + width: 2rem; +} + +.w-10 { + width: 2.5rem; +} + +.w-12 { + width: 3rem; +} + +.w-16 { + width: 4rem; +} + +.w-20 { + width: 5rem; +} + +.w-24 { + width: 6rem; +} + +.w-32 { + width: 8rem; +} + +.w-40 { + width: 10rem; +} + +.w-48 { + width: 12rem; +} + +.w-56 { + width: 14rem; +} + +.w-64 { + width: 16rem; +} + +.w-auto { + width: auto; +} + +.w-px { + width: 1px; +} + +.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; +} + +.gap-0 { + grid-gap: 0; + gap: 0; +} + +.gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; +} + +.gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; +} + +.gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; +} + +.gap-4 { + grid-gap: 1rem; + gap: 1rem; +} + +.gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; +} + +.gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; +} + +.gap-8 { + grid-gap: 2rem; + gap: 2rem; +} + +.gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; +} + +.gap-12 { + grid-gap: 3rem; + gap: 3rem; +} + +.gap-16 { + grid-gap: 4rem; + gap: 4rem; +} + +.gap-20 { + grid-gap: 5rem; + gap: 5rem; +} + +.gap-24 { + grid-gap: 6rem; + gap: 6rem; +} + +.gap-32 { + grid-gap: 8rem; + gap: 8rem; +} + +.gap-40 { + grid-gap: 10rem; + gap: 10rem; +} + +.gap-48 { + grid-gap: 12rem; + gap: 12rem; +} + +.gap-56 { + grid-gap: 14rem; + gap: 14rem; +} + +.gap-64 { + grid-gap: 16rem; + gap: 16rem; +} + +.gap-px { + grid-gap: 1px; + gap: 1px; +} + +.col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; +} + +.col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; +} + +.col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; +} + +.col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; +} + +.col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; +} + +.col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; +} + +.col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; +} + +.col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; +} + +.col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; +} + +.col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; +} + +.col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; +} + +.col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; +} + +.col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; +} + +.col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; +} + +.col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; +} + +.col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; +} + +.col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; +} + +.col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; +} + +.col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; +} + +.row-gap-0 { + grid-row-gap: 0; + row-gap: 0; +} + +.row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; +} + +.row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; +} + +.row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; +} + +.row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; +} + +.row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; +} + +.row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; +} + +.row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; +} + +.row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; +} + +.row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; +} + +.row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; +} + +.row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; +} + +.row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; +} + +.row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; +} + +.row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; +} + +.row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; +} + +.row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; +} + +.row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; +} + +.row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; +} + +.grid-flow-row { + grid-auto-flow: row; +} + +.grid-flow-col { + grid-auto-flow: column; +} + +.grid-flow-row-dense { + grid-auto-flow: row dense; +} + +.grid-flow-col-dense { + grid-auto-flow: column dense; +} + +.grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); +} + +.grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} + +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} + +.grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); +} + +.grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); +} + +.grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); +} + +.grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); +} + +.grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); +} + +.grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); +} + +.grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); +} + +.grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); +} + +.grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); +} + +.grid-cols-none { + grid-template-columns: none; +} + +.col-auto { + grid-column: auto; +} + +.col-span-1 { + grid-column: span 1 / span 1; +} + +.col-span-2 { + grid-column: span 2 / span 2; +} + +.col-span-3 { + grid-column: span 3 / span 3; +} + +.col-span-4 { + grid-column: span 4 / span 4; +} + +.col-span-5 { + grid-column: span 5 / span 5; +} + +.col-span-6 { + grid-column: span 6 / span 6; +} + +.col-span-7 { + grid-column: span 7 / span 7; +} + +.col-span-8 { + grid-column: span 8 / span 8; +} + +.col-span-9 { + grid-column: span 9 / span 9; +} + +.col-span-10 { + grid-column: span 10 / span 10; +} + +.col-span-11 { + grid-column: span 11 / span 11; +} + +.col-span-12 { + grid-column: span 12 / span 12; +} + +.col-start-1 { + grid-column-start: 1; +} + +.col-start-2 { + grid-column-start: 2; +} + +.col-start-3 { + grid-column-start: 3; +} + +.col-start-4 { + grid-column-start: 4; +} + +.col-start-5 { + grid-column-start: 5; +} + +.col-start-6 { + grid-column-start: 6; +} + +.col-start-7 { + grid-column-start: 7; +} + +.col-start-8 { + grid-column-start: 8; +} + +.col-start-9 { + grid-column-start: 9; +} + +.col-start-10 { + grid-column-start: 10; +} + +.col-start-11 { + grid-column-start: 11; +} + +.col-start-12 { + grid-column-start: 12; +} + +.col-start-13 { + grid-column-start: 13; +} + +.col-start-auto { + grid-column-start: auto; +} + +.col-end-1 { + grid-column-end: 1; +} + +.col-end-2 { + grid-column-end: 2; +} + +.col-end-3 { + grid-column-end: 3; +} + +.col-end-4 { + grid-column-end: 4; +} + +.col-end-5 { + grid-column-end: 5; +} + +.col-end-6 { + grid-column-end: 6; +} + +.col-end-7 { + grid-column-end: 7; +} + +.col-end-8 { + grid-column-end: 8; +} + +.col-end-9 { + grid-column-end: 9; +} + +.col-end-10 { + grid-column-end: 10; +} + +.col-end-11 { + grid-column-end: 11; +} + +.col-end-12 { + grid-column-end: 12; +} + +.col-end-13 { + grid-column-end: 13; +} + +.col-end-auto { + grid-column-end: auto; +} + +.grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); +} + +.grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); +} + +.grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); +} + +.grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); +} + +.grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); +} + +.grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); +} + +.grid-rows-none { + grid-template-rows: none; +} + +.row-auto { + grid-row: auto; +} + +.row-span-1 { + grid-row: span 1 / span 1; +} + +.row-span-2 { + grid-row: span 2 / span 2; +} + +.row-span-3 { + grid-row: span 3 / span 3; +} + +.row-span-4 { + grid-row: span 4 / span 4; +} + +.row-span-5 { + grid-row: span 5 / span 5; +} + +.row-span-6 { + grid-row: span 6 / span 6; +} + +.row-start-1 { + grid-row-start: 1; +} + +.row-start-2 { + grid-row-start: 2; +} + +.row-start-3 { + grid-row-start: 3; +} + +.row-start-4 { + grid-row-start: 4; +} + +.row-start-5 { + grid-row-start: 5; +} + +.row-start-6 { + grid-row-start: 6; +} + +.row-start-7 { + grid-row-start: 7; +} + +.row-start-auto { + grid-row-start: auto; +} + +.row-end-1 { + grid-row-end: 1; +} + +.row-end-2 { + grid-row-end: 2; +} + +.row-end-3 { + grid-row-end: 3; +} + +.row-end-4 { + grid-row-end: 4; +} + +.row-end-5 { + grid-row-end: 5; +} + +.row-end-6 { + grid-row-end: 6; +} + +.row-end-7 { + grid-row-end: 7; +} + +.row-end-auto { + grid-row-end: auto; +} + +.transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); +} + +.transform-none { + transform: none; +} + +.origin-center { + transform-origin: center; +} + +.origin-top { + transform-origin: top; +} + +.origin-top-right { + transform-origin: top right; +} + +.origin-right { + transform-origin: right; +} + +.origin-bottom-right { + transform-origin: bottom right; +} + +.origin-bottom { + transform-origin: bottom; +} + +.origin-bottom-left { + transform-origin: bottom left; +} + +.origin-left { + transform-origin: left; +} + +.origin-top-left { + transform-origin: top left; +} + +.scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; +} + +.scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; +} + +.scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; +} + +.scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; +} + +.scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; +} + +.scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; +} + +.scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; +} + +.scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; +} + +.scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; +} + +.scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; +} + +.scale-x-0 { + --transform-scale-x: 0; +} + +.scale-x-50 { + --transform-scale-x: .5; +} + +.scale-x-75 { + --transform-scale-x: .75; +} + +.scale-x-90 { + --transform-scale-x: .9; +} + +.scale-x-95 { + --transform-scale-x: .95; +} + +.scale-x-100 { + --transform-scale-x: 1; +} + +.scale-x-105 { + --transform-scale-x: 1.05; +} + +.scale-x-110 { + --transform-scale-x: 1.1; +} + +.scale-x-125 { + --transform-scale-x: 1.25; +} + +.scale-x-150 { + --transform-scale-x: 1.5; +} + +.scale-y-0 { + --transform-scale-y: 0; +} + +.scale-y-50 { + --transform-scale-y: .5; +} + +.scale-y-75 { + --transform-scale-y: .75; +} + +.scale-y-90 { + --transform-scale-y: .9; +} + +.scale-y-95 { + --transform-scale-y: .95; +} + +.scale-y-100 { + --transform-scale-y: 1; +} + +.scale-y-105 { + --transform-scale-y: 1.05; +} + +.scale-y-110 { + --transform-scale-y: 1.1; +} + +.scale-y-125 { + --transform-scale-y: 1.25; +} + +.scale-y-150 { + --transform-scale-y: 1.5; +} + +.hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; +} + +.hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; +} + +.hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; +} + +.hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; +} + +.hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; +} + +.hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; +} + +.hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; +} + +.hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; +} + +.hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; +} + +.hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; +} + +.hover\:scale-x-0:hover { + --transform-scale-x: 0; +} + +.hover\:scale-x-50:hover { + --transform-scale-x: .5; +} + +.hover\:scale-x-75:hover { + --transform-scale-x: .75; +} + +.hover\:scale-x-90:hover { + --transform-scale-x: .9; +} + +.hover\:scale-x-95:hover { + --transform-scale-x: .95; +} + +.hover\:scale-x-100:hover { + --transform-scale-x: 1; +} + +.hover\:scale-x-105:hover { + --transform-scale-x: 1.05; +} + +.hover\:scale-x-110:hover { + --transform-scale-x: 1.1; +} + +.hover\:scale-x-125:hover { + --transform-scale-x: 1.25; +} + +.hover\:scale-x-150:hover { + --transform-scale-x: 1.5; +} + +.hover\:scale-y-0:hover { + --transform-scale-y: 0; +} + +.hover\:scale-y-50:hover { + --transform-scale-y: .5; +} + +.hover\:scale-y-75:hover { + --transform-scale-y: .75; +} + +.hover\:scale-y-90:hover { + --transform-scale-y: .9; +} + +.hover\:scale-y-95:hover { + --transform-scale-y: .95; +} + +.hover\:scale-y-100:hover { + --transform-scale-y: 1; +} + +.hover\:scale-y-105:hover { + --transform-scale-y: 1.05; +} + +.hover\:scale-y-110:hover { + --transform-scale-y: 1.1; +} + +.hover\:scale-y-125:hover { + --transform-scale-y: 1.25; +} + +.hover\:scale-y-150:hover { + --transform-scale-y: 1.5; +} + +.focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; +} + +.focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; +} + +.focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; +} + +.focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; +} + +.focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; +} + +.focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; +} + +.focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; +} + +.focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; +} + +.focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; +} + +.focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; +} + +.focus\:scale-x-0:focus { + --transform-scale-x: 0; +} + +.focus\:scale-x-50:focus { + --transform-scale-x: .5; +} + +.focus\:scale-x-75:focus { + --transform-scale-x: .75; +} + +.focus\:scale-x-90:focus { + --transform-scale-x: .9; +} + +.focus\:scale-x-95:focus { + --transform-scale-x: .95; +} + +.focus\:scale-x-100:focus { + --transform-scale-x: 1; +} + +.focus\:scale-x-105:focus { + --transform-scale-x: 1.05; +} + +.focus\:scale-x-110:focus { + --transform-scale-x: 1.1; +} + +.focus\:scale-x-125:focus { + --transform-scale-x: 1.25; +} + +.focus\:scale-x-150:focus { + --transform-scale-x: 1.5; +} + +.focus\:scale-y-0:focus { + --transform-scale-y: 0; +} + +.focus\:scale-y-50:focus { + --transform-scale-y: .5; +} + +.focus\:scale-y-75:focus { + --transform-scale-y: .75; +} + +.focus\:scale-y-90:focus { + --transform-scale-y: .9; +} + +.focus\:scale-y-95:focus { + --transform-scale-y: .95; +} + +.focus\:scale-y-100:focus { + --transform-scale-y: 1; +} + +.focus\:scale-y-105:focus { + --transform-scale-y: 1.05; +} + +.focus\:scale-y-110:focus { + --transform-scale-y: 1.1; +} + +.focus\:scale-y-125:focus { + --transform-scale-y: 1.25; +} + +.focus\:scale-y-150:focus { + --transform-scale-y: 1.5; +} + +.rotate-0 { + --transform-rotate: 0; +} + +.rotate-45 { + --transform-rotate: 45deg; +} + +.rotate-90 { + --transform-rotate: 90deg; +} + +.rotate-180 { + --transform-rotate: 180deg; +} + +.-rotate-180 { + --transform-rotate: -180deg; +} + +.-rotate-90 { + --transform-rotate: -90deg; +} + +.-rotate-45 { + --transform-rotate: -45deg; +} + +.hover\:rotate-0:hover { + --transform-rotate: 0; +} + +.hover\:rotate-45:hover { + --transform-rotate: 45deg; +} + +.hover\:rotate-90:hover { + --transform-rotate: 90deg; +} + +.hover\:rotate-180:hover { + --transform-rotate: 180deg; +} + +.hover\:-rotate-180:hover { + --transform-rotate: -180deg; +} + +.hover\:-rotate-90:hover { + --transform-rotate: -90deg; +} + +.hover\:-rotate-45:hover { + --transform-rotate: -45deg; +} + +.focus\:rotate-0:focus { + --transform-rotate: 0; +} + +.focus\:rotate-45:focus { + --transform-rotate: 45deg; +} + +.focus\:rotate-90:focus { + --transform-rotate: 90deg; +} + +.focus\:rotate-180:focus { + --transform-rotate: 180deg; +} + +.focus\:-rotate-180:focus { + --transform-rotate: -180deg; +} + +.focus\:-rotate-90:focus { + --transform-rotate: -90deg; +} + +.focus\:-rotate-45:focus { + --transform-rotate: -45deg; +} + +.translate-x-0 { + --transform-translate-x: 0; +} + +.translate-x-1 { + --transform-translate-x: 0.25rem; +} + +.translate-x-2 { + --transform-translate-x: 0.5rem; +} + +.translate-x-3 { + --transform-translate-x: 0.75rem; +} + +.translate-x-4 { + --transform-translate-x: 1rem; +} + +.translate-x-5 { + --transform-translate-x: 1.25rem; +} + +.translate-x-6 { + --transform-translate-x: 1.5rem; +} + +.translate-x-8 { + --transform-translate-x: 2rem; +} + +.translate-x-10 { + --transform-translate-x: 2.5rem; +} + +.translate-x-12 { + --transform-translate-x: 3rem; +} + +.translate-x-16 { + --transform-translate-x: 4rem; +} + +.translate-x-20 { + --transform-translate-x: 5rem; +} + +.translate-x-24 { + --transform-translate-x: 6rem; +} + +.translate-x-32 { + --transform-translate-x: 8rem; +} + +.translate-x-40 { + --transform-translate-x: 10rem; +} + +.translate-x-48 { + --transform-translate-x: 12rem; +} + +.translate-x-56 { + --transform-translate-x: 14rem; +} + +.translate-x-64 { + --transform-translate-x: 16rem; +} + +.translate-x-px { + --transform-translate-x: 1px; +} + +.-translate-x-1 { + --transform-translate-x: -0.25rem; +} + +.-translate-x-2 { + --transform-translate-x: -0.5rem; +} + +.-translate-x-3 { + --transform-translate-x: -0.75rem; +} + +.-translate-x-4 { + --transform-translate-x: -1rem; +} + +.-translate-x-5 { + --transform-translate-x: -1.25rem; +} + +.-translate-x-6 { + --transform-translate-x: -1.5rem; +} + +.-translate-x-8 { + --transform-translate-x: -2rem; +} + +.-translate-x-10 { + --transform-translate-x: -2.5rem; +} + +.-translate-x-12 { + --transform-translate-x: -3rem; +} + +.-translate-x-16 { + --transform-translate-x: -4rem; +} + +.-translate-x-20 { + --transform-translate-x: -5rem; +} + +.-translate-x-24 { + --transform-translate-x: -6rem; +} + +.-translate-x-32 { + --transform-translate-x: -8rem; +} + +.-translate-x-40 { + --transform-translate-x: -10rem; +} + +.-translate-x-48 { + --transform-translate-x: -12rem; +} + +.-translate-x-56 { + --transform-translate-x: -14rem; +} + +.-translate-x-64 { + --transform-translate-x: -16rem; +} + +.-translate-x-px { + --transform-translate-x: -1px; +} + +.-translate-x-full { + --transform-translate-x: -100%; +} + +.-translate-x-1\/2 { + --transform-translate-x: -50%; +} + +.translate-x-1\/2 { + --transform-translate-x: 50%; +} + +.translate-x-full { + --transform-translate-x: 100%; +} + +.translate-y-0 { + --transform-translate-y: 0; +} + +.translate-y-1 { + --transform-translate-y: 0.25rem; +} + +.translate-y-2 { + --transform-translate-y: 0.5rem; +} + +.translate-y-3 { + --transform-translate-y: 0.75rem; +} + +.translate-y-4 { + --transform-translate-y: 1rem; +} + +.translate-y-5 { + --transform-translate-y: 1.25rem; +} + +.translate-y-6 { + --transform-translate-y: 1.5rem; +} + +.translate-y-8 { + --transform-translate-y: 2rem; +} + +.translate-y-10 { + --transform-translate-y: 2.5rem; +} + +.translate-y-12 { + --transform-translate-y: 3rem; +} + +.translate-y-16 { + --transform-translate-y: 4rem; +} + +.translate-y-20 { + --transform-translate-y: 5rem; +} + +.translate-y-24 { + --transform-translate-y: 6rem; +} + +.translate-y-32 { + --transform-translate-y: 8rem; +} + +.translate-y-40 { + --transform-translate-y: 10rem; +} + +.translate-y-48 { + --transform-translate-y: 12rem; +} + +.translate-y-56 { + --transform-translate-y: 14rem; +} + +.translate-y-64 { + --transform-translate-y: 16rem; +} + +.translate-y-px { + --transform-translate-y: 1px; +} + +.-translate-y-1 { + --transform-translate-y: -0.25rem; +} + +.-translate-y-2 { + --transform-translate-y: -0.5rem; +} + +.-translate-y-3 { + --transform-translate-y: -0.75rem; +} + +.-translate-y-4 { + --transform-translate-y: -1rem; +} + +.-translate-y-5 { + --transform-translate-y: -1.25rem; +} + +.-translate-y-6 { + --transform-translate-y: -1.5rem; +} + +.-translate-y-8 { + --transform-translate-y: -2rem; +} + +.-translate-y-10 { + --transform-translate-y: -2.5rem; +} + +.-translate-y-12 { + --transform-translate-y: -3rem; +} + +.-translate-y-16 { + --transform-translate-y: -4rem; +} + +.-translate-y-20 { + --transform-translate-y: -5rem; +} + +.-translate-y-24 { + --transform-translate-y: -6rem; +} + +.-translate-y-32 { + --transform-translate-y: -8rem; +} + +.-translate-y-40 { + --transform-translate-y: -10rem; +} + +.-translate-y-48 { + --transform-translate-y: -12rem; +} + +.-translate-y-56 { + --transform-translate-y: -14rem; +} + +.-translate-y-64 { + --transform-translate-y: -16rem; +} + +.-translate-y-px { + --transform-translate-y: -1px; +} + +.-translate-y-full { + --transform-translate-y: -100%; +} + +.-translate-y-1\/2 { + --transform-translate-y: -50%; +} + +.translate-y-1\/2 { + --transform-translate-y: 50%; +} + +.translate-y-full { + --transform-translate-y: 100%; +} + +.hover\:translate-x-0:hover { + --transform-translate-x: 0; +} + +.hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; +} + +.hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; +} + +.hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; +} + +.hover\:translate-x-4:hover { + --transform-translate-x: 1rem; +} + +.hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; +} + +.hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; +} + +.hover\:translate-x-8:hover { + --transform-translate-x: 2rem; +} + +.hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; +} + +.hover\:translate-x-12:hover { + --transform-translate-x: 3rem; +} + +.hover\:translate-x-16:hover { + --transform-translate-x: 4rem; +} + +.hover\:translate-x-20:hover { + --transform-translate-x: 5rem; +} + +.hover\:translate-x-24:hover { + --transform-translate-x: 6rem; +} + +.hover\:translate-x-32:hover { + --transform-translate-x: 8rem; +} + +.hover\:translate-x-40:hover { + --transform-translate-x: 10rem; +} + +.hover\:translate-x-48:hover { + --transform-translate-x: 12rem; +} + +.hover\:translate-x-56:hover { + --transform-translate-x: 14rem; +} + +.hover\:translate-x-64:hover { + --transform-translate-x: 16rem; +} + +.hover\:translate-x-px:hover { + --transform-translate-x: 1px; +} + +.hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; +} + +.hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; +} + +.hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; +} + +.hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; +} + +.hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; +} + +.hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; +} + +.hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; +} + +.hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; +} + +.hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; +} + +.hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; +} + +.hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; +} + +.hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; +} + +.hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; +} + +.hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; +} + +.hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; +} + +.hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; +} + +.hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; +} + +.hover\:-translate-x-px:hover { + --transform-translate-x: -1px; +} + +.hover\:-translate-x-full:hover { + --transform-translate-x: -100%; +} + +.hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; +} + +.hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; +} + +.hover\:translate-x-full:hover { + --transform-translate-x: 100%; +} + +.hover\:translate-y-0:hover { + --transform-translate-y: 0; +} + +.hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; +} + +.hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; +} + +.hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; +} + +.hover\:translate-y-4:hover { + --transform-translate-y: 1rem; +} + +.hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; +} + +.hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; +} + +.hover\:translate-y-8:hover { + --transform-translate-y: 2rem; +} + +.hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; +} + +.hover\:translate-y-12:hover { + --transform-translate-y: 3rem; +} + +.hover\:translate-y-16:hover { + --transform-translate-y: 4rem; +} + +.hover\:translate-y-20:hover { + --transform-translate-y: 5rem; +} + +.hover\:translate-y-24:hover { + --transform-translate-y: 6rem; +} + +.hover\:translate-y-32:hover { + --transform-translate-y: 8rem; +} + +.hover\:translate-y-40:hover { + --transform-translate-y: 10rem; +} + +.hover\:translate-y-48:hover { + --transform-translate-y: 12rem; +} + +.hover\:translate-y-56:hover { + --transform-translate-y: 14rem; +} + +.hover\:translate-y-64:hover { + --transform-translate-y: 16rem; +} + +.hover\:translate-y-px:hover { + --transform-translate-y: 1px; +} + +.hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; +} + +.hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; +} + +.hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; +} + +.hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; +} + +.hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; +} + +.hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; +} + +.hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; +} + +.hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; +} + +.hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; +} + +.hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; +} + +.hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; +} + +.hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; +} + +.hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; +} + +.hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; +} + +.hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; +} + +.hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; +} + +.hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; +} + +.hover\:-translate-y-px:hover { + --transform-translate-y: -1px; +} + +.hover\:-translate-y-full:hover { + --transform-translate-y: -100%; +} + +.hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; +} + +.hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; +} + +.hover\:translate-y-full:hover { + --transform-translate-y: 100%; +} + +.focus\:translate-x-0:focus { + --transform-translate-x: 0; +} + +.focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; +} + +.focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; +} + +.focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; +} + +.focus\:translate-x-4:focus { + --transform-translate-x: 1rem; +} + +.focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; +} + +.focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; +} + +.focus\:translate-x-8:focus { + --transform-translate-x: 2rem; +} + +.focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; +} + +.focus\:translate-x-12:focus { + --transform-translate-x: 3rem; +} + +.focus\:translate-x-16:focus { + --transform-translate-x: 4rem; +} + +.focus\:translate-x-20:focus { + --transform-translate-x: 5rem; +} + +.focus\:translate-x-24:focus { + --transform-translate-x: 6rem; +} + +.focus\:translate-x-32:focus { + --transform-translate-x: 8rem; +} + +.focus\:translate-x-40:focus { + --transform-translate-x: 10rem; +} + +.focus\:translate-x-48:focus { + --transform-translate-x: 12rem; +} + +.focus\:translate-x-56:focus { + --transform-translate-x: 14rem; +} + +.focus\:translate-x-64:focus { + --transform-translate-x: 16rem; +} + +.focus\:translate-x-px:focus { + --transform-translate-x: 1px; +} + +.focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; +} + +.focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; +} + +.focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; +} + +.focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; +} + +.focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; +} + +.focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; +} + +.focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; +} + +.focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; +} + +.focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; +} + +.focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; +} + +.focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; +} + +.focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; +} + +.focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; +} + +.focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; +} + +.focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; +} + +.focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; +} + +.focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; +} + +.focus\:-translate-x-px:focus { + --transform-translate-x: -1px; +} + +.focus\:-translate-x-full:focus { + --transform-translate-x: -100%; +} + +.focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; +} + +.focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; +} + +.focus\:translate-x-full:focus { + --transform-translate-x: 100%; +} + +.focus\:translate-y-0:focus { + --transform-translate-y: 0; +} + +.focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; +} + +.focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; +} + +.focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; +} + +.focus\:translate-y-4:focus { + --transform-translate-y: 1rem; +} + +.focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; +} + +.focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; +} + +.focus\:translate-y-8:focus { + --transform-translate-y: 2rem; +} + +.focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; +} + +.focus\:translate-y-12:focus { + --transform-translate-y: 3rem; +} + +.focus\:translate-y-16:focus { + --transform-translate-y: 4rem; +} + +.focus\:translate-y-20:focus { + --transform-translate-y: 5rem; +} + +.focus\:translate-y-24:focus { + --transform-translate-y: 6rem; +} + +.focus\:translate-y-32:focus { + --transform-translate-y: 8rem; +} + +.focus\:translate-y-40:focus { + --transform-translate-y: 10rem; +} + +.focus\:translate-y-48:focus { + --transform-translate-y: 12rem; +} + +.focus\:translate-y-56:focus { + --transform-translate-y: 14rem; +} + +.focus\:translate-y-64:focus { + --transform-translate-y: 16rem; +} + +.focus\:translate-y-px:focus { + --transform-translate-y: 1px; +} + +.focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; +} + +.focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; +} + +.focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; +} + +.focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; +} + +.focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; +} + +.focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; +} + +.focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; +} + +.focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; +} + +.focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; +} + +.focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; +} + +.focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; +} + +.focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; +} + +.focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; +} + +.focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; +} + +.focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; +} + +.focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; +} + +.focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; +} + +.focus\:-translate-y-px:focus { + --transform-translate-y: -1px; +} + +.focus\:-translate-y-full:focus { + --transform-translate-y: -100%; +} + +.focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; +} + +.focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; +} + +.focus\:translate-y-full:focus { + --transform-translate-y: 100%; +} + +.skew-x-0 { + --transform-skew-x: 0; +} + +.skew-x-3 { + --transform-skew-x: 3deg; +} + +.skew-x-6 { + --transform-skew-x: 6deg; +} + +.skew-x-12 { + --transform-skew-x: 12deg; +} + +.-skew-x-12 { + --transform-skew-x: -12deg; +} + +.-skew-x-6 { + --transform-skew-x: -6deg; +} + +.-skew-x-3 { + --transform-skew-x: -3deg; +} + +.skew-y-0 { + --transform-skew-y: 0; +} + +.skew-y-3 { + --transform-skew-y: 3deg; +} + +.skew-y-6 { + --transform-skew-y: 6deg; +} + +.skew-y-12 { + --transform-skew-y: 12deg; +} + +.-skew-y-12 { + --transform-skew-y: -12deg; +} + +.-skew-y-6 { + --transform-skew-y: -6deg; +} + +.-skew-y-3 { + --transform-skew-y: -3deg; +} + +.hover\:skew-x-0:hover { + --transform-skew-x: 0; +} + +.hover\:skew-x-3:hover { + --transform-skew-x: 3deg; +} + +.hover\:skew-x-6:hover { + --transform-skew-x: 6deg; +} + +.hover\:skew-x-12:hover { + --transform-skew-x: 12deg; +} + +.hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; +} + +.hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; +} + +.hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; +} + +.hover\:skew-y-0:hover { + --transform-skew-y: 0; +} + +.hover\:skew-y-3:hover { + --transform-skew-y: 3deg; +} + +.hover\:skew-y-6:hover { + --transform-skew-y: 6deg; +} + +.hover\:skew-y-12:hover { + --transform-skew-y: 12deg; +} + +.hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; +} + +.hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; +} + +.hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; +} + +.focus\:skew-x-0:focus { + --transform-skew-x: 0; +} + +.focus\:skew-x-3:focus { + --transform-skew-x: 3deg; +} + +.focus\:skew-x-6:focus { + --transform-skew-x: 6deg; +} + +.focus\:skew-x-12:focus { + --transform-skew-x: 12deg; +} + +.focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; +} + +.focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; +} + +.focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; +} + +.focus\:skew-y-0:focus { + --transform-skew-y: 0; +} + +.focus\:skew-y-3:focus { + --transform-skew-y: 3deg; +} + +.focus\:skew-y-6:focus { + --transform-skew-y: 6deg; +} + +.focus\:skew-y-12:focus { + --transform-skew-y: 12deg; +} + +.focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; +} + +.focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; +} + +.focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; +} + +.transition-none { + transition-property: none; +} + +.transition-all { + transition-property: all; +} + +.transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; +} + +.transition-colors { + transition-property: background-color, border-color, color, fill, stroke; +} + +.transition-opacity { + transition-property: opacity; +} + +.transition-shadow { + transition-property: box-shadow; +} + +.transition-transform { + transition-property: transform; +} + +.ease-linear { + transition-timing-function: linear; +} + +.ease-in { + transition-timing-function: cubic-bezier(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; +} + +.shadow-outline-white { + box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.45); +} + +.shadow-outline-black { + box-shadow: 0 0 0 3px hsla(0, 0%, 0%, 0.45); +} + +.shadow-outline-gray { + box-shadow: 0 0 0 3px hsla(210, 2.4%, 83.9%, 0.45); +} + +.shadow-outline-cool-gray { + box-shadow: 0 0 0 3px hsla(213, 26.3%, 85.1%, 0.45); +} + +.shadow-outline-red { + box-shadow: 0 0 0 3px hsla(0, 82.9%, 83.9%, 0.45); +} + +.shadow-outline-orange { + box-shadow: 0 0 0 3px hsla(24.399999999999977, 96.6%, 77.1%, 0.45); +} + +.shadow-outline-yellow { + box-shadow: 0 0 0 3px hsla(47.39999999999998, 95.8%, 53.1%, 0.45); +} + +.shadow-outline-green { + box-shadow: 0 0 0 3px hsla(156.10000000000002, 60.8%, 70%, 0.45); +} + +.shadow-outline-teal { + box-shadow: 0 0 0 3px hsla(183.60000000000002, 63.3%, 69%, 0.45); +} + +.shadow-outline-blue { + box-shadow: 0 0 0 3px hsla(214.70000000000005, 97.8%, 82%, 0.45); +} + +.shadow-outline-indigo { + box-shadow: 0 0 0 3px hsla(225, 92.3%, 84.7%, 0.45); +} + +.shadow-outline-purple { + box-shadow: 0 0 0 3px hsla(250.60000000000002, 93.9%, 87.1%, 0.45); +} + +.shadow-outline-pink { + box-shadow: 0 0 0 3px hsla(327.4, 82.9%, 83.9%, 0.45); +} + +.focus\:shadow-outline-white:focus { + box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.45); +} + +.focus\:shadow-outline-black:focus { + box-shadow: 0 0 0 3px hsla(0, 0%, 0%, 0.45); +} + +.focus\:shadow-outline-gray:focus { + box-shadow: 0 0 0 3px hsla(210, 2.4%, 83.9%, 0.45); +} + +.focus\:shadow-outline-cool-gray:focus { + box-shadow: 0 0 0 3px hsla(213, 26.3%, 85.1%, 0.45); +} + +.focus\:shadow-outline-red:focus { + box-shadow: 0 0 0 3px hsla(0, 82.9%, 83.9%, 0.45); +} + +.focus\:shadow-outline-orange:focus { + box-shadow: 0 0 0 3px hsla(24.399999999999977, 96.6%, 77.1%, 0.45); +} + +.focus\:shadow-outline-yellow:focus { + box-shadow: 0 0 0 3px hsla(47.39999999999998, 95.8%, 53.1%, 0.45); +} + +.focus\:shadow-outline-green:focus { + box-shadow: 0 0 0 3px hsla(156.10000000000002, 60.8%, 70%, 0.45); +} + +.focus\:shadow-outline-teal:focus { + box-shadow: 0 0 0 3px hsla(183.60000000000002, 63.3%, 69%, 0.45); +} + +.focus\:shadow-outline-blue:focus { + box-shadow: 0 0 0 3px hsla(214.70000000000005, 97.8%, 82%, 0.45); +} + +.focus\:shadow-outline-indigo:focus { + box-shadow: 0 0 0 3px hsla(225, 92.3%, 84.7%, 0.45); +} + +.focus\:shadow-outline-purple:focus { + box-shadow: 0 0 0 3px hsla(250.60000000000002, 93.9%, 87.1%, 0.45); +} + +.focus\:shadow-outline-pink:focus { + box-shadow: 0 0 0 3px hsla(327.4, 82.9%, 83.9%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-white:focus { + box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-black:focus { + box-shadow: 0 0 0 3px hsla(0, 0%, 0%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-gray:focus { + box-shadow: 0 0 0 3px hsla(210, 2.4%, 83.9%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-cool-gray:focus { + box-shadow: 0 0 0 3px hsla(213, 26.3%, 85.1%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-red:focus { + box-shadow: 0 0 0 3px hsla(0, 82.9%, 83.9%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-orange:focus { + box-shadow: 0 0 0 3px hsla(24.399999999999977, 96.6%, 77.1%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-yellow:focus { + box-shadow: 0 0 0 3px hsla(47.39999999999998, 95.8%, 53.1%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-green:focus { + box-shadow: 0 0 0 3px hsla(156.10000000000002, 60.8%, 70%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-teal:focus { + box-shadow: 0 0 0 3px hsla(183.60000000000002, 63.3%, 69%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-blue:focus { + box-shadow: 0 0 0 3px hsla(214.70000000000005, 97.8%, 82%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-indigo:focus { + box-shadow: 0 0 0 3px hsla(225, 92.3%, 84.7%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-purple:focus { + box-shadow: 0 0 0 3px hsla(250.60000000000002, 93.9%, 87.1%, 0.45); +} + +.theme-dark .dark\:focus\:shadow-outline-pink:focus { + box-shadow: 0 0 0 3px hsla(327.4, 82.9%, 83.9%, 0.45); +} + +@media (min-width: 640px) { + .sm\:space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); + } + + .sm\:space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); + } + + .sm\:space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); + } + + .sm\:space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); + } + + .sm\:space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); + } + + .sm\:space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); + } + + .sm\:space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); + } + + .sm\:space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); + } + + .sm\:space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); + } + + .sm\:space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); + } + + .sm\:space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); + } + + .sm\:space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); + } + + .sm\:space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); + } + + .sm\:space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); + } + + .sm\:space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); + } + + .sm\:space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); + } + + .sm\:space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); + } + + .sm\:space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); + } + + .sm\:space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); + } + + .sm\:space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); + } + + .sm\:-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); + } + + .sm\:-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); + } + + .sm\:-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); + } + + .sm\:-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); + } + + .sm\:-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); + } + + .sm\:-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); + } + + .sm\:-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); + } + + .sm\:-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); + } + + .sm\:-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); + } + + .sm\:-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); + } + + .sm\:-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); + } + + .sm\:-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); + } + + .sm\:-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); + } + + .sm\:-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); + } + + .sm\:-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); + } + + .sm\:-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); + } + + .sm\:-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); + } + + .sm\:-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); + } + + .sm\:-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); + } + + .sm\:space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; + } + + .sm\:space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; + } + + .sm\:divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); + } + + .sm\:divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); + } + + .sm\:divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); + } + + .sm\:divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); + } + + .sm\:divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); + } + + .sm\:divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); + } + + .sm\:divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; + } + + .sm\:divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; + } + + .sm\:divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; + } + + .sm\:divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; + } + + .sm\:divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; + } + + .sm\:divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; + } + + .sm\:divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + } + + .sm\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .sm\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .sm\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .sm\:bg-fixed { + background-attachment: fixed; + } + + .sm\:bg-local { + background-attachment: local; + } + + .sm\:bg-scroll { + background-attachment: scroll; + } + + .sm\:bg-opacity-0 { + --bg-opacity: 0; + } + + .sm\:bg-opacity-25 { + --bg-opacity: 0.25; + } + + .sm\:bg-opacity-50 { + --bg-opacity: 0.5; + } + + .sm\:bg-opacity-75 { + --bg-opacity: 0.75; + } + + .sm\:bg-opacity-100 { + --bg-opacity: 1; + } + + .sm\:hover\:bg-opacity-0:hover { + --bg-opacity: 0; + } + + .sm\:hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; + } + + .sm\:hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; + } + + .sm\:hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; + } + + .sm\:hover\:bg-opacity-100:hover { + --bg-opacity: 1; + } + + .sm\:focus\:bg-opacity-0:focus { + --bg-opacity: 0; + } + + .sm\:focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; + } + + .sm\:focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; + } + + .sm\:focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; + } + + .sm\:focus\:bg-opacity-100:focus { + --bg-opacity: 1; + } + + .sm\:bg-bottom { + background-position: bottom; + } + + .sm\:bg-center { + background-position: center; + } + + .sm\:bg-left { + background-position: left; + } + + .sm\:bg-left-bottom { + background-position: left bottom; + } + + .sm\:bg-left-top { + background-position: left top; + } + + .sm\:bg-right { + background-position: right; + } + + .sm\:bg-right-bottom { + background-position: right bottom; + } + + .sm\:bg-right-top { + background-position: right top; + } + + .sm\:bg-top { + background-position: top; + } + + .sm\:bg-repeat { + background-repeat: repeat; + } + + .sm\:bg-no-repeat { + background-repeat: no-repeat; + } + + .sm\:bg-repeat-x { + background-repeat: repeat-x; + } + + .sm\:bg-repeat-y { + background-repeat: repeat-y; + } + + .sm\:bg-repeat-round { + background-repeat: round; + } + + .sm\:bg-repeat-space { + background-repeat: space; + } + + .sm\:bg-auto { + background-size: auto; + } + + .sm\:bg-cover { + background-size: cover; + } + + .sm\:bg-contain { + background-size: contain; + } + + .sm\:border-collapse { + border-collapse: collapse; + } + + .sm\:border-separate { + border-collapse: separate; + } + + .sm\:border-opacity-0 { + --border-opacity: 0; + } + + .sm\:border-opacity-25 { + --border-opacity: 0.25; + } + + .sm\:border-opacity-50 { + --border-opacity: 0.5; + } + + .sm\:border-opacity-75 { + --border-opacity: 0.75; + } + + .sm\:border-opacity-100 { + --border-opacity: 1; + } + + .sm\:hover\:border-opacity-0:hover { + --border-opacity: 0; + } + + .sm\:hover\:border-opacity-25:hover { + --border-opacity: 0.25; + } + + .sm\:hover\:border-opacity-50:hover { + --border-opacity: 0.5; + } + + .sm\:hover\:border-opacity-75:hover { + --border-opacity: 0.75; + } + + .sm\:hover\:border-opacity-100:hover { + --border-opacity: 1; + } + + .sm\:focus\:border-opacity-0:focus { + --border-opacity: 0; + } + + .sm\:focus\:border-opacity-25:focus { + --border-opacity: 0.25; + } + + .sm\:focus\:border-opacity-50:focus { + --border-opacity: 0.5; + } + + .sm\:focus\:border-opacity-75:focus { + --border-opacity: 0.75; + } + + .sm\:focus\:border-opacity-100:focus { + --border-opacity: 1; + } + + .sm\:rounded-none { + border-radius: 0; + } + + .sm\:rounded-sm { + border-radius: 0.125rem; + } + + .sm\:rounded { + border-radius: 0.25rem; + } + + .sm\:rounded-md { + border-radius: 0.375rem; + } + + .sm\:rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; + } + + .sm\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .sm\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .sm\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .sm\:border-solid { + border-style: solid; + } + + .sm\:border-dashed { + border-style: dashed; + } + + .sm\:border-dotted { + border-style: dotted; + } + + .sm\:border-double { + border-style: double; + } + + .sm\:border-none { + border-style: none; + } + + .sm\:border-0 { + border-width: 0; + } + + .sm\:border-2 { + border-width: 2px; + } + + .sm\:border-4 { + border-width: 4px; + } + + .sm\:border-8 { + border-width: 8px; + } + + .sm\:border { + border-width: 1px; + } + + .sm\:border-t-0 { + border-top-width: 0; + } + + .sm\:border-r-0 { + border-right-width: 0; + } + + .sm\:border-b-0 { + border-bottom-width: 0; + } + + .sm\:border-l-0 { + border-left-width: 0; + } + + .sm\:border-t-2 { + border-top-width: 2px; + } + + .sm\:border-r-2 { + border-right-width: 2px; + } + + .sm\:border-b-2 { + border-bottom-width: 2px; + } + + .sm\:border-l-2 { + border-left-width: 2px; + } + + .sm\:border-t-4 { + border-top-width: 4px; + } + + .sm\:border-r-4 { + border-right-width: 4px; + } + + .sm\:border-b-4 { + border-bottom-width: 4px; + } + + .sm\:border-l-4 { + border-left-width: 4px; + } + + .sm\:border-t-8 { + border-top-width: 8px; + } + + .sm\:border-r-8 { + border-right-width: 8px; + } + + .sm\:border-b-8 { + border-bottom-width: 8px; + } + + .sm\:border-l-8 { + border-left-width: 8px; + } + + .sm\:border-t { + border-top-width: 1px; + } + + .sm\:border-r { + border-right-width: 1px; + } + + .sm\:border-b { + border-bottom-width: 1px; + } + + .sm\:border-l { + border-left-width: 1px; + } + + .sm\:box-border { + box-sizing: border-box; + } + + .sm\:box-content { + box-sizing: content-box; + } + + .sm\:cursor-auto { + cursor: auto; + } + + .sm\:cursor-default { + cursor: default; + } + + .sm\:cursor-pointer { + cursor: pointer; + } + + .sm\:cursor-wait { + cursor: wait; + } + + .sm\:cursor-text { + cursor: text; + } + + .sm\:cursor-move { + cursor: move; + } + + .sm\:cursor-not-allowed { + cursor: not-allowed; + } + + .sm\:block { + display: block; + } + + .sm\:inline-block { + display: inline-block; + } + + .sm\:inline { + display: inline; + } + + .sm\:flex { + display: flex; + } + + .sm\:inline-flex { + display: inline-flex; + } + + .sm\:table { + display: table; + } + + .sm\:table-caption { + display: table-caption; + } + + .sm\:table-cell { + display: table-cell; + } + + .sm\:table-column { + display: table-column; + } + + .sm\:table-column-group { + display: table-column-group; + } + + .sm\:table-footer-group { + display: table-footer-group; + } + + .sm\:table-header-group { + display: table-header-group; + } + + .sm\:table-row-group { + display: table-row-group; + } + + .sm\:table-row { + display: table-row; + } + + .sm\:flow-root { + display: flow-root; + } + + .sm\:grid { + display: grid; + } + + .sm\:inline-grid { + display: inline-grid; + } + + .sm\:hidden { + display: none; + } + + .theme-dark .sm\:dark\:block { + display: block; + } + + .theme-dark .sm\:dark\:inline-block { + display: inline-block; + } + + .theme-dark .sm\:dark\:inline { + display: inline; + } + + .theme-dark .sm\:dark\:flex { + display: flex; + } + + .theme-dark .sm\:dark\:inline-flex { + display: inline-flex; + } + + .theme-dark .sm\:dark\:table { + display: table; + } + + .theme-dark .sm\:dark\:table-caption { + display: table-caption; + } + + .theme-dark .sm\:dark\:table-cell { + display: table-cell; + } + + .theme-dark .sm\:dark\:table-column { + display: table-column; + } + + .theme-dark .sm\:dark\:table-column-group { + display: table-column-group; + } + + .theme-dark .sm\:dark\:table-footer-group { + display: table-footer-group; + } + + .theme-dark .sm\:dark\:table-header-group { + display: table-header-group; + } + + .theme-dark .sm\:dark\:table-row-group { + display: table-row-group; + } + + .theme-dark .sm\:dark\:table-row { + display: table-row; + } + + .theme-dark .sm\:dark\:flow-root { + display: flow-root; + } + + .theme-dark .sm\:dark\:grid { + display: grid; + } + + .theme-dark .sm\:dark\:inline-grid { + display: inline-grid; + } + + .theme-dark .sm\:dark\:hidden { + display: none; + } + + .sm\:flex-row { + flex-direction: row; + } + + .sm\:flex-row-reverse { + flex-direction: row-reverse; + } + + .sm\:flex-col { + flex-direction: column; + } + + .sm\:flex-col-reverse { + flex-direction: column-reverse; + } + + .sm\:flex-wrap { + flex-wrap: wrap; + } + + .sm\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .sm\:flex-no-wrap { + flex-wrap: nowrap; + } + + .sm\:items-start { + align-items: flex-start; + } + + .sm\:items-end { + align-items: flex-end; + } + + .sm\:items-center { + align-items: center; + } + + .sm\:items-baseline { + align-items: baseline; + } + + .sm\:items-stretch { + align-items: stretch; + } + + .sm\:self-auto { + align-self: auto; + } + + .sm\:self-start { + align-self: flex-start; + } + + .sm\:self-end { + align-self: flex-end; + } + + .sm\:self-center { + align-self: center; + } + + .sm\:self-stretch { + align-self: stretch; + } + + .sm\:justify-start { + justify-content: flex-start; + } + + .sm\:justify-end { + justify-content: flex-end; + } + + .sm\:justify-center { + justify-content: center; + } + + .sm\:justify-between { + justify-content: space-between; + } + + .sm\:justify-around { + justify-content: space-around; + } + + .sm\:justify-evenly { + justify-content: space-evenly; + } + + .sm\:content-center { + align-content: center; + } + + .sm\:content-start { + align-content: flex-start; + } + + .sm\:content-end { + align-content: flex-end; + } + + .sm\:content-between { + align-content: space-between; + } + + .sm\:content-around { + align-content: space-around; + } + + .sm\:flex-1 { + flex: 1 1 0%; + } + + .sm\:flex-auto { + flex: 1 1 auto; + } + + .sm\:flex-initial { + flex: 0 1 auto; + } + + .sm\:flex-none { + flex: none; + } + + .sm\:flex-grow-0 { + flex-grow: 0; + } + + .sm\:flex-grow { + flex-grow: 1; + } + + .sm\:flex-shrink-0 { + flex-shrink: 0; + } + + .sm\:flex-shrink { + flex-shrink: 1; + } + + .sm\:order-1 { + order: 1; + } + + .sm\:order-2 { + order: 2; + } + + .sm\:order-3 { + order: 3; + } + + .sm\:order-4 { + order: 4; + } + + .sm\:order-5 { + order: 5; + } + + .sm\:order-6 { + order: 6; + } + + .sm\:order-7 { + order: 7; + } + + .sm\:order-8 { + order: 8; + } + + .sm\:order-9 { + order: 9; + } + + .sm\:order-10 { + order: 10; + } + + .sm\:order-11 { + order: 11; + } + + .sm\:order-12 { + order: 12; + } + + .sm\:order-first { + order: -9999; + } + + .sm\:order-last { + order: 9999; + } + + .sm\:order-none { + order: 0; + } + + .sm\:float-right { + float: right; + } + + .sm\:float-left { + float: left; + } + + .sm\:float-none { + float: none; + } + + .sm\:clearfix:after { + content: ""; + display: table; + clear: both; + } + + .sm\:clear-left { + clear: left; + } + + .sm\:clear-right { + clear: right; + } + + .sm\:clear-both { + clear: both; + } + + .sm\:clear-none { + clear: none; + } + + .sm\:font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .sm\:font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; + } + + .sm\:font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .sm\:font-hairline { + font-weight: 100; + } + + .sm\:font-thin { + font-weight: 200; + } + + .sm\:font-light { + font-weight: 300; + } + + .sm\:font-normal { + font-weight: 400; + } + + .sm\:font-medium { + font-weight: 500; + } + + .sm\:font-semibold { + font-weight: 600; + } + + .sm\:font-bold { + font-weight: 700; + } + + .sm\:font-extrabold { + font-weight: 800; + } + + .sm\:font-black { + font-weight: 900; + } + + .sm\:hover\:font-hairline:hover { + font-weight: 100; + } + + .sm\:hover\:font-thin:hover { + font-weight: 200; + } + + .sm\:hover\:font-light:hover { + font-weight: 300; + } + + .sm\:hover\:font-normal:hover { + font-weight: 400; + } + + .sm\:hover\:font-medium:hover { + font-weight: 500; + } + + .sm\:hover\:font-semibold:hover { + font-weight: 600; + } + + .sm\:hover\:font-bold:hover { + font-weight: 700; + } + + .sm\:hover\:font-extrabold:hover { + font-weight: 800; + } + + .sm\:hover\:font-black:hover { + font-weight: 900; + } + + .sm\:focus\:font-hairline:focus { + font-weight: 100; + } + + .sm\:focus\:font-thin:focus { + font-weight: 200; + } + + .sm\:focus\:font-light:focus { + font-weight: 300; + } + + .sm\:focus\:font-normal:focus { + font-weight: 400; + } + + .sm\:focus\:font-medium:focus { + font-weight: 500; + } + + .sm\:focus\:font-semibold:focus { + font-weight: 600; + } + + .sm\:focus\:font-bold:focus { + font-weight: 700; + } + + .sm\:focus\:font-extrabold:focus { + font-weight: 800; + } + + .sm\:focus\:font-black:focus { + font-weight: 900; + } + + .sm\:h-0 { + height: 0; + } + + .sm\:h-1 { + height: 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-8 { + height: 2rem; + } + + .sm\:h-10 { + height: 2.5rem; + } + + .sm\:h-12 { + height: 3rem; + } + + .sm\:h-16 { + height: 4rem; + } + + .sm\:h-20 { + height: 5rem; + } + + .sm\:h-24 { + height: 6rem; + } + + .sm\:h-32 { + height: 8rem; + } + + .sm\:h-40 { + height: 10rem; + } + + .sm\:h-48 { + height: 12rem; + } + + .sm\:h-56 { + height: 14rem; + } + + .sm\:h-64 { + height: 16rem; + } + + .sm\:h-auto { + height: auto; + } + + .sm\:h-px { + height: 1px; + } + + .sm\:h-full { + height: 100%; + } + + .sm\:h-screen { + height: 100vh; + } + + .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: 4rem; + } + + .sm\:leading-3 { + line-height: .75rem; + } + + .sm\:leading-4 { + line-height: 1rem; + } + + .sm\:leading-5 { + line-height: 1.25rem; + } + + .sm\:leading-6 { + line-height: 1.5rem; + } + + .sm\:leading-7 { + line-height: 1.75rem; + } + + .sm\:leading-8 { + line-height: 2rem; + } + + .sm\:leading-9 { + line-height: 2.25rem; + } + + .sm\:leading-10 { + line-height: 2.5rem; + } + + .sm\:leading-none { + line-height: 1; + } + + .sm\:leading-tight { + line-height: 1.25; + } + + .sm\:leading-snug { + line-height: 1.375; + } + + .sm\:leading-normal { + line-height: 1.5; + } + + .sm\:leading-relaxed { + line-height: 1.625; + } + + .sm\:leading-loose { + line-height: 2; + } + + .sm\:list-inside { + list-style-position: inside; + } + + .sm\:list-outside { + list-style-position: outside; + } + + .sm\:list-none { + list-style-type: none; + } + + .sm\:list-disc { + list-style-type: disc; + } + + .sm\:list-decimal { + list-style-type: decimal; + } + + .sm\:m-0 { + margin: 0; + } + + .sm\:m-1 { + margin: 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-8 { + margin: 2rem; + } + + .sm\:m-10 { + margin: 2.5rem; + } + + .sm\:m-12 { + margin: 3rem; + } + + .sm\:m-16 { + margin: 4rem; + } + + .sm\:m-20 { + margin: 5rem; + } + + .sm\:m-24 { + margin: 6rem; + } + + .sm\:m-32 { + margin: 8rem; + } + + .sm\:m-40 { + margin: 10rem; + } + + .sm\:m-48 { + margin: 12rem; + } + + .sm\:m-56 { + margin: 14rem; + } + + .sm\:m-64 { + margin: 16rem; + } + + .sm\:m-auto { + margin: auto; + } + + .sm\:m-px { + margin: 1px; + } + + .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-8 { + margin: -2rem; + } + + .sm\:-m-10 { + margin: -2.5rem; + } + + .sm\:-m-12 { + margin: -3rem; + } + + .sm\:-m-16 { + margin: -4rem; + } + + .sm\:-m-20 { + margin: -5rem; + } + + .sm\:-m-24 { + margin: -6rem; + } + + .sm\:-m-32 { + margin: -8rem; + } + + .sm\:-m-40 { + margin: -10rem; + } + + .sm\:-m-48 { + margin: -12rem; + } + + .sm\:-m-56 { + margin: -14rem; + } + + .sm\:-m-64 { + margin: -16rem; + } + + .sm\:-m-px { + margin: -1px; + } + + .sm\:my-0 { + margin-top: 0; + margin-bottom: 0; + } + + .sm\:mx-0 { + margin-left: 0; + margin-right: 0; + } + + .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-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .sm\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .sm\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .sm\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .sm\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .sm\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .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-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .sm\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .sm\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .sm\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .sm\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .sm\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .sm\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .sm\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .sm\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .sm\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .sm\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .sm\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .sm\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .sm\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .sm\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .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-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .sm\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .sm\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .sm\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .sm\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .sm\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .sm\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .sm\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .sm\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .sm\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .sm\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .sm\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .sm\:mt-0 { + margin-top: 0; + } + + .sm\:mr-0 { + margin-right: 0; + } + + .sm\:mb-0 { + margin-bottom: 0; + } + + .sm\:ml-0 { + margin-left: 0; + } + + .sm\:mt-1 { + margin-top: 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-8 { + margin-top: 2rem; + } + + .sm\:mr-8 { + margin-right: 2rem; + } + + .sm\:mb-8 { + margin-bottom: 2rem; + } + + .sm\:ml-8 { + margin-left: 2rem; + } + + .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-12 { + margin-top: 3rem; + } + + .sm\:mr-12 { + margin-right: 3rem; + } + + .sm\:mb-12 { + margin-bottom: 3rem; + } + + .sm\:ml-12 { + margin-left: 3rem; + } + + .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-32 { + margin-top: 8rem; + } + + .sm\:mr-32 { + margin-right: 8rem; + } + + .sm\:mb-32 { + margin-bottom: 8rem; + } + + .sm\:ml-32 { + margin-left: 8rem; + } + + .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-48 { + margin-top: 12rem; + } + + .sm\:mr-48 { + margin-right: 12rem; + } + + .sm\:mb-48 { + margin-bottom: 12rem; + } + + .sm\:ml-48 { + margin-left: 12rem; + } + + .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-64 { + margin-top: 16rem; + } + + .sm\:mr-64 { + margin-right: 16rem; + } + + .sm\:mb-64 { + margin-bottom: 16rem; + } + + .sm\:ml-64 { + margin-left: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + } + + .sm\:-mr-8 { + margin-right: -2rem; + } + + .sm\:-mb-8 { + margin-bottom: -2rem; + } + + .sm\:-ml-8 { + margin-left: -2rem; + } + + .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-12 { + margin-top: -3rem; + } + + .sm\:-mr-12 { + margin-right: -3rem; + } + + .sm\:-mb-12 { + margin-bottom: -3rem; + } + + .sm\:-ml-12 { + margin-left: -3rem; + } + + .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-32 { + margin-top: -8rem; + } + + .sm\:-mr-32 { + margin-right: -8rem; + } + + .sm\:-mb-32 { + margin-bottom: -8rem; + } + + .sm\:-ml-32 { + margin-left: -8rem; + } + + .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-48 { + margin-top: -12rem; + } + + .sm\:-mr-48 { + margin-right: -12rem; + } + + .sm\:-mb-48 { + margin-bottom: -12rem; + } + + .sm\:-ml-48 { + margin-left: -12rem; + } + + .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-64 { + margin-top: -16rem; + } + + .sm\:-mr-64 { + margin-right: -16rem; + } + + .sm\:-mb-64 { + margin-bottom: -16rem; + } + + .sm\:-ml-64 { + margin-left: -16rem; + } + + .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\:max-h-0 { + max-height: 0; + } + + .sm\:max-h-full { + max-height: 100%; + } + + .sm\:max-h-screen { + max-height: 100vh; + } + + .sm\:max-h-xl { + max-height: 36rem; + } + + .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-full { + max-width: 100%; + } + + .sm\:max-w-screen-sm { + max-width: 640px; + } + + .sm\:max-w-screen-md { + max-width: 768px; + } + + .sm\:max-w-screen-lg { + max-width: 1024px; + } + + .sm\:max-w-screen-xl { + max-width: 1280px; + } + + .sm\:min-h-0 { + min-height: 0; + } + + .sm\:min-h-full { + min-height: 100%; + } + + .sm\:min-h-screen { + min-height: 100vh; + } + + .sm\:min-w-0 { + min-width: 0; + } + + .sm\:min-w-full { + min-width: 100%; + } + + .sm\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .sm\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .sm\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .sm\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .sm\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .sm\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .sm\:object-center { + -o-object-position: center; + object-position: center; + } + + .sm\:object-left { + -o-object-position: left; + object-position: left; + } + + .sm\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .sm\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .sm\:object-right { + -o-object-position: right; + object-position: right; + } + + .sm\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .sm\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .sm\:object-top { + -o-object-position: top; + object-position: top; + } + + .sm\:opacity-0 { + opacity: 0; + } + + .sm\:opacity-25 { + opacity: 0.25; + } + + .sm\:opacity-50 { + opacity: 0.5; + } + + .sm\:opacity-75 { + opacity: 0.75; + } + + .sm\:opacity-100 { + opacity: 1; + } + + .sm\:hover\:opacity-0:hover { + opacity: 0; + } + + .sm\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .sm\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .sm\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .sm\:hover\:opacity-100:hover { + opacity: 1; + } + + .sm\:focus\:opacity-0:focus { + opacity: 0; + } + + .sm\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .sm\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .sm\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .sm\:focus\:opacity-100:focus { + opacity: 1; + } + + .sm\:outline-none { + outline: 0; + } + + .sm\:focus\:outline-none:focus { + outline: 0; + } + + .sm\:overflow-auto { + overflow: auto; + } + + .sm\:overflow-hidden { + overflow: hidden; + } + + .sm\:overflow-visible { + overflow: visible; + } + + .sm\:overflow-scroll { + overflow: scroll; + } + + .sm\:overflow-x-auto { + overflow-x: auto; + } + + .sm\:overflow-y-auto { + overflow-y: auto; + } + + .sm\:overflow-x-hidden { + overflow-x: hidden; + } + + .sm\:overflow-y-hidden { + overflow-y: hidden; + } + + .sm\:overflow-x-visible { + overflow-x: visible; + } + + .sm\:overflow-y-visible { + overflow-y: visible; + } + + .sm\:overflow-x-scroll { + overflow-x: scroll; + } + + .sm\:overflow-y-scroll { + overflow-y: scroll; + } + + .sm\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .sm\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + + .sm\:p-0 { + padding: 0; + } + + .sm\:p-1 { + padding: 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-8 { + padding: 2rem; + } + + .sm\:p-10 { + padding: 2.5rem; + } + + .sm\:p-12 { + padding: 3rem; + } + + .sm\:p-16 { + padding: 4rem; + } + + .sm\:p-20 { + padding: 5rem; + } + + .sm\:p-24 { + padding: 6rem; + } + + .sm\:p-32 { + padding: 8rem; + } + + .sm\:p-40 { + padding: 10rem; + } + + .sm\:p-48 { + padding: 12rem; + } + + .sm\:p-56 { + padding: 14rem; + } + + .sm\:p-64 { + padding: 16rem; + } + + .sm\:p-px { + padding: 1px; + } + + .sm\:py-0 { + padding-top: 0; + padding-bottom: 0; + } + + .sm\:px-0 { + padding-left: 0; + padding-right: 0; + } + + .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-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .sm\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .sm\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .sm\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .sm\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .sm\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .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-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .sm\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .sm\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .sm\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .sm\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .sm\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .sm\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .sm\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .sm\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .sm\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .sm\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .sm\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .sm\:pt-0 { + padding-top: 0; + } + + .sm\:pr-0 { + padding-right: 0; + } + + .sm\:pb-0 { + padding-bottom: 0; + } + + .sm\:pl-0 { + padding-left: 0; + } + + .sm\:pt-1 { + padding-top: 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-8 { + padding-top: 2rem; + } + + .sm\:pr-8 { + padding-right: 2rem; + } + + .sm\:pb-8 { + padding-bottom: 2rem; + } + + .sm\:pl-8 { + padding-left: 2rem; + } + + .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-12 { + padding-top: 3rem; + } + + .sm\:pr-12 { + padding-right: 3rem; + } + + .sm\:pb-12 { + padding-bottom: 3rem; + } + + .sm\:pl-12 { + padding-left: 3rem; + } + + .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-32 { + padding-top: 8rem; + } + + .sm\:pr-32 { + padding-right: 8rem; + } + + .sm\:pb-32 { + padding-bottom: 8rem; + } + + .sm\:pl-32 { + padding-left: 8rem; + } + + .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-48 { + padding-top: 12rem; + } + + .sm\:pr-48 { + padding-right: 12rem; + } + + .sm\:pb-48 { + padding-bottom: 12rem; + } + + .sm\:pl-48 { + padding-left: 12rem; + } + + .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-64 { + padding-top: 16rem; + } + + .sm\:pr-64 { + padding-right: 16rem; + } + + .sm\:pb-64 { + padding-bottom: 16rem; + } + + .sm\:pl-64 { + padding-left: 16rem; + } + + .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\:placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; + } + + .sm\:placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .sm\:placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; + } + + .sm\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; + } + + .sm\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; + } + + .sm\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; + } + + .sm\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .sm\:focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; + } + + .sm\:pointer-events-none { + pointer-events: none; + } + + .sm\:pointer-events-auto { + pointer-events: auto; + } + + .sm\:static { + position: static; + } + + .sm\:fixed { + position: fixed; + } + + .sm\:absolute { + position: absolute; + } + + .sm\:relative { + position: relative; + } + + .sm\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .sm\:inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .sm\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .sm\:inset-y-0 { + top: 0; + bottom: 0; + } + + .sm\:inset-x-0 { + right: 0; + left: 0; + } + + .sm\:inset-y-auto { + top: auto; + bottom: auto; + } + + .sm\:inset-x-auto { + right: auto; + left: auto; + } + + .sm\:top-0 { + top: 0; + } + + .sm\:right-0 { + right: 0; + } + + .sm\:bottom-0 { + bottom: 0; + } + + .sm\:left-0 { + left: 0; + } + + .sm\:top-auto { + top: auto; + } + + .sm\:right-auto { + right: auto; + } + + .sm\:bottom-auto { + bottom: auto; + } + + .sm\:left-auto { + left: auto; + } + + .sm\:resize-none { + resize: none; + } + + .sm\:resize-y { + resize: vertical; + } + + .sm\:resize-x { + resize: horizontal; + } + + .sm\:resize { + resize: both; + } + + .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-opacity-0 { + --text-opacity: 0; + } + + .sm\:text-opacity-25 { + --text-opacity: 0.25; + } + + .sm\:text-opacity-50 { + --text-opacity: 0.5; + } + + .sm\:text-opacity-75 { + --text-opacity: 0.75; + } + + .sm\:text-opacity-100 { + --text-opacity: 1; + } + + .sm\:hover\:text-opacity-0:hover { + --text-opacity: 0; + } + + .sm\:hover\:text-opacity-25:hover { + --text-opacity: 0.25; + } + + .sm\:hover\:text-opacity-50:hover { + --text-opacity: 0.5; + } + + .sm\:hover\:text-opacity-75:hover { + --text-opacity: 0.75; + } + + .sm\:hover\:text-opacity-100:hover { + --text-opacity: 1; + } + + .sm\:focus\:text-opacity-0:focus { + --text-opacity: 0; + } + + .sm\:focus\:text-opacity-25:focus { + --text-opacity: 0.25; + } + + .sm\:focus\:text-opacity-50:focus { + --text-opacity: 0.5; + } + + .sm\:focus\:text-opacity-75:focus { + --text-opacity: 0.75; + } + + .sm\:focus\:text-opacity-100:focus { + --text-opacity: 1; + } + + .sm\:italic { + font-style: italic; + } + + .sm\:not-italic { + font-style: normal; + } + + .sm\:uppercase { + text-transform: uppercase; + } + + .sm\:lowercase { + text-transform: lowercase; + } + + .sm\:capitalize { + text-transform: capitalize; + } + + .sm\:normal-case { + text-transform: none; + } + + .sm\:underline { + text-decoration: underline; + } + + .sm\:line-through { + text-decoration: line-through; + } + + .sm\:no-underline { + text-decoration: none; + } + + .sm\:hover\:underline:hover { + text-decoration: underline; + } + + .sm\:hover\:line-through:hover { + text-decoration: line-through; + } + + .sm\:hover\:no-underline:hover { + text-decoration: none; + } + + .sm\:focus\:underline:focus { + text-decoration: underline; + } + + .sm\:focus\:line-through:focus { + text-decoration: line-through; + } + + .sm\:focus\:no-underline:focus { + text-decoration: none; + } + + .sm\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .sm\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .sm\:tracking-tighter { + letter-spacing: -0.05em; + } + + .sm\:tracking-tight { + letter-spacing: -0.025em; + } + + .sm\:tracking-normal { + letter-spacing: 0; + } + + .sm\:tracking-wide { + letter-spacing: 0.025em; + } + + .sm\:tracking-wider { + letter-spacing: 0.05em; + } + + .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-no-wrap { + white-space: nowrap; + } + + .sm\:whitespace-pre { + white-space: pre; + } + + .sm\:whitespace-pre-line { + white-space: pre-line; + } + + .sm\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .sm\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .sm\:break-words { + overflow-wrap: break-word; + } + + .sm\:break-all { + word-break: break-all; + } + + .sm\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .sm\:w-0 { + width: 0; + } + + .sm\:w-1 { + width: 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-8 { + width: 2rem; + } + + .sm\:w-10 { + width: 2.5rem; + } + + .sm\:w-12 { + width: 3rem; + } + + .sm\:w-16 { + width: 4rem; + } + + .sm\:w-20 { + width: 5rem; + } + + .sm\:w-24 { + width: 6rem; + } + + .sm\:w-32 { + width: 8rem; + } + + .sm\:w-40 { + width: 10rem; + } + + .sm\:w-48 { + width: 12rem; + } + + .sm\:w-56 { + width: 14rem; + } + + .sm\:w-64 { + width: 16rem; + } + + .sm\:w-auto { + width: auto; + } + + .sm\:w-px { + width: 1px; + } + + .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\:gap-0 { + grid-gap: 0; + gap: 0; + } + + .sm\:gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; + } + + .sm\:gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; + } + + .sm\:gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; + } + + .sm\:gap-4 { + grid-gap: 1rem; + gap: 1rem; + } + + .sm\:gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; + } + + .sm\:gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; + } + + .sm\:gap-8 { + grid-gap: 2rem; + gap: 2rem; + } + + .sm\:gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; + } + + .sm\:gap-12 { + grid-gap: 3rem; + gap: 3rem; + } + + .sm\:gap-16 { + grid-gap: 4rem; + gap: 4rem; + } + + .sm\:gap-20 { + grid-gap: 5rem; + gap: 5rem; + } + + .sm\:gap-24 { + grid-gap: 6rem; + gap: 6rem; + } + + .sm\:gap-32 { + grid-gap: 8rem; + gap: 8rem; + } + + .sm\:gap-40 { + grid-gap: 10rem; + gap: 10rem; + } + + .sm\:gap-48 { + grid-gap: 12rem; + gap: 12rem; + } + + .sm\:gap-56 { + grid-gap: 14rem; + gap: 14rem; + } + + .sm\:gap-64 { + grid-gap: 16rem; + gap: 16rem; + } + + .sm\:gap-px { + grid-gap: 1px; + gap: 1px; + } + + .sm\:col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; + } + + .sm\:col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .sm\:col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .sm\:col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .sm\:col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .sm\:col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .sm\:col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .sm\:col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .sm\:col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .sm\:col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .sm\:col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .sm\:col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .sm\:col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .sm\:col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .sm\:col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .sm\:col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .sm\:col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .sm\:col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .sm\:col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; + } + + .sm\:row-gap-0 { + grid-row-gap: 0; + row-gap: 0; + } + + .sm\:row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; + } + + .sm\:row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; + } + + .sm\:row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; + } + + .sm\:row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; + } + + .sm\:row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; + } + + .sm\:row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; + } + + .sm\:row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; + } + + .sm\:row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; + } + + .sm\:row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; + } + + .sm\:row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; + } + + .sm\:row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; + } + + .sm\:row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; + } + + .sm\:row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; + } + + .sm\:row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; + } + + .sm\:row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; + } + + .sm\:row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; + } + + .sm\:row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; + } + + .sm\:row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; + } + + .sm\:grid-flow-row { + grid-auto-flow: row; + } + + .sm\:grid-flow-col { + grid-auto-flow: column; + } + + .sm\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .sm\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .sm\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .sm\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .sm\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .sm\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .sm\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .sm\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .sm\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .sm\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .sm\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .sm\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .sm\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .sm\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .sm\:grid-cols-none { + grid-template-columns: none; + } + + .sm\:col-auto { + grid-column: auto; + } + + .sm\:col-span-1 { + grid-column: span 1 / span 1; + } + + .sm\:col-span-2 { + grid-column: span 2 / span 2; + } + + .sm\:col-span-3 { + grid-column: span 3 / span 3; + } + + .sm\:col-span-4 { + grid-column: span 4 / span 4; + } + + .sm\:col-span-5 { + grid-column: span 5 / span 5; + } + + .sm\:col-span-6 { + grid-column: span 6 / span 6; + } + + .sm\:col-span-7 { + grid-column: span 7 / span 7; + } + + .sm\:col-span-8 { + grid-column: span 8 / span 8; + } + + .sm\:col-span-9 { + grid-column: span 9 / span 9; + } + + .sm\:col-span-10 { + grid-column: span 10 / span 10; + } + + .sm\:col-span-11 { + grid-column: span 11 / span 11; + } + + .sm\:col-span-12 { + grid-column: span 12 / span 12; + } + + .sm\:col-start-1 { + grid-column-start: 1; + } + + .sm\:col-start-2 { + grid-column-start: 2; + } + + .sm\:col-start-3 { + grid-column-start: 3; + } + + .sm\:col-start-4 { + grid-column-start: 4; + } + + .sm\:col-start-5 { + grid-column-start: 5; + } + + .sm\:col-start-6 { + grid-column-start: 6; + } + + .sm\:col-start-7 { + grid-column-start: 7; + } + + .sm\:col-start-8 { + grid-column-start: 8; + } + + .sm\:col-start-9 { + grid-column-start: 9; + } + + .sm\:col-start-10 { + grid-column-start: 10; + } + + .sm\:col-start-11 { + grid-column-start: 11; + } + + .sm\:col-start-12 { + grid-column-start: 12; + } + + .sm\:col-start-13 { + grid-column-start: 13; + } + + .sm\:col-start-auto { + grid-column-start: auto; + } + + .sm\:col-end-1 { + grid-column-end: 1; + } + + .sm\:col-end-2 { + grid-column-end: 2; + } + + .sm\:col-end-3 { + grid-column-end: 3; + } + + .sm\:col-end-4 { + grid-column-end: 4; + } + + .sm\:col-end-5 { + grid-column-end: 5; + } + + .sm\:col-end-6 { + grid-column-end: 6; + } + + .sm\:col-end-7 { + grid-column-end: 7; + } + + .sm\:col-end-8 { + grid-column-end: 8; + } + + .sm\:col-end-9 { + grid-column-end: 9; + } + + .sm\:col-end-10 { + grid-column-end: 10; + } + + .sm\:col-end-11 { + grid-column-end: 11; + } + + .sm\:col-end-12 { + grid-column-end: 12; + } + + .sm\:col-end-13 { + grid-column-end: 13; + } + + .sm\:col-end-auto { + grid-column-end: auto; + } + + .sm\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .sm\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .sm\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .sm\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .sm\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .sm\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .sm\:grid-rows-none { + grid-template-rows: none; + } + + .sm\:row-auto { + grid-row: auto; + } + + .sm\:row-span-1 { + grid-row: span 1 / span 1; + } + + .sm\:row-span-2 { + grid-row: span 2 / span 2; + } + + .sm\:row-span-3 { + grid-row: span 3 / span 3; + } + + .sm\:row-span-4 { + grid-row: span 4 / span 4; + } + + .sm\:row-span-5 { + grid-row: span 5 / span 5; + } + + .sm\:row-span-6 { + grid-row: span 6 / span 6; + } + + .sm\:row-start-1 { + grid-row-start: 1; + } + + .sm\:row-start-2 { + grid-row-start: 2; + } + + .sm\:row-start-3 { + grid-row-start: 3; + } + + .sm\:row-start-4 { + grid-row-start: 4; + } + + .sm\:row-start-5 { + grid-row-start: 5; + } + + .sm\:row-start-6 { + grid-row-start: 6; + } + + .sm\:row-start-7 { + grid-row-start: 7; + } + + .sm\:row-start-auto { + grid-row-start: auto; + } + + .sm\:row-end-1 { + grid-row-end: 1; + } + + .sm\:row-end-2 { + grid-row-end: 2; + } + + .sm\:row-end-3 { + grid-row-end: 3; + } + + .sm\:row-end-4 { + grid-row-end: 4; + } + + .sm\:row-end-5 { + grid-row-end: 5; + } + + .sm\:row-end-6 { + grid-row-end: 6; + } + + .sm\:row-end-7 { + grid-row-end: 7; + } + + .sm\:row-end-auto { + grid-row-end: auto; + } + + .sm\:transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); + } + + .sm\:transform-none { + transform: none; + } + + .sm\:origin-center { + transform-origin: center; + } + + .sm\:origin-top { + transform-origin: top; + } + + .sm\:origin-top-right { + transform-origin: top right; + } + + .sm\:origin-right { + transform-origin: right; + } + + .sm\:origin-bottom-right { + transform-origin: bottom right; + } + + .sm\:origin-bottom { + transform-origin: bottom; + } + + .sm\:origin-bottom-left { + transform-origin: bottom left; + } + + .sm\:origin-left { + transform-origin: left; + } + + .sm\:origin-top-left { + transform-origin: top left; + } + + .sm\:scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .sm\:scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .sm\:scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .sm\:scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .sm\:scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .sm\:scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .sm\:scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .sm\:scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .sm\:scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .sm\:scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .sm\:scale-x-0 { + --transform-scale-x: 0; + } + + .sm\:scale-x-50 { + --transform-scale-x: .5; + } + + .sm\:scale-x-75 { + --transform-scale-x: .75; + } + + .sm\:scale-x-90 { + --transform-scale-x: .9; + } + + .sm\:scale-x-95 { + --transform-scale-x: .95; + } + + .sm\:scale-x-100 { + --transform-scale-x: 1; + } + + .sm\:scale-x-105 { + --transform-scale-x: 1.05; + } + + .sm\:scale-x-110 { + --transform-scale-x: 1.1; + } + + .sm\:scale-x-125 { + --transform-scale-x: 1.25; + } + + .sm\:scale-x-150 { + --transform-scale-x: 1.5; + } + + .sm\:scale-y-0 { + --transform-scale-y: 0; + } + + .sm\:scale-y-50 { + --transform-scale-y: .5; + } + + .sm\:scale-y-75 { + --transform-scale-y: .75; + } + + .sm\:scale-y-90 { + --transform-scale-y: .9; + } + + .sm\:scale-y-95 { + --transform-scale-y: .95; + } + + .sm\:scale-y-100 { + --transform-scale-y: 1; + } + + .sm\:scale-y-105 { + --transform-scale-y: 1.05; + } + + .sm\:scale-y-110 { + --transform-scale-y: 1.1; + } + + .sm\:scale-y-125 { + --transform-scale-y: 1.25; + } + + .sm\:scale-y-150 { + --transform-scale-y: 1.5; + } + + .sm\:hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .sm\:hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .sm\:hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .sm\:hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .sm\:hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .sm\:hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .sm\:hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .sm\:hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .sm\:hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .sm\:hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .sm\:hover\:scale-x-0:hover { + --transform-scale-x: 0; + } + + .sm\:hover\:scale-x-50:hover { + --transform-scale-x: .5; + } + + .sm\:hover\:scale-x-75:hover { + --transform-scale-x: .75; + } + + .sm\:hover\:scale-x-90:hover { + --transform-scale-x: .9; + } + + .sm\:hover\:scale-x-95:hover { + --transform-scale-x: .95; + } + + .sm\:hover\:scale-x-100:hover { + --transform-scale-x: 1; + } + + .sm\:hover\:scale-x-105:hover { + --transform-scale-x: 1.05; + } + + .sm\:hover\:scale-x-110:hover { + --transform-scale-x: 1.1; + } + + .sm\:hover\:scale-x-125:hover { + --transform-scale-x: 1.25; + } + + .sm\:hover\:scale-x-150:hover { + --transform-scale-x: 1.5; + } + + .sm\:hover\:scale-y-0:hover { + --transform-scale-y: 0; + } + + .sm\:hover\:scale-y-50:hover { + --transform-scale-y: .5; + } + + .sm\:hover\:scale-y-75:hover { + --transform-scale-y: .75; + } + + .sm\:hover\:scale-y-90:hover { + --transform-scale-y: .9; + } + + .sm\:hover\:scale-y-95:hover { + --transform-scale-y: .95; + } + + .sm\:hover\:scale-y-100:hover { + --transform-scale-y: 1; + } + + .sm\:hover\:scale-y-105:hover { + --transform-scale-y: 1.05; + } + + .sm\:hover\:scale-y-110:hover { + --transform-scale-y: 1.1; + } + + .sm\:hover\:scale-y-125:hover { + --transform-scale-y: 1.25; + } + + .sm\:hover\:scale-y-150:hover { + --transform-scale-y: 1.5; + } + + .sm\:focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .sm\:focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .sm\:focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .sm\:focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .sm\:focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .sm\:focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .sm\:focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .sm\:focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .sm\:focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .sm\:focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .sm\:focus\:scale-x-0:focus { + --transform-scale-x: 0; + } + + .sm\:focus\:scale-x-50:focus { + --transform-scale-x: .5; + } + + .sm\:focus\:scale-x-75:focus { + --transform-scale-x: .75; + } + + .sm\:focus\:scale-x-90:focus { + --transform-scale-x: .9; + } + + .sm\:focus\:scale-x-95:focus { + --transform-scale-x: .95; + } + + .sm\:focus\:scale-x-100:focus { + --transform-scale-x: 1; + } + + .sm\:focus\:scale-x-105:focus { + --transform-scale-x: 1.05; + } + + .sm\:focus\:scale-x-110:focus { + --transform-scale-x: 1.1; + } + + .sm\:focus\:scale-x-125:focus { + --transform-scale-x: 1.25; + } + + .sm\:focus\:scale-x-150:focus { + --transform-scale-x: 1.5; + } + + .sm\:focus\:scale-y-0:focus { + --transform-scale-y: 0; + } + + .sm\:focus\:scale-y-50:focus { + --transform-scale-y: .5; + } + + .sm\:focus\:scale-y-75:focus { + --transform-scale-y: .75; + } + + .sm\:focus\:scale-y-90:focus { + --transform-scale-y: .9; + } + + .sm\:focus\:scale-y-95:focus { + --transform-scale-y: .95; + } + + .sm\:focus\:scale-y-100:focus { + --transform-scale-y: 1; + } + + .sm\:focus\:scale-y-105:focus { + --transform-scale-y: 1.05; + } + + .sm\:focus\:scale-y-110:focus { + --transform-scale-y: 1.1; + } + + .sm\:focus\:scale-y-125:focus { + --transform-scale-y: 1.25; + } + + .sm\:focus\:scale-y-150:focus { + --transform-scale-y: 1.5; + } + + .sm\:rotate-0 { + --transform-rotate: 0; + } + + .sm\:rotate-45 { + --transform-rotate: 45deg; + } + + .sm\:rotate-90 { + --transform-rotate: 90deg; + } + + .sm\:rotate-180 { + --transform-rotate: 180deg; + } + + .sm\:-rotate-180 { + --transform-rotate: -180deg; + } + + .sm\:-rotate-90 { + --transform-rotate: -90deg; + } + + .sm\:-rotate-45 { + --transform-rotate: -45deg; + } + + .sm\:hover\:rotate-0:hover { + --transform-rotate: 0; + } + + .sm\:hover\:rotate-45:hover { + --transform-rotate: 45deg; + } + + .sm\:hover\:rotate-90:hover { + --transform-rotate: 90deg; + } + + .sm\:hover\:rotate-180:hover { + --transform-rotate: 180deg; + } + + .sm\:hover\:-rotate-180:hover { + --transform-rotate: -180deg; + } + + .sm\:hover\:-rotate-90:hover { + --transform-rotate: -90deg; + } + + .sm\:hover\:-rotate-45:hover { + --transform-rotate: -45deg; + } + + .sm\:focus\:rotate-0:focus { + --transform-rotate: 0; + } + + .sm\:focus\:rotate-45:focus { + --transform-rotate: 45deg; + } + + .sm\:focus\:rotate-90:focus { + --transform-rotate: 90deg; + } + + .sm\:focus\:rotate-180:focus { + --transform-rotate: 180deg; + } + + .sm\:focus\:-rotate-180:focus { + --transform-rotate: -180deg; + } + + .sm\:focus\:-rotate-90:focus { + --transform-rotate: -90deg; + } + + .sm\:focus\:-rotate-45:focus { + --transform-rotate: -45deg; + } + + .sm\:translate-x-0 { + --transform-translate-x: 0; + } + + .sm\:translate-x-1 { + --transform-translate-x: 0.25rem; + } + + .sm\:translate-x-2 { + --transform-translate-x: 0.5rem; + } + + .sm\:translate-x-3 { + --transform-translate-x: 0.75rem; + } + + .sm\:translate-x-4 { + --transform-translate-x: 1rem; + } + + .sm\:translate-x-5 { + --transform-translate-x: 1.25rem; + } + + .sm\:translate-x-6 { + --transform-translate-x: 1.5rem; + } + + .sm\:translate-x-8 { + --transform-translate-x: 2rem; + } + + .sm\:translate-x-10 { + --transform-translate-x: 2.5rem; + } + + .sm\:translate-x-12 { + --transform-translate-x: 3rem; + } + + .sm\:translate-x-16 { + --transform-translate-x: 4rem; + } + + .sm\:translate-x-20 { + --transform-translate-x: 5rem; + } + + .sm\:translate-x-24 { + --transform-translate-x: 6rem; + } + + .sm\:translate-x-32 { + --transform-translate-x: 8rem; + } + + .sm\:translate-x-40 { + --transform-translate-x: 10rem; + } + + .sm\:translate-x-48 { + --transform-translate-x: 12rem; + } + + .sm\:translate-x-56 { + --transform-translate-x: 14rem; + } + + .sm\:translate-x-64 { + --transform-translate-x: 16rem; + } + + .sm\:translate-x-px { + --transform-translate-x: 1px; + } + + .sm\:-translate-x-1 { + --transform-translate-x: -0.25rem; + } + + .sm\:-translate-x-2 { + --transform-translate-x: -0.5rem; + } + + .sm\:-translate-x-3 { + --transform-translate-x: -0.75rem; + } + + .sm\:-translate-x-4 { + --transform-translate-x: -1rem; + } + + .sm\:-translate-x-5 { + --transform-translate-x: -1.25rem; + } + + .sm\:-translate-x-6 { + --transform-translate-x: -1.5rem; + } + + .sm\:-translate-x-8 { + --transform-translate-x: -2rem; + } + + .sm\:-translate-x-10 { + --transform-translate-x: -2.5rem; + } + + .sm\:-translate-x-12 { + --transform-translate-x: -3rem; + } + + .sm\:-translate-x-16 { + --transform-translate-x: -4rem; + } + + .sm\:-translate-x-20 { + --transform-translate-x: -5rem; + } + + .sm\:-translate-x-24 { + --transform-translate-x: -6rem; + } + + .sm\:-translate-x-32 { + --transform-translate-x: -8rem; + } + + .sm\:-translate-x-40 { + --transform-translate-x: -10rem; + } + + .sm\:-translate-x-48 { + --transform-translate-x: -12rem; + } + + .sm\:-translate-x-56 { + --transform-translate-x: -14rem; + } + + .sm\:-translate-x-64 { + --transform-translate-x: -16rem; + } + + .sm\:-translate-x-px { + --transform-translate-x: -1px; + } + + .sm\:-translate-x-full { + --transform-translate-x: -100%; + } + + .sm\:-translate-x-1\/2 { + --transform-translate-x: -50%; + } + + .sm\:translate-x-1\/2 { + --transform-translate-x: 50%; + } + + .sm\:translate-x-full { + --transform-translate-x: 100%; + } + + .sm\:translate-y-0 { + --transform-translate-y: 0; + } + + .sm\:translate-y-1 { + --transform-translate-y: 0.25rem; + } + + .sm\:translate-y-2 { + --transform-translate-y: 0.5rem; + } + + .sm\:translate-y-3 { + --transform-translate-y: 0.75rem; + } + + .sm\:translate-y-4 { + --transform-translate-y: 1rem; + } + + .sm\:translate-y-5 { + --transform-translate-y: 1.25rem; + } + + .sm\:translate-y-6 { + --transform-translate-y: 1.5rem; + } + + .sm\:translate-y-8 { + --transform-translate-y: 2rem; + } + + .sm\:translate-y-10 { + --transform-translate-y: 2.5rem; + } + + .sm\:translate-y-12 { + --transform-translate-y: 3rem; + } + + .sm\:translate-y-16 { + --transform-translate-y: 4rem; + } + + .sm\:translate-y-20 { + --transform-translate-y: 5rem; + } + + .sm\:translate-y-24 { + --transform-translate-y: 6rem; + } + + .sm\:translate-y-32 { + --transform-translate-y: 8rem; + } + + .sm\:translate-y-40 { + --transform-translate-y: 10rem; + } + + .sm\:translate-y-48 { + --transform-translate-y: 12rem; + } + + .sm\:translate-y-56 { + --transform-translate-y: 14rem; + } + + .sm\:translate-y-64 { + --transform-translate-y: 16rem; + } + + .sm\:translate-y-px { + --transform-translate-y: 1px; + } + + .sm\:-translate-y-1 { + --transform-translate-y: -0.25rem; + } + + .sm\:-translate-y-2 { + --transform-translate-y: -0.5rem; + } + + .sm\:-translate-y-3 { + --transform-translate-y: -0.75rem; + } + + .sm\:-translate-y-4 { + --transform-translate-y: -1rem; + } + + .sm\:-translate-y-5 { + --transform-translate-y: -1.25rem; + } + + .sm\:-translate-y-6 { + --transform-translate-y: -1.5rem; + } + + .sm\:-translate-y-8 { + --transform-translate-y: -2rem; + } + + .sm\:-translate-y-10 { + --transform-translate-y: -2.5rem; + } + + .sm\:-translate-y-12 { + --transform-translate-y: -3rem; + } + + .sm\:-translate-y-16 { + --transform-translate-y: -4rem; + } + + .sm\:-translate-y-20 { + --transform-translate-y: -5rem; + } + + .sm\:-translate-y-24 { + --transform-translate-y: -6rem; + } + + .sm\:-translate-y-32 { + --transform-translate-y: -8rem; + } + + .sm\:-translate-y-40 { + --transform-translate-y: -10rem; + } + + .sm\:-translate-y-48 { + --transform-translate-y: -12rem; + } + + .sm\:-translate-y-56 { + --transform-translate-y: -14rem; + } + + .sm\:-translate-y-64 { + --transform-translate-y: -16rem; + } + + .sm\:-translate-y-px { + --transform-translate-y: -1px; + } + + .sm\:-translate-y-full { + --transform-translate-y: -100%; + } + + .sm\:-translate-y-1\/2 { + --transform-translate-y: -50%; + } + + .sm\:translate-y-1\/2 { + --transform-translate-y: 50%; + } + + .sm\:translate-y-full { + --transform-translate-y: 100%; + } + + .sm\:hover\:translate-x-0:hover { + --transform-translate-x: 0; + } + + .sm\:hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; + } + + .sm\:hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; + } + + .sm\:hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; + } + + .sm\:hover\:translate-x-4:hover { + --transform-translate-x: 1rem; + } + + .sm\:hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; + } + + .sm\:hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; + } + + .sm\:hover\:translate-x-8:hover { + --transform-translate-x: 2rem; + } + + .sm\:hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; + } + + .sm\:hover\:translate-x-12:hover { + --transform-translate-x: 3rem; + } + + .sm\:hover\:translate-x-16:hover { + --transform-translate-x: 4rem; + } + + .sm\:hover\:translate-x-20:hover { + --transform-translate-x: 5rem; + } + + .sm\:hover\:translate-x-24:hover { + --transform-translate-x: 6rem; + } + + .sm\:hover\:translate-x-32:hover { + --transform-translate-x: 8rem; + } + + .sm\:hover\:translate-x-40:hover { + --transform-translate-x: 10rem; + } + + .sm\:hover\:translate-x-48:hover { + --transform-translate-x: 12rem; + } + + .sm\:hover\:translate-x-56:hover { + --transform-translate-x: 14rem; + } + + .sm\:hover\:translate-x-64:hover { + --transform-translate-x: 16rem; + } + + .sm\:hover\:translate-x-px:hover { + --transform-translate-x: 1px; + } + + .sm\:hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; + } + + .sm\:hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; + } + + .sm\:hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; + } + + .sm\:hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; + } + + .sm\:hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; + } + + .sm\:hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; + } + + .sm\:hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; + } + + .sm\:hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; + } + + .sm\:hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; + } + + .sm\:hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; + } + + .sm\:hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; + } + + .sm\:hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; + } + + .sm\:hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; + } + + .sm\:hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; + } + + .sm\:hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; + } + + .sm\:hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; + } + + .sm\:hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; + } + + .sm\:hover\:-translate-x-px:hover { + --transform-translate-x: -1px; + } + + .sm\:hover\:-translate-x-full:hover { + --transform-translate-x: -100%; + } + + .sm\:hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; + } + + .sm\:hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; + } + + .sm\:hover\:translate-x-full:hover { + --transform-translate-x: 100%; + } + + .sm\:hover\:translate-y-0:hover { + --transform-translate-y: 0; + } + + .sm\:hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; + } + + .sm\:hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; + } + + .sm\:hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; + } + + .sm\:hover\:translate-y-4:hover { + --transform-translate-y: 1rem; + } + + .sm\:hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; + } + + .sm\:hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; + } + + .sm\:hover\:translate-y-8:hover { + --transform-translate-y: 2rem; + } + + .sm\:hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; + } + + .sm\:hover\:translate-y-12:hover { + --transform-translate-y: 3rem; + } + + .sm\:hover\:translate-y-16:hover { + --transform-translate-y: 4rem; + } + + .sm\:hover\:translate-y-20:hover { + --transform-translate-y: 5rem; + } + + .sm\:hover\:translate-y-24:hover { + --transform-translate-y: 6rem; + } + + .sm\:hover\:translate-y-32:hover { + --transform-translate-y: 8rem; + } + + .sm\:hover\:translate-y-40:hover { + --transform-translate-y: 10rem; + } + + .sm\:hover\:translate-y-48:hover { + --transform-translate-y: 12rem; + } + + .sm\:hover\:translate-y-56:hover { + --transform-translate-y: 14rem; + } + + .sm\:hover\:translate-y-64:hover { + --transform-translate-y: 16rem; + } + + .sm\:hover\:translate-y-px:hover { + --transform-translate-y: 1px; + } + + .sm\:hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; + } + + .sm\:hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; + } + + .sm\:hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; + } + + .sm\:hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; + } + + .sm\:hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; + } + + .sm\:hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; + } + + .sm\:hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; + } + + .sm\:hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; + } + + .sm\:hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; + } + + .sm\:hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; + } + + .sm\:hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; + } + + .sm\:hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; + } + + .sm\:hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; + } + + .sm\:hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; + } + + .sm\:hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; + } + + .sm\:hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; + } + + .sm\:hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; + } + + .sm\:hover\:-translate-y-px:hover { + --transform-translate-y: -1px; + } + + .sm\:hover\:-translate-y-full:hover { + --transform-translate-y: -100%; + } + + .sm\:hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; + } + + .sm\:hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; + } + + .sm\:hover\:translate-y-full:hover { + --transform-translate-y: 100%; + } + + .sm\:focus\:translate-x-0:focus { + --transform-translate-x: 0; + } + + .sm\:focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; + } + + .sm\:focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; + } + + .sm\:focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; + } + + .sm\:focus\:translate-x-4:focus { + --transform-translate-x: 1rem; + } + + .sm\:focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; + } + + .sm\:focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; + } + + .sm\:focus\:translate-x-8:focus { + --transform-translate-x: 2rem; + } + + .sm\:focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; + } + + .sm\:focus\:translate-x-12:focus { + --transform-translate-x: 3rem; + } + + .sm\:focus\:translate-x-16:focus { + --transform-translate-x: 4rem; + } + + .sm\:focus\:translate-x-20:focus { + --transform-translate-x: 5rem; + } + + .sm\:focus\:translate-x-24:focus { + --transform-translate-x: 6rem; + } + + .sm\:focus\:translate-x-32:focus { + --transform-translate-x: 8rem; + } + + .sm\:focus\:translate-x-40:focus { + --transform-translate-x: 10rem; + } + + .sm\:focus\:translate-x-48:focus { + --transform-translate-x: 12rem; + } + + .sm\:focus\:translate-x-56:focus { + --transform-translate-x: 14rem; + } + + .sm\:focus\:translate-x-64:focus { + --transform-translate-x: 16rem; + } + + .sm\:focus\:translate-x-px:focus { + --transform-translate-x: 1px; + } + + .sm\:focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; + } + + .sm\:focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; + } + + .sm\:focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; + } + + .sm\:focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; + } + + .sm\:focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; + } + + .sm\:focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; + } + + .sm\:focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; + } + + .sm\:focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; + } + + .sm\:focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; + } + + .sm\:focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; + } + + .sm\:focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; + } + + .sm\:focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; + } + + .sm\:focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; + } + + .sm\:focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; + } + + .sm\:focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; + } + + .sm\:focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; + } + + .sm\:focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; + } + + .sm\:focus\:-translate-x-px:focus { + --transform-translate-x: -1px; + } + + .sm\:focus\:-translate-x-full:focus { + --transform-translate-x: -100%; + } + + .sm\:focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; + } + + .sm\:focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; + } + + .sm\:focus\:translate-x-full:focus { + --transform-translate-x: 100%; + } + + .sm\:focus\:translate-y-0:focus { + --transform-translate-y: 0; + } + + .sm\:focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; + } + + .sm\:focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; + } + + .sm\:focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; + } + + .sm\:focus\:translate-y-4:focus { + --transform-translate-y: 1rem; + } + + .sm\:focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; + } + + .sm\:focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; + } + + .sm\:focus\:translate-y-8:focus { + --transform-translate-y: 2rem; + } + + .sm\:focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; + } + + .sm\:focus\:translate-y-12:focus { + --transform-translate-y: 3rem; + } + + .sm\:focus\:translate-y-16:focus { + --transform-translate-y: 4rem; + } + + .sm\:focus\:translate-y-20:focus { + --transform-translate-y: 5rem; + } + + .sm\:focus\:translate-y-24:focus { + --transform-translate-y: 6rem; + } + + .sm\:focus\:translate-y-32:focus { + --transform-translate-y: 8rem; + } + + .sm\:focus\:translate-y-40:focus { + --transform-translate-y: 10rem; + } + + .sm\:focus\:translate-y-48:focus { + --transform-translate-y: 12rem; + } + + .sm\:focus\:translate-y-56:focus { + --transform-translate-y: 14rem; + } + + .sm\:focus\:translate-y-64:focus { + --transform-translate-y: 16rem; + } + + .sm\:focus\:translate-y-px:focus { + --transform-translate-y: 1px; + } + + .sm\:focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; + } + + .sm\:focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; + } + + .sm\:focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; + } + + .sm\:focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; + } + + .sm\:focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; + } + + .sm\:focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; + } + + .sm\:focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; + } + + .sm\:focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; + } + + .sm\:focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; + } + + .sm\:focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; + } + + .sm\:focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; + } + + .sm\:focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; + } + + .sm\:focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; + } + + .sm\:focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; + } + + .sm\:focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; + } + + .sm\:focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; + } + + .sm\:focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; + } + + .sm\:focus\:-translate-y-px:focus { + --transform-translate-y: -1px; + } + + .sm\:focus\:-translate-y-full:focus { + --transform-translate-y: -100%; + } + + .sm\:focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; + } + + .sm\:focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; + } + + .sm\:focus\:translate-y-full:focus { + --transform-translate-y: 100%; + } + + .sm\:skew-x-0 { + --transform-skew-x: 0; + } + + .sm\:skew-x-3 { + --transform-skew-x: 3deg; + } + + .sm\:skew-x-6 { + --transform-skew-x: 6deg; + } + + .sm\:skew-x-12 { + --transform-skew-x: 12deg; + } + + .sm\:-skew-x-12 { + --transform-skew-x: -12deg; + } + + .sm\:-skew-x-6 { + --transform-skew-x: -6deg; + } + + .sm\:-skew-x-3 { + --transform-skew-x: -3deg; + } + + .sm\:skew-y-0 { + --transform-skew-y: 0; + } + + .sm\:skew-y-3 { + --transform-skew-y: 3deg; + } + + .sm\:skew-y-6 { + --transform-skew-y: 6deg; + } + + .sm\:skew-y-12 { + --transform-skew-y: 12deg; + } + + .sm\:-skew-y-12 { + --transform-skew-y: -12deg; + } + + .sm\:-skew-y-6 { + --transform-skew-y: -6deg; + } + + .sm\:-skew-y-3 { + --transform-skew-y: -3deg; + } + + .sm\:hover\:skew-x-0:hover { + --transform-skew-x: 0; + } + + .sm\:hover\:skew-x-3:hover { + --transform-skew-x: 3deg; + } + + .sm\:hover\:skew-x-6:hover { + --transform-skew-x: 6deg; + } + + .sm\:hover\:skew-x-12:hover { + --transform-skew-x: 12deg; + } + + .sm\:hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; + } + + .sm\:hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; + } + + .sm\:hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; + } + + .sm\:hover\:skew-y-0:hover { + --transform-skew-y: 0; + } + + .sm\:hover\:skew-y-3:hover { + --transform-skew-y: 3deg; + } + + .sm\:hover\:skew-y-6:hover { + --transform-skew-y: 6deg; + } + + .sm\:hover\:skew-y-12:hover { + --transform-skew-y: 12deg; + } + + .sm\:hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; + } + + .sm\:hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; + } + + .sm\:hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; + } + + .sm\:focus\:skew-x-0:focus { + --transform-skew-x: 0; + } + + .sm\:focus\:skew-x-3:focus { + --transform-skew-x: 3deg; + } + + .sm\:focus\:skew-x-6:focus { + --transform-skew-x: 6deg; + } + + .sm\:focus\:skew-x-12:focus { + --transform-skew-x: 12deg; + } + + .sm\:focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; + } + + .sm\:focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; + } + + .sm\:focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; + } + + .sm\:focus\:skew-y-0:focus { + --transform-skew-y: 0; + } + + .sm\:focus\:skew-y-3:focus { + --transform-skew-y: 3deg; + } + + .sm\:focus\:skew-y-6:focus { + --transform-skew-y: 6deg; + } + + .sm\:focus\:skew-y-12:focus { + --transform-skew-y: 12deg; + } + + .sm\:focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; + } + + .sm\:focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; + } + + .sm\:focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; + } + + .sm\:transition-none { + transition-property: none; + } + + .sm\:transition-all { + transition-property: all; + } + + .sm\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + } + + .sm\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + } + + .sm\:transition-opacity { + transition-property: opacity; + } + + .sm\:transition-shadow { + transition-property: box-shadow; + } + + .sm\:transition-transform { + transition-property: transform; + } + + .sm\:ease-linear { + transition-timing-function: linear; + } + + .sm\:ease-in { + transition-timing-function: cubic-bezier(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; + } +} + +@media (min-width: 768px) { + .md\:space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); + } + + .md\:space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); + } + + .md\:space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); + } + + .md\:space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); + } + + .md\:space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); + } + + .md\:space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); + } + + .md\:space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); + } + + .md\:space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); + } + + .md\:space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); + } + + .md\:space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); + } + + .md\:space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); + } + + .md\:space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); + } + + .md\:space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); + } + + .md\:space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); + } + + .md\:space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); + } + + .md\:space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); + } + + .md\:space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); + } + + .md\:space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); + } + + .md\:space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); + } + + .md\:space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); + } + + .md\:-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); + } + + .md\:-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); + } + + .md\:-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); + } + + .md\:-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); + } + + .md\:-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); + } + + .md\:-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); + } + + .md\:-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); + } + + .md\:-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); + } + + .md\:-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); + } + + .md\:-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); + } + + .md\:-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); + } + + .md\:-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); + } + + .md\:-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); + } + + .md\:-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); + } + + .md\:-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); + } + + .md\:-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); + } + + .md\:-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); + } + + .md\:-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); + } + + .md\:-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); + } + + .md\:space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; + } + + .md\:space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; + } + + .md\:divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); + } + + .md\:divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); + } + + .md\:divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); + } + + .md\:divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); + } + + .md\:divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); + } + + .md\:divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); + } + + .md\:divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; + } + + .md\:divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; + } + + .md\:divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; + } + + .md\:divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; + } + + .md\:divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; + } + + .md\:divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; + } + + .md\:divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + } + + .md\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .md\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .md\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .md\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .md\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .md\:bg-fixed { + background-attachment: fixed; + } + + .md\:bg-local { + background-attachment: local; + } + + .md\:bg-scroll { + background-attachment: scroll; + } + + .md\:bg-opacity-0 { + --bg-opacity: 0; + } + + .md\:bg-opacity-25 { + --bg-opacity: 0.25; + } + + .md\:bg-opacity-50 { + --bg-opacity: 0.5; + } + + .md\:bg-opacity-75 { + --bg-opacity: 0.75; + } + + .md\:bg-opacity-100 { + --bg-opacity: 1; + } + + .md\:hover\:bg-opacity-0:hover { + --bg-opacity: 0; + } + + .md\:hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; + } + + .md\:hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; + } + + .md\:hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; + } + + .md\:hover\:bg-opacity-100:hover { + --bg-opacity: 1; + } + + .md\:focus\:bg-opacity-0:focus { + --bg-opacity: 0; + } + + .md\:focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; + } + + .md\:focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; + } + + .md\:focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; + } + + .md\:focus\:bg-opacity-100:focus { + --bg-opacity: 1; + } + + .md\:bg-bottom { + background-position: bottom; + } + + .md\:bg-center { + background-position: center; + } + + .md\:bg-left { + background-position: left; + } + + .md\:bg-left-bottom { + background-position: left bottom; + } + + .md\:bg-left-top { + background-position: left top; + } + + .md\:bg-right { + background-position: right; + } + + .md\:bg-right-bottom { + background-position: right bottom; + } + + .md\:bg-right-top { + background-position: right top; + } + + .md\:bg-top { + background-position: top; + } + + .md\:bg-repeat { + background-repeat: repeat; + } + + .md\:bg-no-repeat { + background-repeat: no-repeat; + } + + .md\:bg-repeat-x { + background-repeat: repeat-x; + } + + .md\:bg-repeat-y { + background-repeat: repeat-y; + } + + .md\:bg-repeat-round { + background-repeat: round; + } + + .md\:bg-repeat-space { + background-repeat: space; + } + + .md\:bg-auto { + background-size: auto; + } + + .md\:bg-cover { + background-size: cover; + } + + .md\:bg-contain { + background-size: contain; + } + + .md\:border-collapse { + border-collapse: collapse; + } + + .md\:border-separate { + border-collapse: separate; + } + + .md\:border-opacity-0 { + --border-opacity: 0; + } + + .md\:border-opacity-25 { + --border-opacity: 0.25; + } + + .md\:border-opacity-50 { + --border-opacity: 0.5; + } + + .md\:border-opacity-75 { + --border-opacity: 0.75; + } + + .md\:border-opacity-100 { + --border-opacity: 1; + } + + .md\:hover\:border-opacity-0:hover { + --border-opacity: 0; + } + + .md\:hover\:border-opacity-25:hover { + --border-opacity: 0.25; + } + + .md\:hover\:border-opacity-50:hover { + --border-opacity: 0.5; + } + + .md\:hover\:border-opacity-75:hover { + --border-opacity: 0.75; + } + + .md\:hover\:border-opacity-100:hover { + --border-opacity: 1; + } + + .md\:focus\:border-opacity-0:focus { + --border-opacity: 0; + } + + .md\:focus\:border-opacity-25:focus { + --border-opacity: 0.25; + } + + .md\:focus\:border-opacity-50:focus { + --border-opacity: 0.5; + } + + .md\:focus\:border-opacity-75:focus { + --border-opacity: 0.75; + } + + .md\:focus\:border-opacity-100:focus { + --border-opacity: 1; + } + + .md\:rounded-none { + border-radius: 0; + } + + .md\:rounded-sm { + border-radius: 0.125rem; + } + + .md\:rounded { + border-radius: 0.25rem; + } + + .md\:rounded-md { + border-radius: 0.375rem; + } + + .md\:rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; + } + + .md\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .md\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .md\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .md\:border-solid { + border-style: solid; + } + + .md\:border-dashed { + border-style: dashed; + } + + .md\:border-dotted { + border-style: dotted; + } + + .md\:border-double { + border-style: double; + } + + .md\:border-none { + border-style: none; + } + + .md\:border-0 { + border-width: 0; + } + + .md\:border-2 { + border-width: 2px; + } + + .md\:border-4 { + border-width: 4px; + } + + .md\:border-8 { + border-width: 8px; + } + + .md\:border { + border-width: 1px; + } + + .md\:border-t-0 { + border-top-width: 0; + } + + .md\:border-r-0 { + border-right-width: 0; + } + + .md\:border-b-0 { + border-bottom-width: 0; + } + + .md\:border-l-0 { + border-left-width: 0; + } + + .md\:border-t-2 { + border-top-width: 2px; + } + + .md\:border-r-2 { + border-right-width: 2px; + } + + .md\:border-b-2 { + border-bottom-width: 2px; + } + + .md\:border-l-2 { + border-left-width: 2px; + } + + .md\:border-t-4 { + border-top-width: 4px; + } + + .md\:border-r-4 { + border-right-width: 4px; + } + + .md\:border-b-4 { + border-bottom-width: 4px; + } + + .md\:border-l-4 { + border-left-width: 4px; + } + + .md\:border-t-8 { + border-top-width: 8px; + } + + .md\:border-r-8 { + border-right-width: 8px; + } + + .md\:border-b-8 { + border-bottom-width: 8px; + } + + .md\:border-l-8 { + border-left-width: 8px; + } + + .md\:border-t { + border-top-width: 1px; + } + + .md\:border-r { + border-right-width: 1px; + } + + .md\:border-b { + border-bottom-width: 1px; + } + + .md\:border-l { + border-left-width: 1px; + } + + .md\:box-border { + box-sizing: border-box; + } + + .md\:box-content { + box-sizing: content-box; + } + + .md\:cursor-auto { + cursor: auto; + } + + .md\:cursor-default { + cursor: default; + } + + .md\:cursor-pointer { + cursor: pointer; + } + + .md\:cursor-wait { + cursor: wait; + } + + .md\:cursor-text { + cursor: text; + } + + .md\:cursor-move { + cursor: move; + } + + .md\:cursor-not-allowed { + cursor: not-allowed; + } + + .md\:block { + display: block; + } + + .md\:inline-block { + display: inline-block; + } + + .md\:inline { + display: inline; + } + + .md\:flex { + display: flex; + } + + .md\:inline-flex { + display: inline-flex; + } + + .md\:table { + display: table; + } + + .md\:table-caption { + display: table-caption; + } + + .md\:table-cell { + display: table-cell; + } + + .md\:table-column { + display: table-column; + } + + .md\:table-column-group { + display: table-column-group; + } + + .md\:table-footer-group { + display: table-footer-group; + } + + .md\:table-header-group { + display: table-header-group; + } + + .md\:table-row-group { + display: table-row-group; + } + + .md\:table-row { + display: table-row; + } + + .md\:flow-root { + display: flow-root; + } + + .md\:grid { + display: grid; + } + + .md\:inline-grid { + display: inline-grid; + } + + .md\:hidden { + display: none; + } + + .theme-dark .md\:dark\:block { + display: block; + } + + .theme-dark .md\:dark\:inline-block { + display: inline-block; + } + + .theme-dark .md\:dark\:inline { + display: inline; + } + + .theme-dark .md\:dark\:flex { + display: flex; + } + + .theme-dark .md\:dark\:inline-flex { + display: inline-flex; + } + + .theme-dark .md\:dark\:table { + display: table; + } + + .theme-dark .md\:dark\:table-caption { + display: table-caption; + } + + .theme-dark .md\:dark\:table-cell { + display: table-cell; + } + + .theme-dark .md\:dark\:table-column { + display: table-column; + } + + .theme-dark .md\:dark\:table-column-group { + display: table-column-group; + } + + .theme-dark .md\:dark\:table-footer-group { + display: table-footer-group; + } + + .theme-dark .md\:dark\:table-header-group { + display: table-header-group; + } + + .theme-dark .md\:dark\:table-row-group { + display: table-row-group; + } + + .theme-dark .md\:dark\:table-row { + display: table-row; + } + + .theme-dark .md\:dark\:flow-root { + display: flow-root; + } + + .theme-dark .md\:dark\:grid { + display: grid; + } + + .theme-dark .md\:dark\:inline-grid { + display: inline-grid; + } + + .theme-dark .md\:dark\:hidden { + display: none; + } + + .md\:flex-row { + flex-direction: row; + } + + .md\:flex-row-reverse { + flex-direction: row-reverse; + } + + .md\:flex-col { + flex-direction: column; + } + + .md\:flex-col-reverse { + flex-direction: column-reverse; + } + + .md\:flex-wrap { + flex-wrap: wrap; + } + + .md\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .md\:flex-no-wrap { + flex-wrap: nowrap; + } + + .md\:items-start { + align-items: flex-start; + } + + .md\:items-end { + align-items: flex-end; + } + + .md\:items-center { + align-items: center; + } + + .md\:items-baseline { + align-items: baseline; + } + + .md\:items-stretch { + align-items: stretch; + } + + .md\:self-auto { + align-self: auto; + } + + .md\:self-start { + align-self: flex-start; + } + + .md\:self-end { + align-self: flex-end; + } + + .md\:self-center { + align-self: center; + } + + .md\:self-stretch { + align-self: stretch; + } + + .md\:justify-start { + justify-content: flex-start; + } + + .md\:justify-end { + justify-content: flex-end; + } + + .md\:justify-center { + justify-content: center; + } + + .md\:justify-between { + justify-content: space-between; + } + + .md\:justify-around { + justify-content: space-around; + } + + .md\:justify-evenly { + justify-content: space-evenly; + } + + .md\:content-center { + align-content: center; + } + + .md\:content-start { + align-content: flex-start; + } + + .md\:content-end { + align-content: flex-end; + } + + .md\:content-between { + align-content: space-between; + } + + .md\:content-around { + align-content: space-around; + } + + .md\:flex-1 { + flex: 1 1 0%; + } + + .md\:flex-auto { + flex: 1 1 auto; + } + + .md\:flex-initial { + flex: 0 1 auto; + } + + .md\:flex-none { + flex: none; + } + + .md\:flex-grow-0 { + flex-grow: 0; + } + + .md\:flex-grow { + flex-grow: 1; + } + + .md\:flex-shrink-0 { + flex-shrink: 0; + } + + .md\:flex-shrink { + flex-shrink: 1; + } + + .md\:order-1 { + order: 1; + } + + .md\:order-2 { + order: 2; + } + + .md\:order-3 { + order: 3; + } + + .md\:order-4 { + order: 4; + } + + .md\:order-5 { + order: 5; + } + + .md\:order-6 { + order: 6; + } + + .md\:order-7 { + order: 7; + } + + .md\:order-8 { + order: 8; + } + + .md\:order-9 { + order: 9; + } + + .md\:order-10 { + order: 10; + } + + .md\:order-11 { + order: 11; + } + + .md\:order-12 { + order: 12; + } + + .md\:order-first { + order: -9999; + } + + .md\:order-last { + order: 9999; + } + + .md\:order-none { + order: 0; + } + + .md\:float-right { + float: right; + } + + .md\:float-left { + float: left; + } + + .md\:float-none { + float: none; + } + + .md\:clearfix:after { + content: ""; + display: table; + clear: both; + } + + .md\:clear-left { + clear: left; + } + + .md\:clear-right { + clear: right; + } + + .md\:clear-both { + clear: both; + } + + .md\:clear-none { + clear: none; + } + + .md\:font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .md\:font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; + } + + .md\:font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .md\:font-hairline { + font-weight: 100; + } + + .md\:font-thin { + font-weight: 200; + } + + .md\:font-light { + font-weight: 300; + } + + .md\:font-normal { + font-weight: 400; + } + + .md\:font-medium { + font-weight: 500; + } + + .md\:font-semibold { + font-weight: 600; + } + + .md\:font-bold { + font-weight: 700; + } + + .md\:font-extrabold { + font-weight: 800; + } + + .md\:font-black { + font-weight: 900; + } + + .md\:hover\:font-hairline:hover { + font-weight: 100; + } + + .md\:hover\:font-thin:hover { + font-weight: 200; + } + + .md\:hover\:font-light:hover { + font-weight: 300; + } + + .md\:hover\:font-normal:hover { + font-weight: 400; + } + + .md\:hover\:font-medium:hover { + font-weight: 500; + } + + .md\:hover\:font-semibold:hover { + font-weight: 600; + } + + .md\:hover\:font-bold:hover { + font-weight: 700; + } + + .md\:hover\:font-extrabold:hover { + font-weight: 800; + } + + .md\:hover\:font-black:hover { + font-weight: 900; + } + + .md\:focus\:font-hairline:focus { + font-weight: 100; + } + + .md\:focus\:font-thin:focus { + font-weight: 200; + } + + .md\:focus\:font-light:focus { + font-weight: 300; + } + + .md\:focus\:font-normal:focus { + font-weight: 400; + } + + .md\:focus\:font-medium:focus { + font-weight: 500; + } + + .md\:focus\:font-semibold:focus { + font-weight: 600; + } + + .md\:focus\:font-bold:focus { + font-weight: 700; + } + + .md\:focus\:font-extrabold:focus { + font-weight: 800; + } + + .md\:focus\:font-black:focus { + font-weight: 900; + } + + .md\:h-0 { + height: 0; + } + + .md\:h-1 { + height: 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-8 { + height: 2rem; + } + + .md\:h-10 { + height: 2.5rem; + } + + .md\:h-12 { + height: 3rem; + } + + .md\:h-16 { + height: 4rem; + } + + .md\:h-20 { + height: 5rem; + } + + .md\:h-24 { + height: 6rem; + } + + .md\:h-32 { + height: 8rem; + } + + .md\:h-40 { + height: 10rem; + } + + .md\:h-48 { + height: 12rem; + } + + .md\:h-56 { + height: 14rem; + } + + .md\:h-64 { + height: 16rem; + } + + .md\:h-auto { + height: auto; + } + + .md\:h-px { + height: 1px; + } + + .md\:h-full { + height: 100%; + } + + .md\:h-screen { + height: 100vh; + } + + .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: 4rem; + } + + .md\:leading-3 { + line-height: .75rem; + } + + .md\:leading-4 { + line-height: 1rem; + } + + .md\:leading-5 { + line-height: 1.25rem; + } + + .md\:leading-6 { + line-height: 1.5rem; + } + + .md\:leading-7 { + line-height: 1.75rem; + } + + .md\:leading-8 { + line-height: 2rem; + } + + .md\:leading-9 { + line-height: 2.25rem; + } + + .md\:leading-10 { + line-height: 2.5rem; + } + + .md\:leading-none { + line-height: 1; + } + + .md\:leading-tight { + line-height: 1.25; + } + + .md\:leading-snug { + line-height: 1.375; + } + + .md\:leading-normal { + line-height: 1.5; + } + + .md\:leading-relaxed { + line-height: 1.625; + } + + .md\:leading-loose { + line-height: 2; + } + + .md\:list-inside { + list-style-position: inside; + } + + .md\:list-outside { + list-style-position: outside; + } + + .md\:list-none { + list-style-type: none; + } + + .md\:list-disc { + list-style-type: disc; + } + + .md\:list-decimal { + list-style-type: decimal; + } + + .md\:m-0 { + margin: 0; + } + + .md\:m-1 { + margin: 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-8 { + margin: 2rem; + } + + .md\:m-10 { + margin: 2.5rem; + } + + .md\:m-12 { + margin: 3rem; + } + + .md\:m-16 { + margin: 4rem; + } + + .md\:m-20 { + margin: 5rem; + } + + .md\:m-24 { + margin: 6rem; + } + + .md\:m-32 { + margin: 8rem; + } + + .md\:m-40 { + margin: 10rem; + } + + .md\:m-48 { + margin: 12rem; + } + + .md\:m-56 { + margin: 14rem; + } + + .md\:m-64 { + margin: 16rem; + } + + .md\:m-auto { + margin: auto; + } + + .md\:m-px { + margin: 1px; + } + + .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-8 { + margin: -2rem; + } + + .md\:-m-10 { + margin: -2.5rem; + } + + .md\:-m-12 { + margin: -3rem; + } + + .md\:-m-16 { + margin: -4rem; + } + + .md\:-m-20 { + margin: -5rem; + } + + .md\:-m-24 { + margin: -6rem; + } + + .md\:-m-32 { + margin: -8rem; + } + + .md\:-m-40 { + margin: -10rem; + } + + .md\:-m-48 { + margin: -12rem; + } + + .md\:-m-56 { + margin: -14rem; + } + + .md\:-m-64 { + margin: -16rem; + } + + .md\:-m-px { + margin: -1px; + } + + .md\:my-0 { + margin-top: 0; + margin-bottom: 0; + } + + .md\:mx-0 { + margin-left: 0; + margin-right: 0; + } + + .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-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .md\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .md\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .md\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .md\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .md\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .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-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .md\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .md\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .md\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .md\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .md\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .md\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .md\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .md\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .md\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .md\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .md\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .md\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .md\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .md\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .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-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .md\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .md\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .md\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .md\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .md\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .md\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .md\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .md\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .md\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .md\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .md\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .md\:mt-0 { + margin-top: 0; + } + + .md\:mr-0 { + margin-right: 0; + } + + .md\:mb-0 { + margin-bottom: 0; + } + + .md\:ml-0 { + margin-left: 0; + } + + .md\:mt-1 { + margin-top: 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-8 { + margin-top: 2rem; + } + + .md\:mr-8 { + margin-right: 2rem; + } + + .md\:mb-8 { + margin-bottom: 2rem; + } + + .md\:ml-8 { + margin-left: 2rem; + } + + .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-12 { + margin-top: 3rem; + } + + .md\:mr-12 { + margin-right: 3rem; + } + + .md\:mb-12 { + margin-bottom: 3rem; + } + + .md\:ml-12 { + margin-left: 3rem; + } + + .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-32 { + margin-top: 8rem; + } + + .md\:mr-32 { + margin-right: 8rem; + } + + .md\:mb-32 { + margin-bottom: 8rem; + } + + .md\:ml-32 { + margin-left: 8rem; + } + + .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-48 { + margin-top: 12rem; + } + + .md\:mr-48 { + margin-right: 12rem; + } + + .md\:mb-48 { + margin-bottom: 12rem; + } + + .md\:ml-48 { + margin-left: 12rem; + } + + .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-64 { + margin-top: 16rem; + } + + .md\:mr-64 { + margin-right: 16rem; + } + + .md\:mb-64 { + margin-bottom: 16rem; + } + + .md\:ml-64 { + margin-left: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + } + + .md\:-mr-8 { + margin-right: -2rem; + } + + .md\:-mb-8 { + margin-bottom: -2rem; + } + + .md\:-ml-8 { + margin-left: -2rem; + } + + .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-12 { + margin-top: -3rem; + } + + .md\:-mr-12 { + margin-right: -3rem; + } + + .md\:-mb-12 { + margin-bottom: -3rem; + } + + .md\:-ml-12 { + margin-left: -3rem; + } + + .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-32 { + margin-top: -8rem; + } + + .md\:-mr-32 { + margin-right: -8rem; + } + + .md\:-mb-32 { + margin-bottom: -8rem; + } + + .md\:-ml-32 { + margin-left: -8rem; + } + + .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-48 { + margin-top: -12rem; + } + + .md\:-mr-48 { + margin-right: -12rem; + } + + .md\:-mb-48 { + margin-bottom: -12rem; + } + + .md\:-ml-48 { + margin-left: -12rem; + } + + .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-64 { + margin-top: -16rem; + } + + .md\:-mr-64 { + margin-right: -16rem; + } + + .md\:-mb-64 { + margin-bottom: -16rem; + } + + .md\:-ml-64 { + margin-left: -16rem; + } + + .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\:max-h-0 { + max-height: 0; + } + + .md\:max-h-full { + max-height: 100%; + } + + .md\:max-h-screen { + max-height: 100vh; + } + + .md\:max-h-xl { + max-height: 36rem; + } + + .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-full { + max-width: 100%; + } + + .md\:max-w-screen-sm { + max-width: 640px; + } + + .md\:max-w-screen-md { + max-width: 768px; + } + + .md\:max-w-screen-lg { + max-width: 1024px; + } + + .md\:max-w-screen-xl { + max-width: 1280px; + } + + .md\:min-h-0 { + min-height: 0; + } + + .md\:min-h-full { + min-height: 100%; + } + + .md\:min-h-screen { + min-height: 100vh; + } + + .md\:min-w-0 { + min-width: 0; + } + + .md\:min-w-full { + min-width: 100%; + } + + .md\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .md\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .md\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .md\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .md\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .md\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .md\:object-center { + -o-object-position: center; + object-position: center; + } + + .md\:object-left { + -o-object-position: left; + object-position: left; + } + + .md\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .md\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .md\:object-right { + -o-object-position: right; + object-position: right; + } + + .md\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .md\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .md\:object-top { + -o-object-position: top; + object-position: top; + } + + .md\:opacity-0 { + opacity: 0; + } + + .md\:opacity-25 { + opacity: 0.25; + } + + .md\:opacity-50 { + opacity: 0.5; + } + + .md\:opacity-75 { + opacity: 0.75; + } + + .md\:opacity-100 { + opacity: 1; + } + + .md\:hover\:opacity-0:hover { + opacity: 0; + } + + .md\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .md\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .md\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .md\:hover\:opacity-100:hover { + opacity: 1; + } + + .md\:focus\:opacity-0:focus { + opacity: 0; + } + + .md\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .md\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .md\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .md\:focus\:opacity-100:focus { + opacity: 1; + } + + .md\:outline-none { + outline: 0; + } + + .md\:focus\:outline-none:focus { + outline: 0; + } + + .md\:overflow-auto { + overflow: auto; + } + + .md\:overflow-hidden { + overflow: hidden; + } + + .md\:overflow-visible { + overflow: visible; + } + + .md\:overflow-scroll { + overflow: scroll; + } + + .md\:overflow-x-auto { + overflow-x: auto; + } + + .md\:overflow-y-auto { + overflow-y: auto; + } + + .md\:overflow-x-hidden { + overflow-x: hidden; + } + + .md\:overflow-y-hidden { + overflow-y: hidden; + } + + .md\:overflow-x-visible { + overflow-x: visible; + } + + .md\:overflow-y-visible { + overflow-y: visible; + } + + .md\:overflow-x-scroll { + overflow-x: scroll; + } + + .md\:overflow-y-scroll { + overflow-y: scroll; + } + + .md\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .md\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + + .md\:p-0 { + padding: 0; + } + + .md\:p-1 { + padding: 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-8 { + padding: 2rem; + } + + .md\:p-10 { + padding: 2.5rem; + } + + .md\:p-12 { + padding: 3rem; + } + + .md\:p-16 { + padding: 4rem; + } + + .md\:p-20 { + padding: 5rem; + } + + .md\:p-24 { + padding: 6rem; + } + + .md\:p-32 { + padding: 8rem; + } + + .md\:p-40 { + padding: 10rem; + } + + .md\:p-48 { + padding: 12rem; + } + + .md\:p-56 { + padding: 14rem; + } + + .md\:p-64 { + padding: 16rem; + } + + .md\:p-px { + padding: 1px; + } + + .md\:py-0 { + padding-top: 0; + padding-bottom: 0; + } + + .md\:px-0 { + padding-left: 0; + padding-right: 0; + } + + .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-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .md\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .md\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .md\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .md\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .md\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .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-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .md\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .md\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .md\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .md\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .md\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .md\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .md\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .md\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .md\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .md\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .md\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .md\:pt-0 { + padding-top: 0; + } + + .md\:pr-0 { + padding-right: 0; + } + + .md\:pb-0 { + padding-bottom: 0; + } + + .md\:pl-0 { + padding-left: 0; + } + + .md\:pt-1 { + padding-top: 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-8 { + padding-top: 2rem; + } + + .md\:pr-8 { + padding-right: 2rem; + } + + .md\:pb-8 { + padding-bottom: 2rem; + } + + .md\:pl-8 { + padding-left: 2rem; + } + + .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-12 { + padding-top: 3rem; + } + + .md\:pr-12 { + padding-right: 3rem; + } + + .md\:pb-12 { + padding-bottom: 3rem; + } + + .md\:pl-12 { + padding-left: 3rem; + } + + .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-32 { + padding-top: 8rem; + } + + .md\:pr-32 { + padding-right: 8rem; + } + + .md\:pb-32 { + padding-bottom: 8rem; + } + + .md\:pl-32 { + padding-left: 8rem; + } + + .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-48 { + padding-top: 12rem; + } + + .md\:pr-48 { + padding-right: 12rem; + } + + .md\:pb-48 { + padding-bottom: 12rem; + } + + .md\:pl-48 { + padding-left: 12rem; + } + + .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-64 { + padding-top: 16rem; + } + + .md\:pr-64 { + padding-right: 16rem; + } + + .md\:pb-64 { + padding-bottom: 16rem; + } + + .md\:pl-64 { + padding-left: 16rem; + } + + .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\:placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .md\:placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; + } + + .md\:placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; + } + + .md\:placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; + } + + .md\:placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; + } + + .md\:placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .md\:placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; + } + + .md\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; + } + + .md\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; + } + + .md\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; + } + + .md\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .md\:focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; + } + + .md\:pointer-events-none { + pointer-events: none; + } + + .md\:pointer-events-auto { + pointer-events: auto; + } + + .md\:static { + position: static; + } + + .md\:fixed { + position: fixed; + } + + .md\:absolute { + position: absolute; + } + + .md\:relative { + position: relative; + } + + .md\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .md\:inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .md\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .md\:inset-y-0 { + top: 0; + bottom: 0; + } + + .md\:inset-x-0 { + right: 0; + left: 0; + } + + .md\:inset-y-auto { + top: auto; + bottom: auto; + } + + .md\:inset-x-auto { + right: auto; + left: auto; + } + + .md\:top-0 { + top: 0; + } + + .md\:right-0 { + right: 0; + } + + .md\:bottom-0 { + bottom: 0; + } + + .md\:left-0 { + left: 0; + } + + .md\:top-auto { + top: auto; + } + + .md\:right-auto { + right: auto; + } + + .md\:bottom-auto { + bottom: auto; + } + + .md\:left-auto { + left: auto; + } + + .md\:resize-none { + resize: none; + } + + .md\:resize-y { + resize: vertical; + } + + .md\:resize-x { + resize: horizontal; + } + + .md\:resize { + resize: both; + } + + .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-opacity-0 { + --text-opacity: 0; + } + + .md\:text-opacity-25 { + --text-opacity: 0.25; + } + + .md\:text-opacity-50 { + --text-opacity: 0.5; + } + + .md\:text-opacity-75 { + --text-opacity: 0.75; + } + + .md\:text-opacity-100 { + --text-opacity: 1; + } + + .md\:hover\:text-opacity-0:hover { + --text-opacity: 0; + } + + .md\:hover\:text-opacity-25:hover { + --text-opacity: 0.25; + } + + .md\:hover\:text-opacity-50:hover { + --text-opacity: 0.5; + } + + .md\:hover\:text-opacity-75:hover { + --text-opacity: 0.75; + } + + .md\:hover\:text-opacity-100:hover { + --text-opacity: 1; + } + + .md\:focus\:text-opacity-0:focus { + --text-opacity: 0; + } + + .md\:focus\:text-opacity-25:focus { + --text-opacity: 0.25; + } + + .md\:focus\:text-opacity-50:focus { + --text-opacity: 0.5; + } + + .md\:focus\:text-opacity-75:focus { + --text-opacity: 0.75; + } + + .md\:focus\:text-opacity-100:focus { + --text-opacity: 1; + } + + .md\:italic { + font-style: italic; + } + + .md\:not-italic { + font-style: normal; + } + + .md\:uppercase { + text-transform: uppercase; + } + + .md\:lowercase { + text-transform: lowercase; + } + + .md\:capitalize { + text-transform: capitalize; + } + + .md\:normal-case { + text-transform: none; + } + + .md\:underline { + text-decoration: underline; + } + + .md\:line-through { + text-decoration: line-through; + } + + .md\:no-underline { + text-decoration: none; + } + + .md\:hover\:underline:hover { + text-decoration: underline; + } + + .md\:hover\:line-through:hover { + text-decoration: line-through; + } + + .md\:hover\:no-underline:hover { + text-decoration: none; + } + + .md\:focus\:underline:focus { + text-decoration: underline; + } + + .md\:focus\:line-through:focus { + text-decoration: line-through; + } + + .md\:focus\:no-underline:focus { + text-decoration: none; + } + + .md\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .md\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .md\:tracking-tighter { + letter-spacing: -0.05em; + } + + .md\:tracking-tight { + letter-spacing: -0.025em; + } + + .md\:tracking-normal { + letter-spacing: 0; + } + + .md\:tracking-wide { + letter-spacing: 0.025em; + } + + .md\:tracking-wider { + letter-spacing: 0.05em; + } + + .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-no-wrap { + white-space: nowrap; + } + + .md\:whitespace-pre { + white-space: pre; + } + + .md\:whitespace-pre-line { + white-space: pre-line; + } + + .md\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .md\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .md\:break-words { + overflow-wrap: break-word; + } + + .md\:break-all { + word-break: break-all; + } + + .md\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .md\:w-0 { + width: 0; + } + + .md\:w-1 { + width: 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-8 { + width: 2rem; + } + + .md\:w-10 { + width: 2.5rem; + } + + .md\:w-12 { + width: 3rem; + } + + .md\:w-16 { + width: 4rem; + } + + .md\:w-20 { + width: 5rem; + } + + .md\:w-24 { + width: 6rem; + } + + .md\:w-32 { + width: 8rem; + } + + .md\:w-40 { + width: 10rem; + } + + .md\:w-48 { + width: 12rem; + } + + .md\:w-56 { + width: 14rem; + } + + .md\:w-64 { + width: 16rem; + } + + .md\:w-auto { + width: auto; + } + + .md\:w-px { + width: 1px; + } + + .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\:gap-0 { + grid-gap: 0; + gap: 0; + } + + .md\:gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; + } + + .md\:gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; + } + + .md\:gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; + } + + .md\:gap-4 { + grid-gap: 1rem; + gap: 1rem; + } + + .md\:gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; + } + + .md\:gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; + } + + .md\:gap-8 { + grid-gap: 2rem; + gap: 2rem; + } + + .md\:gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; + } + + .md\:gap-12 { + grid-gap: 3rem; + gap: 3rem; + } + + .md\:gap-16 { + grid-gap: 4rem; + gap: 4rem; + } + + .md\:gap-20 { + grid-gap: 5rem; + gap: 5rem; + } + + .md\:gap-24 { + grid-gap: 6rem; + gap: 6rem; + } + + .md\:gap-32 { + grid-gap: 8rem; + gap: 8rem; + } + + .md\:gap-40 { + grid-gap: 10rem; + gap: 10rem; + } + + .md\:gap-48 { + grid-gap: 12rem; + gap: 12rem; + } + + .md\:gap-56 { + grid-gap: 14rem; + gap: 14rem; + } + + .md\:gap-64 { + grid-gap: 16rem; + gap: 16rem; + } + + .md\:gap-px { + grid-gap: 1px; + gap: 1px; + } + + .md\:col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; + } + + .md\:col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .md\:col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .md\:col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .md\:col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .md\:col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .md\:col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .md\:col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .md\:col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .md\:col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .md\:col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .md\:col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .md\:col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .md\:col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .md\:col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .md\:col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .md\:col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .md\:col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .md\:col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; + } + + .md\:row-gap-0 { + grid-row-gap: 0; + row-gap: 0; + } + + .md\:row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; + } + + .md\:row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; + } + + .md\:row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; + } + + .md\:row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; + } + + .md\:row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; + } + + .md\:row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; + } + + .md\:row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; + } + + .md\:row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; + } + + .md\:row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; + } + + .md\:row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; + } + + .md\:row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; + } + + .md\:row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; + } + + .md\:row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; + } + + .md\:row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; + } + + .md\:row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; + } + + .md\:row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; + } + + .md\:row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; + } + + .md\:row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; + } + + .md\:grid-flow-row { + grid-auto-flow: row; + } + + .md\:grid-flow-col { + grid-auto-flow: column; + } + + .md\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .md\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .md\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .md\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .md\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .md\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .md\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .md\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .md\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .md\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .md\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .md\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .md\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .md\:grid-cols-none { + grid-template-columns: none; + } + + .md\:col-auto { + grid-column: auto; + } + + .md\:col-span-1 { + grid-column: span 1 / span 1; + } + + .md\:col-span-2 { + grid-column: span 2 / span 2; + } + + .md\:col-span-3 { + grid-column: span 3 / span 3; + } + + .md\:col-span-4 { + grid-column: span 4 / span 4; + } + + .md\:col-span-5 { + grid-column: span 5 / span 5; + } + + .md\:col-span-6 { + grid-column: span 6 / span 6; + } + + .md\:col-span-7 { + grid-column: span 7 / span 7; + } + + .md\:col-span-8 { + grid-column: span 8 / span 8; + } + + .md\:col-span-9 { + grid-column: span 9 / span 9; + } + + .md\:col-span-10 { + grid-column: span 10 / span 10; + } + + .md\:col-span-11 { + grid-column: span 11 / span 11; + } + + .md\:col-span-12 { + grid-column: span 12 / span 12; + } + + .md\:col-start-1 { + grid-column-start: 1; + } + + .md\:col-start-2 { + grid-column-start: 2; + } + + .md\:col-start-3 { + grid-column-start: 3; + } + + .md\:col-start-4 { + grid-column-start: 4; + } + + .md\:col-start-5 { + grid-column-start: 5; + } + + .md\:col-start-6 { + grid-column-start: 6; + } + + .md\:col-start-7 { + grid-column-start: 7; + } + + .md\:col-start-8 { + grid-column-start: 8; + } + + .md\:col-start-9 { + grid-column-start: 9; + } + + .md\:col-start-10 { + grid-column-start: 10; + } + + .md\:col-start-11 { + grid-column-start: 11; + } + + .md\:col-start-12 { + grid-column-start: 12; + } + + .md\:col-start-13 { + grid-column-start: 13; + } + + .md\:col-start-auto { + grid-column-start: auto; + } + + .md\:col-end-1 { + grid-column-end: 1; + } + + .md\:col-end-2 { + grid-column-end: 2; + } + + .md\:col-end-3 { + grid-column-end: 3; + } + + .md\:col-end-4 { + grid-column-end: 4; + } + + .md\:col-end-5 { + grid-column-end: 5; + } + + .md\:col-end-6 { + grid-column-end: 6; + } + + .md\:col-end-7 { + grid-column-end: 7; + } + + .md\:col-end-8 { + grid-column-end: 8; + } + + .md\:col-end-9 { + grid-column-end: 9; + } + + .md\:col-end-10 { + grid-column-end: 10; + } + + .md\:col-end-11 { + grid-column-end: 11; + } + + .md\:col-end-12 { + grid-column-end: 12; + } + + .md\:col-end-13 { + grid-column-end: 13; + } + + .md\:col-end-auto { + grid-column-end: auto; + } + + .md\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .md\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .md\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .md\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .md\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .md\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .md\:grid-rows-none { + grid-template-rows: none; + } + + .md\:row-auto { + grid-row: auto; + } + + .md\:row-span-1 { + grid-row: span 1 / span 1; + } + + .md\:row-span-2 { + grid-row: span 2 / span 2; + } + + .md\:row-span-3 { + grid-row: span 3 / span 3; + } + + .md\:row-span-4 { + grid-row: span 4 / span 4; + } + + .md\:row-span-5 { + grid-row: span 5 / span 5; + } + + .md\:row-span-6 { + grid-row: span 6 / span 6; + } + + .md\:row-start-1 { + grid-row-start: 1; + } + + .md\:row-start-2 { + grid-row-start: 2; + } + + .md\:row-start-3 { + grid-row-start: 3; + } + + .md\:row-start-4 { + grid-row-start: 4; + } + + .md\:row-start-5 { + grid-row-start: 5; + } + + .md\:row-start-6 { + grid-row-start: 6; + } + + .md\:row-start-7 { + grid-row-start: 7; + } + + .md\:row-start-auto { + grid-row-start: auto; + } + + .md\:row-end-1 { + grid-row-end: 1; + } + + .md\:row-end-2 { + grid-row-end: 2; + } + + .md\:row-end-3 { + grid-row-end: 3; + } + + .md\:row-end-4 { + grid-row-end: 4; + } + + .md\:row-end-5 { + grid-row-end: 5; + } + + .md\:row-end-6 { + grid-row-end: 6; + } + + .md\:row-end-7 { + grid-row-end: 7; + } + + .md\:row-end-auto { + grid-row-end: auto; + } + + .md\:transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); + } + + .md\:transform-none { + transform: none; + } + + .md\:origin-center { + transform-origin: center; + } + + .md\:origin-top { + transform-origin: top; + } + + .md\:origin-top-right { + transform-origin: top right; + } + + .md\:origin-right { + transform-origin: right; + } + + .md\:origin-bottom-right { + transform-origin: bottom right; + } + + .md\:origin-bottom { + transform-origin: bottom; + } + + .md\:origin-bottom-left { + transform-origin: bottom left; + } + + .md\:origin-left { + transform-origin: left; + } + + .md\:origin-top-left { + transform-origin: top left; + } + + .md\:scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .md\:scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .md\:scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .md\:scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .md\:scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .md\:scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .md\:scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .md\:scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .md\:scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .md\:scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .md\:scale-x-0 { + --transform-scale-x: 0; + } + + .md\:scale-x-50 { + --transform-scale-x: .5; + } + + .md\:scale-x-75 { + --transform-scale-x: .75; + } + + .md\:scale-x-90 { + --transform-scale-x: .9; + } + + .md\:scale-x-95 { + --transform-scale-x: .95; + } + + .md\:scale-x-100 { + --transform-scale-x: 1; + } + + .md\:scale-x-105 { + --transform-scale-x: 1.05; + } + + .md\:scale-x-110 { + --transform-scale-x: 1.1; + } + + .md\:scale-x-125 { + --transform-scale-x: 1.25; + } + + .md\:scale-x-150 { + --transform-scale-x: 1.5; + } + + .md\:scale-y-0 { + --transform-scale-y: 0; + } + + .md\:scale-y-50 { + --transform-scale-y: .5; + } + + .md\:scale-y-75 { + --transform-scale-y: .75; + } + + .md\:scale-y-90 { + --transform-scale-y: .9; + } + + .md\:scale-y-95 { + --transform-scale-y: .95; + } + + .md\:scale-y-100 { + --transform-scale-y: 1; + } + + .md\:scale-y-105 { + --transform-scale-y: 1.05; + } + + .md\:scale-y-110 { + --transform-scale-y: 1.1; + } + + .md\:scale-y-125 { + --transform-scale-y: 1.25; + } + + .md\:scale-y-150 { + --transform-scale-y: 1.5; + } + + .md\:hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .md\:hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .md\:hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .md\:hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .md\:hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .md\:hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .md\:hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .md\:hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .md\:hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .md\:hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .md\:hover\:scale-x-0:hover { + --transform-scale-x: 0; + } + + .md\:hover\:scale-x-50:hover { + --transform-scale-x: .5; + } + + .md\:hover\:scale-x-75:hover { + --transform-scale-x: .75; + } + + .md\:hover\:scale-x-90:hover { + --transform-scale-x: .9; + } + + .md\:hover\:scale-x-95:hover { + --transform-scale-x: .95; + } + + .md\:hover\:scale-x-100:hover { + --transform-scale-x: 1; + } + + .md\:hover\:scale-x-105:hover { + --transform-scale-x: 1.05; + } + + .md\:hover\:scale-x-110:hover { + --transform-scale-x: 1.1; + } + + .md\:hover\:scale-x-125:hover { + --transform-scale-x: 1.25; + } + + .md\:hover\:scale-x-150:hover { + --transform-scale-x: 1.5; + } + + .md\:hover\:scale-y-0:hover { + --transform-scale-y: 0; + } + + .md\:hover\:scale-y-50:hover { + --transform-scale-y: .5; + } + + .md\:hover\:scale-y-75:hover { + --transform-scale-y: .75; + } + + .md\:hover\:scale-y-90:hover { + --transform-scale-y: .9; + } + + .md\:hover\:scale-y-95:hover { + --transform-scale-y: .95; + } + + .md\:hover\:scale-y-100:hover { + --transform-scale-y: 1; + } + + .md\:hover\:scale-y-105:hover { + --transform-scale-y: 1.05; + } + + .md\:hover\:scale-y-110:hover { + --transform-scale-y: 1.1; + } + + .md\:hover\:scale-y-125:hover { + --transform-scale-y: 1.25; + } + + .md\:hover\:scale-y-150:hover { + --transform-scale-y: 1.5; + } + + .md\:focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .md\:focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .md\:focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .md\:focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .md\:focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .md\:focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .md\:focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .md\:focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .md\:focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .md\:focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .md\:focus\:scale-x-0:focus { + --transform-scale-x: 0; + } + + .md\:focus\:scale-x-50:focus { + --transform-scale-x: .5; + } + + .md\:focus\:scale-x-75:focus { + --transform-scale-x: .75; + } + + .md\:focus\:scale-x-90:focus { + --transform-scale-x: .9; + } + + .md\:focus\:scale-x-95:focus { + --transform-scale-x: .95; + } + + .md\:focus\:scale-x-100:focus { + --transform-scale-x: 1; + } + + .md\:focus\:scale-x-105:focus { + --transform-scale-x: 1.05; + } + + .md\:focus\:scale-x-110:focus { + --transform-scale-x: 1.1; + } + + .md\:focus\:scale-x-125:focus { + --transform-scale-x: 1.25; + } + + .md\:focus\:scale-x-150:focus { + --transform-scale-x: 1.5; + } + + .md\:focus\:scale-y-0:focus { + --transform-scale-y: 0; + } + + .md\:focus\:scale-y-50:focus { + --transform-scale-y: .5; + } + + .md\:focus\:scale-y-75:focus { + --transform-scale-y: .75; + } + + .md\:focus\:scale-y-90:focus { + --transform-scale-y: .9; + } + + .md\:focus\:scale-y-95:focus { + --transform-scale-y: .95; + } + + .md\:focus\:scale-y-100:focus { + --transform-scale-y: 1; + } + + .md\:focus\:scale-y-105:focus { + --transform-scale-y: 1.05; + } + + .md\:focus\:scale-y-110:focus { + --transform-scale-y: 1.1; + } + + .md\:focus\:scale-y-125:focus { + --transform-scale-y: 1.25; + } + + .md\:focus\:scale-y-150:focus { + --transform-scale-y: 1.5; + } + + .md\:rotate-0 { + --transform-rotate: 0; + } + + .md\:rotate-45 { + --transform-rotate: 45deg; + } + + .md\:rotate-90 { + --transform-rotate: 90deg; + } + + .md\:rotate-180 { + --transform-rotate: 180deg; + } + + .md\:-rotate-180 { + --transform-rotate: -180deg; + } + + .md\:-rotate-90 { + --transform-rotate: -90deg; + } + + .md\:-rotate-45 { + --transform-rotate: -45deg; + } + + .md\:hover\:rotate-0:hover { + --transform-rotate: 0; + } + + .md\:hover\:rotate-45:hover { + --transform-rotate: 45deg; + } + + .md\:hover\:rotate-90:hover { + --transform-rotate: 90deg; + } + + .md\:hover\:rotate-180:hover { + --transform-rotate: 180deg; + } + + .md\:hover\:-rotate-180:hover { + --transform-rotate: -180deg; + } + + .md\:hover\:-rotate-90:hover { + --transform-rotate: -90deg; + } + + .md\:hover\:-rotate-45:hover { + --transform-rotate: -45deg; + } + + .md\:focus\:rotate-0:focus { + --transform-rotate: 0; + } + + .md\:focus\:rotate-45:focus { + --transform-rotate: 45deg; + } + + .md\:focus\:rotate-90:focus { + --transform-rotate: 90deg; + } + + .md\:focus\:rotate-180:focus { + --transform-rotate: 180deg; + } + + .md\:focus\:-rotate-180:focus { + --transform-rotate: -180deg; + } + + .md\:focus\:-rotate-90:focus { + --transform-rotate: -90deg; + } + + .md\:focus\:-rotate-45:focus { + --transform-rotate: -45deg; + } + + .md\:translate-x-0 { + --transform-translate-x: 0; + } + + .md\:translate-x-1 { + --transform-translate-x: 0.25rem; + } + + .md\:translate-x-2 { + --transform-translate-x: 0.5rem; + } + + .md\:translate-x-3 { + --transform-translate-x: 0.75rem; + } + + .md\:translate-x-4 { + --transform-translate-x: 1rem; + } + + .md\:translate-x-5 { + --transform-translate-x: 1.25rem; + } + + .md\:translate-x-6 { + --transform-translate-x: 1.5rem; + } + + .md\:translate-x-8 { + --transform-translate-x: 2rem; + } + + .md\:translate-x-10 { + --transform-translate-x: 2.5rem; + } + + .md\:translate-x-12 { + --transform-translate-x: 3rem; + } + + .md\:translate-x-16 { + --transform-translate-x: 4rem; + } + + .md\:translate-x-20 { + --transform-translate-x: 5rem; + } + + .md\:translate-x-24 { + --transform-translate-x: 6rem; + } + + .md\:translate-x-32 { + --transform-translate-x: 8rem; + } + + .md\:translate-x-40 { + --transform-translate-x: 10rem; + } + + .md\:translate-x-48 { + --transform-translate-x: 12rem; + } + + .md\:translate-x-56 { + --transform-translate-x: 14rem; + } + + .md\:translate-x-64 { + --transform-translate-x: 16rem; + } + + .md\:translate-x-px { + --transform-translate-x: 1px; + } + + .md\:-translate-x-1 { + --transform-translate-x: -0.25rem; + } + + .md\:-translate-x-2 { + --transform-translate-x: -0.5rem; + } + + .md\:-translate-x-3 { + --transform-translate-x: -0.75rem; + } + + .md\:-translate-x-4 { + --transform-translate-x: -1rem; + } + + .md\:-translate-x-5 { + --transform-translate-x: -1.25rem; + } + + .md\:-translate-x-6 { + --transform-translate-x: -1.5rem; + } + + .md\:-translate-x-8 { + --transform-translate-x: -2rem; + } + + .md\:-translate-x-10 { + --transform-translate-x: -2.5rem; + } + + .md\:-translate-x-12 { + --transform-translate-x: -3rem; + } + + .md\:-translate-x-16 { + --transform-translate-x: -4rem; + } + + .md\:-translate-x-20 { + --transform-translate-x: -5rem; + } + + .md\:-translate-x-24 { + --transform-translate-x: -6rem; + } + + .md\:-translate-x-32 { + --transform-translate-x: -8rem; + } + + .md\:-translate-x-40 { + --transform-translate-x: -10rem; + } + + .md\:-translate-x-48 { + --transform-translate-x: -12rem; + } + + .md\:-translate-x-56 { + --transform-translate-x: -14rem; + } + + .md\:-translate-x-64 { + --transform-translate-x: -16rem; + } + + .md\:-translate-x-px { + --transform-translate-x: -1px; + } + + .md\:-translate-x-full { + --transform-translate-x: -100%; + } + + .md\:-translate-x-1\/2 { + --transform-translate-x: -50%; + } + + .md\:translate-x-1\/2 { + --transform-translate-x: 50%; + } + + .md\:translate-x-full { + --transform-translate-x: 100%; + } + + .md\:translate-y-0 { + --transform-translate-y: 0; + } + + .md\:translate-y-1 { + --transform-translate-y: 0.25rem; + } + + .md\:translate-y-2 { + --transform-translate-y: 0.5rem; + } + + .md\:translate-y-3 { + --transform-translate-y: 0.75rem; + } + + .md\:translate-y-4 { + --transform-translate-y: 1rem; + } + + .md\:translate-y-5 { + --transform-translate-y: 1.25rem; + } + + .md\:translate-y-6 { + --transform-translate-y: 1.5rem; + } + + .md\:translate-y-8 { + --transform-translate-y: 2rem; + } + + .md\:translate-y-10 { + --transform-translate-y: 2.5rem; + } + + .md\:translate-y-12 { + --transform-translate-y: 3rem; + } + + .md\:translate-y-16 { + --transform-translate-y: 4rem; + } + + .md\:translate-y-20 { + --transform-translate-y: 5rem; + } + + .md\:translate-y-24 { + --transform-translate-y: 6rem; + } + + .md\:translate-y-32 { + --transform-translate-y: 8rem; + } + + .md\:translate-y-40 { + --transform-translate-y: 10rem; + } + + .md\:translate-y-48 { + --transform-translate-y: 12rem; + } + + .md\:translate-y-56 { + --transform-translate-y: 14rem; + } + + .md\:translate-y-64 { + --transform-translate-y: 16rem; + } + + .md\:translate-y-px { + --transform-translate-y: 1px; + } + + .md\:-translate-y-1 { + --transform-translate-y: -0.25rem; + } + + .md\:-translate-y-2 { + --transform-translate-y: -0.5rem; + } + + .md\:-translate-y-3 { + --transform-translate-y: -0.75rem; + } + + .md\:-translate-y-4 { + --transform-translate-y: -1rem; + } + + .md\:-translate-y-5 { + --transform-translate-y: -1.25rem; + } + + .md\:-translate-y-6 { + --transform-translate-y: -1.5rem; + } + + .md\:-translate-y-8 { + --transform-translate-y: -2rem; + } + + .md\:-translate-y-10 { + --transform-translate-y: -2.5rem; + } + + .md\:-translate-y-12 { + --transform-translate-y: -3rem; + } + + .md\:-translate-y-16 { + --transform-translate-y: -4rem; + } + + .md\:-translate-y-20 { + --transform-translate-y: -5rem; + } + + .md\:-translate-y-24 { + --transform-translate-y: -6rem; + } + + .md\:-translate-y-32 { + --transform-translate-y: -8rem; + } + + .md\:-translate-y-40 { + --transform-translate-y: -10rem; + } + + .md\:-translate-y-48 { + --transform-translate-y: -12rem; + } + + .md\:-translate-y-56 { + --transform-translate-y: -14rem; + } + + .md\:-translate-y-64 { + --transform-translate-y: -16rem; + } + + .md\:-translate-y-px { + --transform-translate-y: -1px; + } + + .md\:-translate-y-full { + --transform-translate-y: -100%; + } + + .md\:-translate-y-1\/2 { + --transform-translate-y: -50%; + } + + .md\:translate-y-1\/2 { + --transform-translate-y: 50%; + } + + .md\:translate-y-full { + --transform-translate-y: 100%; + } + + .md\:hover\:translate-x-0:hover { + --transform-translate-x: 0; + } + + .md\:hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; + } + + .md\:hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; + } + + .md\:hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; + } + + .md\:hover\:translate-x-4:hover { + --transform-translate-x: 1rem; + } + + .md\:hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; + } + + .md\:hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; + } + + .md\:hover\:translate-x-8:hover { + --transform-translate-x: 2rem; + } + + .md\:hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; + } + + .md\:hover\:translate-x-12:hover { + --transform-translate-x: 3rem; + } + + .md\:hover\:translate-x-16:hover { + --transform-translate-x: 4rem; + } + + .md\:hover\:translate-x-20:hover { + --transform-translate-x: 5rem; + } + + .md\:hover\:translate-x-24:hover { + --transform-translate-x: 6rem; + } + + .md\:hover\:translate-x-32:hover { + --transform-translate-x: 8rem; + } + + .md\:hover\:translate-x-40:hover { + --transform-translate-x: 10rem; + } + + .md\:hover\:translate-x-48:hover { + --transform-translate-x: 12rem; + } + + .md\:hover\:translate-x-56:hover { + --transform-translate-x: 14rem; + } + + .md\:hover\:translate-x-64:hover { + --transform-translate-x: 16rem; + } + + .md\:hover\:translate-x-px:hover { + --transform-translate-x: 1px; + } + + .md\:hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; + } + + .md\:hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; + } + + .md\:hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; + } + + .md\:hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; + } + + .md\:hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; + } + + .md\:hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; + } + + .md\:hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; + } + + .md\:hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; + } + + .md\:hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; + } + + .md\:hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; + } + + .md\:hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; + } + + .md\:hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; + } + + .md\:hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; + } + + .md\:hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; + } + + .md\:hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; + } + + .md\:hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; + } + + .md\:hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; + } + + .md\:hover\:-translate-x-px:hover { + --transform-translate-x: -1px; + } + + .md\:hover\:-translate-x-full:hover { + --transform-translate-x: -100%; + } + + .md\:hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; + } + + .md\:hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; + } + + .md\:hover\:translate-x-full:hover { + --transform-translate-x: 100%; + } + + .md\:hover\:translate-y-0:hover { + --transform-translate-y: 0; + } + + .md\:hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; + } + + .md\:hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; + } + + .md\:hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; + } + + .md\:hover\:translate-y-4:hover { + --transform-translate-y: 1rem; + } + + .md\:hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; + } + + .md\:hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; + } + + .md\:hover\:translate-y-8:hover { + --transform-translate-y: 2rem; + } + + .md\:hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; + } + + .md\:hover\:translate-y-12:hover { + --transform-translate-y: 3rem; + } + + .md\:hover\:translate-y-16:hover { + --transform-translate-y: 4rem; + } + + .md\:hover\:translate-y-20:hover { + --transform-translate-y: 5rem; + } + + .md\:hover\:translate-y-24:hover { + --transform-translate-y: 6rem; + } + + .md\:hover\:translate-y-32:hover { + --transform-translate-y: 8rem; + } + + .md\:hover\:translate-y-40:hover { + --transform-translate-y: 10rem; + } + + .md\:hover\:translate-y-48:hover { + --transform-translate-y: 12rem; + } + + .md\:hover\:translate-y-56:hover { + --transform-translate-y: 14rem; + } + + .md\:hover\:translate-y-64:hover { + --transform-translate-y: 16rem; + } + + .md\:hover\:translate-y-px:hover { + --transform-translate-y: 1px; + } + + .md\:hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; + } + + .md\:hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; + } + + .md\:hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; + } + + .md\:hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; + } + + .md\:hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; + } + + .md\:hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; + } + + .md\:hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; + } + + .md\:hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; + } + + .md\:hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; + } + + .md\:hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; + } + + .md\:hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; + } + + .md\:hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; + } + + .md\:hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; + } + + .md\:hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; + } + + .md\:hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; + } + + .md\:hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; + } + + .md\:hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; + } + + .md\:hover\:-translate-y-px:hover { + --transform-translate-y: -1px; + } + + .md\:hover\:-translate-y-full:hover { + --transform-translate-y: -100%; + } + + .md\:hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; + } + + .md\:hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; + } + + .md\:hover\:translate-y-full:hover { + --transform-translate-y: 100%; + } + + .md\:focus\:translate-x-0:focus { + --transform-translate-x: 0; + } + + .md\:focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; + } + + .md\:focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; + } + + .md\:focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; + } + + .md\:focus\:translate-x-4:focus { + --transform-translate-x: 1rem; + } + + .md\:focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; + } + + .md\:focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; + } + + .md\:focus\:translate-x-8:focus { + --transform-translate-x: 2rem; + } + + .md\:focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; + } + + .md\:focus\:translate-x-12:focus { + --transform-translate-x: 3rem; + } + + .md\:focus\:translate-x-16:focus { + --transform-translate-x: 4rem; + } + + .md\:focus\:translate-x-20:focus { + --transform-translate-x: 5rem; + } + + .md\:focus\:translate-x-24:focus { + --transform-translate-x: 6rem; + } + + .md\:focus\:translate-x-32:focus { + --transform-translate-x: 8rem; + } + + .md\:focus\:translate-x-40:focus { + --transform-translate-x: 10rem; + } + + .md\:focus\:translate-x-48:focus { + --transform-translate-x: 12rem; + } + + .md\:focus\:translate-x-56:focus { + --transform-translate-x: 14rem; + } + + .md\:focus\:translate-x-64:focus { + --transform-translate-x: 16rem; + } + + .md\:focus\:translate-x-px:focus { + --transform-translate-x: 1px; + } + + .md\:focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; + } + + .md\:focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; + } + + .md\:focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; + } + + .md\:focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; + } + + .md\:focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; + } + + .md\:focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; + } + + .md\:focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; + } + + .md\:focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; + } + + .md\:focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; + } + + .md\:focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; + } + + .md\:focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; + } + + .md\:focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; + } + + .md\:focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; + } + + .md\:focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; + } + + .md\:focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; + } + + .md\:focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; + } + + .md\:focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; + } + + .md\:focus\:-translate-x-px:focus { + --transform-translate-x: -1px; + } + + .md\:focus\:-translate-x-full:focus { + --transform-translate-x: -100%; + } + + .md\:focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; + } + + .md\:focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; + } + + .md\:focus\:translate-x-full:focus { + --transform-translate-x: 100%; + } + + .md\:focus\:translate-y-0:focus { + --transform-translate-y: 0; + } + + .md\:focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; + } + + .md\:focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; + } + + .md\:focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; + } + + .md\:focus\:translate-y-4:focus { + --transform-translate-y: 1rem; + } + + .md\:focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; + } + + .md\:focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; + } + + .md\:focus\:translate-y-8:focus { + --transform-translate-y: 2rem; + } + + .md\:focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; + } + + .md\:focus\:translate-y-12:focus { + --transform-translate-y: 3rem; + } + + .md\:focus\:translate-y-16:focus { + --transform-translate-y: 4rem; + } + + .md\:focus\:translate-y-20:focus { + --transform-translate-y: 5rem; + } + + .md\:focus\:translate-y-24:focus { + --transform-translate-y: 6rem; + } + + .md\:focus\:translate-y-32:focus { + --transform-translate-y: 8rem; + } + + .md\:focus\:translate-y-40:focus { + --transform-translate-y: 10rem; + } + + .md\:focus\:translate-y-48:focus { + --transform-translate-y: 12rem; + } + + .md\:focus\:translate-y-56:focus { + --transform-translate-y: 14rem; + } + + .md\:focus\:translate-y-64:focus { + --transform-translate-y: 16rem; + } + + .md\:focus\:translate-y-px:focus { + --transform-translate-y: 1px; + } + + .md\:focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; + } + + .md\:focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; + } + + .md\:focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; + } + + .md\:focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; + } + + .md\:focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; + } + + .md\:focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; + } + + .md\:focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; + } + + .md\:focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; + } + + .md\:focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; + } + + .md\:focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; + } + + .md\:focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; + } + + .md\:focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; + } + + .md\:focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; + } + + .md\:focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; + } + + .md\:focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; + } + + .md\:focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; + } + + .md\:focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; + } + + .md\:focus\:-translate-y-px:focus { + --transform-translate-y: -1px; + } + + .md\:focus\:-translate-y-full:focus { + --transform-translate-y: -100%; + } + + .md\:focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; + } + + .md\:focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; + } + + .md\:focus\:translate-y-full:focus { + --transform-translate-y: 100%; + } + + .md\:skew-x-0 { + --transform-skew-x: 0; + } + + .md\:skew-x-3 { + --transform-skew-x: 3deg; + } + + .md\:skew-x-6 { + --transform-skew-x: 6deg; + } + + .md\:skew-x-12 { + --transform-skew-x: 12deg; + } + + .md\:-skew-x-12 { + --transform-skew-x: -12deg; + } + + .md\:-skew-x-6 { + --transform-skew-x: -6deg; + } + + .md\:-skew-x-3 { + --transform-skew-x: -3deg; + } + + .md\:skew-y-0 { + --transform-skew-y: 0; + } + + .md\:skew-y-3 { + --transform-skew-y: 3deg; + } + + .md\:skew-y-6 { + --transform-skew-y: 6deg; + } + + .md\:skew-y-12 { + --transform-skew-y: 12deg; + } + + .md\:-skew-y-12 { + --transform-skew-y: -12deg; + } + + .md\:-skew-y-6 { + --transform-skew-y: -6deg; + } + + .md\:-skew-y-3 { + --transform-skew-y: -3deg; + } + + .md\:hover\:skew-x-0:hover { + --transform-skew-x: 0; + } + + .md\:hover\:skew-x-3:hover { + --transform-skew-x: 3deg; + } + + .md\:hover\:skew-x-6:hover { + --transform-skew-x: 6deg; + } + + .md\:hover\:skew-x-12:hover { + --transform-skew-x: 12deg; + } + + .md\:hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; + } + + .md\:hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; + } + + .md\:hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; + } + + .md\:hover\:skew-y-0:hover { + --transform-skew-y: 0; + } + + .md\:hover\:skew-y-3:hover { + --transform-skew-y: 3deg; + } + + .md\:hover\:skew-y-6:hover { + --transform-skew-y: 6deg; + } + + .md\:hover\:skew-y-12:hover { + --transform-skew-y: 12deg; + } + + .md\:hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; + } + + .md\:hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; + } + + .md\:hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; + } + + .md\:focus\:skew-x-0:focus { + --transform-skew-x: 0; + } + + .md\:focus\:skew-x-3:focus { + --transform-skew-x: 3deg; + } + + .md\:focus\:skew-x-6:focus { + --transform-skew-x: 6deg; + } + + .md\:focus\:skew-x-12:focus { + --transform-skew-x: 12deg; + } + + .md\:focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; + } + + .md\:focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; + } + + .md\:focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; + } + + .md\:focus\:skew-y-0:focus { + --transform-skew-y: 0; + } + + .md\:focus\:skew-y-3:focus { + --transform-skew-y: 3deg; + } + + .md\:focus\:skew-y-6:focus { + --transform-skew-y: 6deg; + } + + .md\:focus\:skew-y-12:focus { + --transform-skew-y: 12deg; + } + + .md\:focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; + } + + .md\:focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; + } + + .md\:focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; + } + + .md\:transition-none { + transition-property: none; + } + + .md\:transition-all { + transition-property: all; + } + + .md\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + } + + .md\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + } + + .md\:transition-opacity { + transition-property: opacity; + } + + .md\:transition-shadow { + transition-property: box-shadow; + } + + .md\:transition-transform { + transition-property: transform; + } + + .md\:ease-linear { + transition-timing-function: linear; + } + + .md\:ease-in { + transition-timing-function: cubic-bezier(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; + } +} + +@media (min-width: 1024px) { + .lg\:space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); + } + + .lg\:space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); + } + + .lg\:space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); + } + + .lg\:space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); + } + + .lg\:space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); + } + + .lg\:space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); + } + + .lg\:space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); + } + + .lg\:space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); + } + + .lg\:space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); + } + + .lg\:space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); + } + + .lg\:space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); + } + + .lg\:space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); + } + + .lg\:space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); + } + + .lg\:space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); + } + + .lg\:space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); + } + + .lg\:space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); + } + + .lg\:space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); + } + + .lg\:space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); + } + + .lg\:space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); + } + + .lg\:space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); + } + + .lg\:-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); + } + + .lg\:-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); + } + + .lg\:-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); + } + + .lg\:-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); + } + + .lg\:-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); + } + + .lg\:-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); + } + + .lg\:-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); + } + + .lg\:-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); + } + + .lg\:-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); + } + + .lg\:-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); + } + + .lg\:-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); + } + + .lg\:-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); + } + + .lg\:-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); + } + + .lg\:-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); + } + + .lg\:-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); + } + + .lg\:-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); + } + + .lg\:-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); + } + + .lg\:-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); + } + + .lg\:-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); + } + + .lg\:space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; + } + + .lg\:space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; + } + + .lg\:divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); + } + + .lg\:divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); + } + + .lg\:divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); + } + + .lg\:divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); + } + + .lg\:divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); + } + + .lg\:divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); + } + + .lg\:divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; + } + + .lg\:divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; + } + + .lg\:divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; + } + + .lg\:divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; + } + + .lg\:divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; + } + + .lg\:divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; + } + + .lg\:divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + } + + .lg\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .lg\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .lg\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .lg\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .lg\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .lg\:bg-fixed { + background-attachment: fixed; + } + + .lg\:bg-local { + background-attachment: local; + } + + .lg\:bg-scroll { + background-attachment: scroll; + } + + .lg\:bg-opacity-0 { + --bg-opacity: 0; + } + + .lg\:bg-opacity-25 { + --bg-opacity: 0.25; + } + + .lg\:bg-opacity-50 { + --bg-opacity: 0.5; + } + + .lg\:bg-opacity-75 { + --bg-opacity: 0.75; + } + + .lg\:bg-opacity-100 { + --bg-opacity: 1; + } + + .lg\:hover\:bg-opacity-0:hover { + --bg-opacity: 0; + } + + .lg\:hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; + } + + .lg\:hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; + } + + .lg\:hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; + } + + .lg\:hover\:bg-opacity-100:hover { + --bg-opacity: 1; + } + + .lg\:focus\:bg-opacity-0:focus { + --bg-opacity: 0; + } + + .lg\:focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; + } + + .lg\:focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; + } + + .lg\:focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; + } + + .lg\:focus\:bg-opacity-100:focus { + --bg-opacity: 1; + } + + .lg\:bg-bottom { + background-position: bottom; + } + + .lg\:bg-center { + background-position: center; + } + + .lg\:bg-left { + background-position: left; + } + + .lg\:bg-left-bottom { + background-position: left bottom; + } + + .lg\:bg-left-top { + background-position: left top; + } + + .lg\:bg-right { + background-position: right; + } + + .lg\:bg-right-bottom { + background-position: right bottom; + } + + .lg\:bg-right-top { + background-position: right top; + } + + .lg\:bg-top { + background-position: top; + } + + .lg\:bg-repeat { + background-repeat: repeat; + } + + .lg\:bg-no-repeat { + background-repeat: no-repeat; + } + + .lg\:bg-repeat-x { + background-repeat: repeat-x; + } + + .lg\:bg-repeat-y { + background-repeat: repeat-y; + } + + .lg\:bg-repeat-round { + background-repeat: round; + } + + .lg\:bg-repeat-space { + background-repeat: space; + } + + .lg\:bg-auto { + background-size: auto; + } + + .lg\:bg-cover { + background-size: cover; + } + + .lg\:bg-contain { + background-size: contain; + } + + .lg\:border-collapse { + border-collapse: collapse; + } + + .lg\:border-separate { + border-collapse: separate; + } + + .lg\:border-opacity-0 { + --border-opacity: 0; + } + + .lg\:border-opacity-25 { + --border-opacity: 0.25; + } + + .lg\:border-opacity-50 { + --border-opacity: 0.5; + } + + .lg\:border-opacity-75 { + --border-opacity: 0.75; + } + + .lg\:border-opacity-100 { + --border-opacity: 1; + } + + .lg\:hover\:border-opacity-0:hover { + --border-opacity: 0; + } + + .lg\:hover\:border-opacity-25:hover { + --border-opacity: 0.25; + } + + .lg\:hover\:border-opacity-50:hover { + --border-opacity: 0.5; + } + + .lg\:hover\:border-opacity-75:hover { + --border-opacity: 0.75; + } + + .lg\:hover\:border-opacity-100:hover { + --border-opacity: 1; + } + + .lg\:focus\:border-opacity-0:focus { + --border-opacity: 0; + } + + .lg\:focus\:border-opacity-25:focus { + --border-opacity: 0.25; + } + + .lg\:focus\:border-opacity-50:focus { + --border-opacity: 0.5; + } + + .lg\:focus\:border-opacity-75:focus { + --border-opacity: 0.75; + } + + .lg\:focus\:border-opacity-100:focus { + --border-opacity: 1; + } + + .lg\:rounded-none { + border-radius: 0; + } + + .lg\:rounded-sm { + border-radius: 0.125rem; + } + + .lg\:rounded { + border-radius: 0.25rem; + } + + .lg\:rounded-md { + border-radius: 0.375rem; + } + + .lg\:rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; + } + + .lg\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .lg\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .lg\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .lg\:border-solid { + border-style: solid; + } + + .lg\:border-dashed { + border-style: dashed; + } + + .lg\:border-dotted { + border-style: dotted; + } + + .lg\:border-double { + border-style: double; + } + + .lg\:border-none { + border-style: none; + } + + .lg\:border-0 { + border-width: 0; + } + + .lg\:border-2 { + border-width: 2px; + } + + .lg\:border-4 { + border-width: 4px; + } + + .lg\:border-8 { + border-width: 8px; + } + + .lg\:border { + border-width: 1px; + } + + .lg\:border-t-0 { + border-top-width: 0; + } + + .lg\:border-r-0 { + border-right-width: 0; + } + + .lg\:border-b-0 { + border-bottom-width: 0; + } + + .lg\:border-l-0 { + border-left-width: 0; + } + + .lg\:border-t-2 { + border-top-width: 2px; + } + + .lg\:border-r-2 { + border-right-width: 2px; + } + + .lg\:border-b-2 { + border-bottom-width: 2px; + } + + .lg\:border-l-2 { + border-left-width: 2px; + } + + .lg\:border-t-4 { + border-top-width: 4px; + } + + .lg\:border-r-4 { + border-right-width: 4px; + } + + .lg\:border-b-4 { + border-bottom-width: 4px; + } + + .lg\:border-l-4 { + border-left-width: 4px; + } + + .lg\:border-t-8 { + border-top-width: 8px; + } + + .lg\:border-r-8 { + border-right-width: 8px; + } + + .lg\:border-b-8 { + border-bottom-width: 8px; + } + + .lg\:border-l-8 { + border-left-width: 8px; + } + + .lg\:border-t { + border-top-width: 1px; + } + + .lg\:border-r { + border-right-width: 1px; + } + + .lg\:border-b { + border-bottom-width: 1px; + } + + .lg\:border-l { + border-left-width: 1px; + } + + .lg\:box-border { + box-sizing: border-box; + } + + .lg\:box-content { + box-sizing: content-box; + } + + .lg\:cursor-auto { + cursor: auto; + } + + .lg\:cursor-default { + cursor: default; + } + + .lg\:cursor-pointer { + cursor: pointer; + } + + .lg\:cursor-wait { + cursor: wait; + } + + .lg\:cursor-text { + cursor: text; + } + + .lg\:cursor-move { + cursor: move; + } + + .lg\:cursor-not-allowed { + cursor: not-allowed; + } + + .lg\:block { + display: block; + } + + .lg\:inline-block { + display: inline-block; + } + + .lg\:inline { + display: inline; + } + + .lg\:flex { + display: flex; + } + + .lg\:inline-flex { + display: inline-flex; + } + + .lg\:table { + display: table; + } + + .lg\:table-caption { + display: table-caption; + } + + .lg\:table-cell { + display: table-cell; + } + + .lg\:table-column { + display: table-column; + } + + .lg\:table-column-group { + display: table-column-group; + } + + .lg\:table-footer-group { + display: table-footer-group; + } + + .lg\:table-header-group { + display: table-header-group; + } + + .lg\:table-row-group { + display: table-row-group; + } + + .lg\:table-row { + display: table-row; + } + + .lg\:flow-root { + display: flow-root; + } + + .lg\:grid { + display: grid; + } + + .lg\:inline-grid { + display: inline-grid; + } + + .lg\:hidden { + display: none; + } + + .theme-dark .lg\:dark\:block { + display: block; + } + + .theme-dark .lg\:dark\:inline-block { + display: inline-block; + } + + .theme-dark .lg\:dark\:inline { + display: inline; + } + + .theme-dark .lg\:dark\:flex { + display: flex; + } + + .theme-dark .lg\:dark\:inline-flex { + display: inline-flex; + } + + .theme-dark .lg\:dark\:table { + display: table; + } + + .theme-dark .lg\:dark\:table-caption { + display: table-caption; + } + + .theme-dark .lg\:dark\:table-cell { + display: table-cell; + } + + .theme-dark .lg\:dark\:table-column { + display: table-column; + } + + .theme-dark .lg\:dark\:table-column-group { + display: table-column-group; + } + + .theme-dark .lg\:dark\:table-footer-group { + display: table-footer-group; + } + + .theme-dark .lg\:dark\:table-header-group { + display: table-header-group; + } + + .theme-dark .lg\:dark\:table-row-group { + display: table-row-group; + } + + .theme-dark .lg\:dark\:table-row { + display: table-row; + } + + .theme-dark .lg\:dark\:flow-root { + display: flow-root; + } + + .theme-dark .lg\:dark\:grid { + display: grid; + } + + .theme-dark .lg\:dark\:inline-grid { + display: inline-grid; + } + + .theme-dark .lg\:dark\:hidden { + display: none; + } + + .lg\:flex-row { + flex-direction: row; + } + + .lg\:flex-row-reverse { + flex-direction: row-reverse; + } + + .lg\:flex-col { + flex-direction: column; + } + + .lg\:flex-col-reverse { + flex-direction: column-reverse; + } + + .lg\:flex-wrap { + flex-wrap: wrap; + } + + .lg\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .lg\:flex-no-wrap { + flex-wrap: nowrap; + } + + .lg\:items-start { + align-items: flex-start; + } + + .lg\:items-end { + align-items: flex-end; + } + + .lg\:items-center { + align-items: center; + } + + .lg\:items-baseline { + align-items: baseline; + } + + .lg\:items-stretch { + align-items: stretch; + } + + .lg\:self-auto { + align-self: auto; + } + + .lg\:self-start { + align-self: flex-start; + } + + .lg\:self-end { + align-self: flex-end; + } + + .lg\:self-center { + align-self: center; + } + + .lg\:self-stretch { + align-self: stretch; + } + + .lg\:justify-start { + justify-content: flex-start; + } + + .lg\:justify-end { + justify-content: flex-end; + } + + .lg\:justify-center { + justify-content: center; + } + + .lg\:justify-between { + justify-content: space-between; + } + + .lg\:justify-around { + justify-content: space-around; + } + + .lg\:justify-evenly { + justify-content: space-evenly; + } + + .lg\:content-center { + align-content: center; + } + + .lg\:content-start { + align-content: flex-start; + } + + .lg\:content-end { + align-content: flex-end; + } + + .lg\:content-between { + align-content: space-between; + } + + .lg\:content-around { + align-content: space-around; + } + + .lg\:flex-1 { + flex: 1 1 0%; + } + + .lg\:flex-auto { + flex: 1 1 auto; + } + + .lg\:flex-initial { + flex: 0 1 auto; + } + + .lg\:flex-none { + flex: none; + } + + .lg\:flex-grow-0 { + flex-grow: 0; + } + + .lg\:flex-grow { + flex-grow: 1; + } + + .lg\:flex-shrink-0 { + flex-shrink: 0; + } + + .lg\:flex-shrink { + flex-shrink: 1; + } + + .lg\:order-1 { + order: 1; + } + + .lg\:order-2 { + order: 2; + } + + .lg\:order-3 { + order: 3; + } + + .lg\:order-4 { + order: 4; + } + + .lg\:order-5 { + order: 5; + } + + .lg\:order-6 { + order: 6; + } + + .lg\:order-7 { + order: 7; + } + + .lg\:order-8 { + order: 8; + } + + .lg\:order-9 { + order: 9; + } + + .lg\:order-10 { + order: 10; + } + + .lg\:order-11 { + order: 11; + } + + .lg\:order-12 { + order: 12; + } + + .lg\:order-first { + order: -9999; + } + + .lg\:order-last { + order: 9999; + } + + .lg\:order-none { + order: 0; + } + + .lg\:float-right { + float: right; + } + + .lg\:float-left { + float: left; + } + + .lg\:float-none { + float: none; + } + + .lg\:clearfix:after { + content: ""; + display: table; + clear: both; + } + + .lg\:clear-left { + clear: left; + } + + .lg\:clear-right { + clear: right; + } + + .lg\:clear-both { + clear: both; + } + + .lg\:clear-none { + clear: none; + } + + .lg\:font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .lg\:font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; + } + + .lg\:font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .lg\:font-hairline { + font-weight: 100; + } + + .lg\:font-thin { + font-weight: 200; + } + + .lg\:font-light { + font-weight: 300; + } + + .lg\:font-normal { + font-weight: 400; + } + + .lg\:font-medium { + font-weight: 500; + } + + .lg\:font-semibold { + font-weight: 600; + } + + .lg\:font-bold { + font-weight: 700; + } + + .lg\:font-extrabold { + font-weight: 800; + } + + .lg\:font-black { + font-weight: 900; + } + + .lg\:hover\:font-hairline:hover { + font-weight: 100; + } + + .lg\:hover\:font-thin:hover { + font-weight: 200; + } + + .lg\:hover\:font-light:hover { + font-weight: 300; + } + + .lg\:hover\:font-normal:hover { + font-weight: 400; + } + + .lg\:hover\:font-medium:hover { + font-weight: 500; + } + + .lg\:hover\:font-semibold:hover { + font-weight: 600; + } + + .lg\:hover\:font-bold:hover { + font-weight: 700; + } + + .lg\:hover\:font-extrabold:hover { + font-weight: 800; + } + + .lg\:hover\:font-black:hover { + font-weight: 900; + } + + .lg\:focus\:font-hairline:focus { + font-weight: 100; + } + + .lg\:focus\:font-thin:focus { + font-weight: 200; + } + + .lg\:focus\:font-light:focus { + font-weight: 300; + } + + .lg\:focus\:font-normal:focus { + font-weight: 400; + } + + .lg\:focus\:font-medium:focus { + font-weight: 500; + } + + .lg\:focus\:font-semibold:focus { + font-weight: 600; + } + + .lg\:focus\:font-bold:focus { + font-weight: 700; + } + + .lg\:focus\:font-extrabold:focus { + font-weight: 800; + } + + .lg\:focus\:font-black:focus { + font-weight: 900; + } + + .lg\:h-0 { + height: 0; + } + + .lg\:h-1 { + height: 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-8 { + height: 2rem; + } + + .lg\:h-10 { + height: 2.5rem; + } + + .lg\:h-12 { + height: 3rem; + } + + .lg\:h-16 { + height: 4rem; + } + + .lg\:h-20 { + height: 5rem; + } + + .lg\:h-24 { + height: 6rem; + } + + .lg\:h-32 { + height: 8rem; + } + + .lg\:h-40 { + height: 10rem; + } + + .lg\:h-48 { + height: 12rem; + } + + .lg\:h-56 { + height: 14rem; + } + + .lg\:h-64 { + height: 16rem; + } + + .lg\:h-auto { + height: auto; + } + + .lg\:h-px { + height: 1px; + } + + .lg\:h-full { + height: 100%; + } + + .lg\:h-screen { + height: 100vh; + } + + .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: 4rem; + } + + .lg\:leading-3 { + line-height: .75rem; + } + + .lg\:leading-4 { + line-height: 1rem; + } + + .lg\:leading-5 { + line-height: 1.25rem; + } + + .lg\:leading-6 { + line-height: 1.5rem; + } + + .lg\:leading-7 { + line-height: 1.75rem; + } + + .lg\:leading-8 { + line-height: 2rem; + } + + .lg\:leading-9 { + line-height: 2.25rem; + } + + .lg\:leading-10 { + line-height: 2.5rem; + } + + .lg\:leading-none { + line-height: 1; + } + + .lg\:leading-tight { + line-height: 1.25; + } + + .lg\:leading-snug { + line-height: 1.375; + } + + .lg\:leading-normal { + line-height: 1.5; + } + + .lg\:leading-relaxed { + line-height: 1.625; + } + + .lg\:leading-loose { + line-height: 2; + } + + .lg\:list-inside { + list-style-position: inside; + } + + .lg\:list-outside { + list-style-position: outside; + } + + .lg\:list-none { + list-style-type: none; + } + + .lg\:list-disc { + list-style-type: disc; + } + + .lg\:list-decimal { + list-style-type: decimal; + } + + .lg\:m-0 { + margin: 0; + } + + .lg\:m-1 { + margin: 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-8 { + margin: 2rem; + } + + .lg\:m-10 { + margin: 2.5rem; + } + + .lg\:m-12 { + margin: 3rem; + } + + .lg\:m-16 { + margin: 4rem; + } + + .lg\:m-20 { + margin: 5rem; + } + + .lg\:m-24 { + margin: 6rem; + } + + .lg\:m-32 { + margin: 8rem; + } + + .lg\:m-40 { + margin: 10rem; + } + + .lg\:m-48 { + margin: 12rem; + } + + .lg\:m-56 { + margin: 14rem; + } + + .lg\:m-64 { + margin: 16rem; + } + + .lg\:m-auto { + margin: auto; + } + + .lg\:m-px { + margin: 1px; + } + + .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-8 { + margin: -2rem; + } + + .lg\:-m-10 { + margin: -2.5rem; + } + + .lg\:-m-12 { + margin: -3rem; + } + + .lg\:-m-16 { + margin: -4rem; + } + + .lg\:-m-20 { + margin: -5rem; + } + + .lg\:-m-24 { + margin: -6rem; + } + + .lg\:-m-32 { + margin: -8rem; + } + + .lg\:-m-40 { + margin: -10rem; + } + + .lg\:-m-48 { + margin: -12rem; + } + + .lg\:-m-56 { + margin: -14rem; + } + + .lg\:-m-64 { + margin: -16rem; + } + + .lg\:-m-px { + margin: -1px; + } + + .lg\:my-0 { + margin-top: 0; + margin-bottom: 0; + } + + .lg\:mx-0 { + margin-left: 0; + margin-right: 0; + } + + .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-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .lg\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .lg\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .lg\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .lg\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .lg\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .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-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .lg\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .lg\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .lg\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .lg\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .lg\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .lg\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .lg\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .lg\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .lg\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .lg\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .lg\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .lg\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .lg\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .lg\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .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-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .lg\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .lg\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .lg\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .lg\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .lg\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .lg\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .lg\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .lg\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .lg\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .lg\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .lg\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .lg\:mt-0 { + margin-top: 0; + } + + .lg\:mr-0 { + margin-right: 0; + } + + .lg\:mb-0 { + margin-bottom: 0; + } + + .lg\:ml-0 { + margin-left: 0; + } + + .lg\:mt-1 { + margin-top: 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-8 { + margin-top: 2rem; + } + + .lg\:mr-8 { + margin-right: 2rem; + } + + .lg\:mb-8 { + margin-bottom: 2rem; + } + + .lg\:ml-8 { + margin-left: 2rem; + } + + .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-12 { + margin-top: 3rem; + } + + .lg\:mr-12 { + margin-right: 3rem; + } + + .lg\:mb-12 { + margin-bottom: 3rem; + } + + .lg\:ml-12 { + margin-left: 3rem; + } + + .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-32 { + margin-top: 8rem; + } + + .lg\:mr-32 { + margin-right: 8rem; + } + + .lg\:mb-32 { + margin-bottom: 8rem; + } + + .lg\:ml-32 { + margin-left: 8rem; + } + + .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-48 { + margin-top: 12rem; + } + + .lg\:mr-48 { + margin-right: 12rem; + } + + .lg\:mb-48 { + margin-bottom: 12rem; + } + + .lg\:ml-48 { + margin-left: 12rem; + } + + .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-64 { + margin-top: 16rem; + } + + .lg\:mr-64 { + margin-right: 16rem; + } + + .lg\:mb-64 { + margin-bottom: 16rem; + } + + .lg\:ml-64 { + margin-left: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + } + + .lg\:-mr-8 { + margin-right: -2rem; + } + + .lg\:-mb-8 { + margin-bottom: -2rem; + } + + .lg\:-ml-8 { + margin-left: -2rem; + } + + .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-12 { + margin-top: -3rem; + } + + .lg\:-mr-12 { + margin-right: -3rem; + } + + .lg\:-mb-12 { + margin-bottom: -3rem; + } + + .lg\:-ml-12 { + margin-left: -3rem; + } + + .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-32 { + margin-top: -8rem; + } + + .lg\:-mr-32 { + margin-right: -8rem; + } + + .lg\:-mb-32 { + margin-bottom: -8rem; + } + + .lg\:-ml-32 { + margin-left: -8rem; + } + + .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-48 { + margin-top: -12rem; + } + + .lg\:-mr-48 { + margin-right: -12rem; + } + + .lg\:-mb-48 { + margin-bottom: -12rem; + } + + .lg\:-ml-48 { + margin-left: -12rem; + } + + .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-64 { + margin-top: -16rem; + } + + .lg\:-mr-64 { + margin-right: -16rem; + } + + .lg\:-mb-64 { + margin-bottom: -16rem; + } + + .lg\:-ml-64 { + margin-left: -16rem; + } + + .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\:max-h-0 { + max-height: 0; + } + + .lg\:max-h-full { + max-height: 100%; + } + + .lg\:max-h-screen { + max-height: 100vh; + } + + .lg\:max-h-xl { + max-height: 36rem; + } + + .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-full { + max-width: 100%; + } + + .lg\:max-w-screen-sm { + max-width: 640px; + } + + .lg\:max-w-screen-md { + max-width: 768px; + } + + .lg\:max-w-screen-lg { + max-width: 1024px; + } + + .lg\:max-w-screen-xl { + max-width: 1280px; + } + + .lg\:min-h-0 { + min-height: 0; + } + + .lg\:min-h-full { + min-height: 100%; + } + + .lg\:min-h-screen { + min-height: 100vh; + } + + .lg\:min-w-0 { + min-width: 0; + } + + .lg\:min-w-full { + min-width: 100%; + } + + .lg\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .lg\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .lg\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .lg\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .lg\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .lg\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .lg\:object-center { + -o-object-position: center; + object-position: center; + } + + .lg\:object-left { + -o-object-position: left; + object-position: left; + } + + .lg\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .lg\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .lg\:object-right { + -o-object-position: right; + object-position: right; + } + + .lg\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .lg\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .lg\:object-top { + -o-object-position: top; + object-position: top; + } + + .lg\:opacity-0 { + opacity: 0; + } + + .lg\:opacity-25 { + opacity: 0.25; + } + + .lg\:opacity-50 { + opacity: 0.5; + } + + .lg\:opacity-75 { + opacity: 0.75; + } + + .lg\:opacity-100 { + opacity: 1; + } + + .lg\:hover\:opacity-0:hover { + opacity: 0; + } + + .lg\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .lg\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .lg\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .lg\:hover\:opacity-100:hover { + opacity: 1; + } + + .lg\:focus\:opacity-0:focus { + opacity: 0; + } + + .lg\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .lg\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .lg\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .lg\:focus\:opacity-100:focus { + opacity: 1; + } + + .lg\:outline-none { + outline: 0; + } + + .lg\:focus\:outline-none:focus { + outline: 0; + } + + .lg\:overflow-auto { + overflow: auto; + } + + .lg\:overflow-hidden { + overflow: hidden; + } + + .lg\:overflow-visible { + overflow: visible; + } + + .lg\:overflow-scroll { + overflow: scroll; + } + + .lg\:overflow-x-auto { + overflow-x: auto; + } + + .lg\:overflow-y-auto { + overflow-y: auto; + } + + .lg\:overflow-x-hidden { + overflow-x: hidden; + } + + .lg\:overflow-y-hidden { + overflow-y: hidden; + } + + .lg\:overflow-x-visible { + overflow-x: visible; + } + + .lg\:overflow-y-visible { + overflow-y: visible; + } + + .lg\:overflow-x-scroll { + overflow-x: scroll; + } + + .lg\:overflow-y-scroll { + overflow-y: scroll; + } + + .lg\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .lg\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + + .lg\:p-0 { + padding: 0; + } + + .lg\:p-1 { + padding: 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-8 { + padding: 2rem; + } + + .lg\:p-10 { + padding: 2.5rem; + } + + .lg\:p-12 { + padding: 3rem; + } + + .lg\:p-16 { + padding: 4rem; + } + + .lg\:p-20 { + padding: 5rem; + } + + .lg\:p-24 { + padding: 6rem; + } + + .lg\:p-32 { + padding: 8rem; + } + + .lg\:p-40 { + padding: 10rem; + } + + .lg\:p-48 { + padding: 12rem; + } + + .lg\:p-56 { + padding: 14rem; + } + + .lg\:p-64 { + padding: 16rem; + } + + .lg\:p-px { + padding: 1px; + } + + .lg\:py-0 { + padding-top: 0; + padding-bottom: 0; + } + + .lg\:px-0 { + padding-left: 0; + padding-right: 0; + } + + .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-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .lg\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .lg\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .lg\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .lg\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .lg\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .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-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .lg\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .lg\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .lg\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .lg\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .lg\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .lg\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .lg\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .lg\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .lg\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .lg\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .lg\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .lg\:pt-0 { + padding-top: 0; + } + + .lg\:pr-0 { + padding-right: 0; + } + + .lg\:pb-0 { + padding-bottom: 0; + } + + .lg\:pl-0 { + padding-left: 0; + } + + .lg\:pt-1 { + padding-top: 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-8 { + padding-top: 2rem; + } + + .lg\:pr-8 { + padding-right: 2rem; + } + + .lg\:pb-8 { + padding-bottom: 2rem; + } + + .lg\:pl-8 { + padding-left: 2rem; + } + + .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-12 { + padding-top: 3rem; + } + + .lg\:pr-12 { + padding-right: 3rem; + } + + .lg\:pb-12 { + padding-bottom: 3rem; + } + + .lg\:pl-12 { + padding-left: 3rem; + } + + .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-32 { + padding-top: 8rem; + } + + .lg\:pr-32 { + padding-right: 8rem; + } + + .lg\:pb-32 { + padding-bottom: 8rem; + } + + .lg\:pl-32 { + padding-left: 8rem; + } + + .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-48 { + padding-top: 12rem; + } + + .lg\:pr-48 { + padding-right: 12rem; + } + + .lg\:pb-48 { + padding-bottom: 12rem; + } + + .lg\:pl-48 { + padding-left: 12rem; + } + + .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-64 { + padding-top: 16rem; + } + + .lg\:pr-64 { + padding-right: 16rem; + } + + .lg\:pb-64 { + padding-bottom: 16rem; + } + + .lg\:pl-64 { + padding-left: 16rem; + } + + .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\:placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; + } + + .lg\:placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .lg\:placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; + } + + .lg\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; + } + + .lg\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; + } + + .lg\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; + } + + .lg\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .lg\:focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; + } + + .lg\:pointer-events-none { + pointer-events: none; + } + + .lg\:pointer-events-auto { + pointer-events: auto; + } + + .lg\:static { + position: static; + } + + .lg\:fixed { + position: fixed; + } + + .lg\:absolute { + position: absolute; + } + + .lg\:relative { + position: relative; + } + + .lg\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .lg\:inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .lg\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .lg\:inset-y-0 { + top: 0; + bottom: 0; + } + + .lg\:inset-x-0 { + right: 0; + left: 0; + } + + .lg\:inset-y-auto { + top: auto; + bottom: auto; + } + + .lg\:inset-x-auto { + right: auto; + left: auto; + } + + .lg\:top-0 { + top: 0; + } + + .lg\:right-0 { + right: 0; + } + + .lg\:bottom-0 { + bottom: 0; + } + + .lg\:left-0 { + left: 0; + } + + .lg\:top-auto { + top: auto; + } + + .lg\:right-auto { + right: auto; + } + + .lg\:bottom-auto { + bottom: auto; + } + + .lg\:left-auto { + left: auto; + } + + .lg\:resize-none { + resize: none; + } + + .lg\:resize-y { + resize: vertical; + } + + .lg\:resize-x { + resize: horizontal; + } + + .lg\:resize { + resize: both; + } + + .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-opacity-0 { + --text-opacity: 0; + } + + .lg\:text-opacity-25 { + --text-opacity: 0.25; + } + + .lg\:text-opacity-50 { + --text-opacity: 0.5; + } + + .lg\:text-opacity-75 { + --text-opacity: 0.75; + } + + .lg\:text-opacity-100 { + --text-opacity: 1; + } + + .lg\:hover\:text-opacity-0:hover { + --text-opacity: 0; + } + + .lg\:hover\:text-opacity-25:hover { + --text-opacity: 0.25; + } + + .lg\:hover\:text-opacity-50:hover { + --text-opacity: 0.5; + } + + .lg\:hover\:text-opacity-75:hover { + --text-opacity: 0.75; + } + + .lg\:hover\:text-opacity-100:hover { + --text-opacity: 1; + } + + .lg\:focus\:text-opacity-0:focus { + --text-opacity: 0; + } + + .lg\:focus\:text-opacity-25:focus { + --text-opacity: 0.25; + } + + .lg\:focus\:text-opacity-50:focus { + --text-opacity: 0.5; + } + + .lg\:focus\:text-opacity-75:focus { + --text-opacity: 0.75; + } + + .lg\:focus\:text-opacity-100:focus { + --text-opacity: 1; + } + + .lg\:italic { + font-style: italic; + } + + .lg\:not-italic { + font-style: normal; + } + + .lg\:uppercase { + text-transform: uppercase; + } + + .lg\:lowercase { + text-transform: lowercase; + } + + .lg\:capitalize { + text-transform: capitalize; + } + + .lg\:normal-case { + text-transform: none; + } + + .lg\:underline { + text-decoration: underline; + } + + .lg\:line-through { + text-decoration: line-through; + } + + .lg\:no-underline { + text-decoration: none; + } + + .lg\:hover\:underline:hover { + text-decoration: underline; + } + + .lg\:hover\:line-through:hover { + text-decoration: line-through; + } + + .lg\:hover\:no-underline:hover { + text-decoration: none; + } + + .lg\:focus\:underline:focus { + text-decoration: underline; + } + + .lg\:focus\:line-through:focus { + text-decoration: line-through; + } + + .lg\:focus\:no-underline:focus { + text-decoration: none; + } + + .lg\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .lg\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .lg\:tracking-tighter { + letter-spacing: -0.05em; + } + + .lg\:tracking-tight { + letter-spacing: -0.025em; + } + + .lg\:tracking-normal { + letter-spacing: 0; + } + + .lg\:tracking-wide { + letter-spacing: 0.025em; + } + + .lg\:tracking-wider { + letter-spacing: 0.05em; + } + + .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-no-wrap { + white-space: nowrap; + } + + .lg\:whitespace-pre { + white-space: pre; + } + + .lg\:whitespace-pre-line { + white-space: pre-line; + } + + .lg\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .lg\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .lg\:break-words { + overflow-wrap: break-word; + } + + .lg\:break-all { + word-break: break-all; + } + + .lg\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .lg\:w-0 { + width: 0; + } + + .lg\:w-1 { + width: 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-8 { + width: 2rem; + } + + .lg\:w-10 { + width: 2.5rem; + } + + .lg\:w-12 { + width: 3rem; + } + + .lg\:w-16 { + width: 4rem; + } + + .lg\:w-20 { + width: 5rem; + } + + .lg\:w-24 { + width: 6rem; + } + + .lg\:w-32 { + width: 8rem; + } + + .lg\:w-40 { + width: 10rem; + } + + .lg\:w-48 { + width: 12rem; + } + + .lg\:w-56 { + width: 14rem; + } + + .lg\:w-64 { + width: 16rem; + } + + .lg\:w-auto { + width: auto; + } + + .lg\:w-px { + width: 1px; + } + + .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\:gap-0 { + grid-gap: 0; + gap: 0; + } + + .lg\:gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; + } + + .lg\:gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; + } + + .lg\:gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; + } + + .lg\:gap-4 { + grid-gap: 1rem; + gap: 1rem; + } + + .lg\:gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; + } + + .lg\:gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; + } + + .lg\:gap-8 { + grid-gap: 2rem; + gap: 2rem; + } + + .lg\:gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; + } + + .lg\:gap-12 { + grid-gap: 3rem; + gap: 3rem; + } + + .lg\:gap-16 { + grid-gap: 4rem; + gap: 4rem; + } + + .lg\:gap-20 { + grid-gap: 5rem; + gap: 5rem; + } + + .lg\:gap-24 { + grid-gap: 6rem; + gap: 6rem; + } + + .lg\:gap-32 { + grid-gap: 8rem; + gap: 8rem; + } + + .lg\:gap-40 { + grid-gap: 10rem; + gap: 10rem; + } + + .lg\:gap-48 { + grid-gap: 12rem; + gap: 12rem; + } + + .lg\:gap-56 { + grid-gap: 14rem; + gap: 14rem; + } + + .lg\:gap-64 { + grid-gap: 16rem; + gap: 16rem; + } + + .lg\:gap-px { + grid-gap: 1px; + gap: 1px; + } + + .lg\:col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; + } + + .lg\:col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .lg\:col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .lg\:col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .lg\:col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .lg\:col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .lg\:col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .lg\:col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .lg\:col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .lg\:col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .lg\:col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .lg\:col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .lg\:col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .lg\:col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .lg\:col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .lg\:col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .lg\:col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .lg\:col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .lg\:col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; + } + + .lg\:row-gap-0 { + grid-row-gap: 0; + row-gap: 0; + } + + .lg\:row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; + } + + .lg\:row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; + } + + .lg\:row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; + } + + .lg\:row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; + } + + .lg\:row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; + } + + .lg\:row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; + } + + .lg\:row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; + } + + .lg\:row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; + } + + .lg\:row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; + } + + .lg\:row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; + } + + .lg\:row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; + } + + .lg\:row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; + } + + .lg\:row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; + } + + .lg\:row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; + } + + .lg\:row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; + } + + .lg\:row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; + } + + .lg\:row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; + } + + .lg\:row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; + } + + .lg\:grid-flow-row { + grid-auto-flow: row; + } + + .lg\:grid-flow-col { + grid-auto-flow: column; + } + + .lg\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .lg\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .lg\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .lg\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .lg\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .lg\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .lg\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .lg\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .lg\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .lg\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .lg\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .lg\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .lg\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .lg\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .lg\:grid-cols-none { + grid-template-columns: none; + } + + .lg\:col-auto { + grid-column: auto; + } + + .lg\:col-span-1 { + grid-column: span 1 / span 1; + } + + .lg\:col-span-2 { + grid-column: span 2 / span 2; + } + + .lg\:col-span-3 { + grid-column: span 3 / span 3; + } + + .lg\:col-span-4 { + grid-column: span 4 / span 4; + } + + .lg\:col-span-5 { + grid-column: span 5 / span 5; + } + + .lg\:col-span-6 { + grid-column: span 6 / span 6; + } + + .lg\:col-span-7 { + grid-column: span 7 / span 7; + } + + .lg\:col-span-8 { + grid-column: span 8 / span 8; + } + + .lg\:col-span-9 { + grid-column: span 9 / span 9; + } + + .lg\:col-span-10 { + grid-column: span 10 / span 10; + } + + .lg\:col-span-11 { + grid-column: span 11 / span 11; + } + + .lg\:col-span-12 { + grid-column: span 12 / span 12; + } + + .lg\:col-start-1 { + grid-column-start: 1; + } + + .lg\:col-start-2 { + grid-column-start: 2; + } + + .lg\:col-start-3 { + grid-column-start: 3; + } + + .lg\:col-start-4 { + grid-column-start: 4; + } + + .lg\:col-start-5 { + grid-column-start: 5; + } + + .lg\:col-start-6 { + grid-column-start: 6; + } + + .lg\:col-start-7 { + grid-column-start: 7; + } + + .lg\:col-start-8 { + grid-column-start: 8; + } + + .lg\:col-start-9 { + grid-column-start: 9; + } + + .lg\:col-start-10 { + grid-column-start: 10; + } + + .lg\:col-start-11 { + grid-column-start: 11; + } + + .lg\:col-start-12 { + grid-column-start: 12; + } + + .lg\:col-start-13 { + grid-column-start: 13; + } + + .lg\:col-start-auto { + grid-column-start: auto; + } + + .lg\:col-end-1 { + grid-column-end: 1; + } + + .lg\:col-end-2 { + grid-column-end: 2; + } + + .lg\:col-end-3 { + grid-column-end: 3; + } + + .lg\:col-end-4 { + grid-column-end: 4; + } + + .lg\:col-end-5 { + grid-column-end: 5; + } + + .lg\:col-end-6 { + grid-column-end: 6; + } + + .lg\:col-end-7 { + grid-column-end: 7; + } + + .lg\:col-end-8 { + grid-column-end: 8; + } + + .lg\:col-end-9 { + grid-column-end: 9; + } + + .lg\:col-end-10 { + grid-column-end: 10; + } + + .lg\:col-end-11 { + grid-column-end: 11; + } + + .lg\:col-end-12 { + grid-column-end: 12; + } + + .lg\:col-end-13 { + grid-column-end: 13; + } + + .lg\:col-end-auto { + grid-column-end: auto; + } + + .lg\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .lg\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .lg\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .lg\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .lg\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .lg\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .lg\:grid-rows-none { + grid-template-rows: none; + } + + .lg\:row-auto { + grid-row: auto; + } + + .lg\:row-span-1 { + grid-row: span 1 / span 1; + } + + .lg\:row-span-2 { + grid-row: span 2 / span 2; + } + + .lg\:row-span-3 { + grid-row: span 3 / span 3; + } + + .lg\:row-span-4 { + grid-row: span 4 / span 4; + } + + .lg\:row-span-5 { + grid-row: span 5 / span 5; + } + + .lg\:row-span-6 { + grid-row: span 6 / span 6; + } + + .lg\:row-start-1 { + grid-row-start: 1; + } + + .lg\:row-start-2 { + grid-row-start: 2; + } + + .lg\:row-start-3 { + grid-row-start: 3; + } + + .lg\:row-start-4 { + grid-row-start: 4; + } + + .lg\:row-start-5 { + grid-row-start: 5; + } + + .lg\:row-start-6 { + grid-row-start: 6; + } + + .lg\:row-start-7 { + grid-row-start: 7; + } + + .lg\:row-start-auto { + grid-row-start: auto; + } + + .lg\:row-end-1 { + grid-row-end: 1; + } + + .lg\:row-end-2 { + grid-row-end: 2; + } + + .lg\:row-end-3 { + grid-row-end: 3; + } + + .lg\:row-end-4 { + grid-row-end: 4; + } + + .lg\:row-end-5 { + grid-row-end: 5; + } + + .lg\:row-end-6 { + grid-row-end: 6; + } + + .lg\:row-end-7 { + grid-row-end: 7; + } + + .lg\:row-end-auto { + grid-row-end: auto; + } + + .lg\:transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); + } + + .lg\:transform-none { + transform: none; + } + + .lg\:origin-center { + transform-origin: center; + } + + .lg\:origin-top { + transform-origin: top; + } + + .lg\:origin-top-right { + transform-origin: top right; + } + + .lg\:origin-right { + transform-origin: right; + } + + .lg\:origin-bottom-right { + transform-origin: bottom right; + } + + .lg\:origin-bottom { + transform-origin: bottom; + } + + .lg\:origin-bottom-left { + transform-origin: bottom left; + } + + .lg\:origin-left { + transform-origin: left; + } + + .lg\:origin-top-left { + transform-origin: top left; + } + + .lg\:scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .lg\:scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .lg\:scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .lg\:scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .lg\:scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .lg\:scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .lg\:scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .lg\:scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .lg\:scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .lg\:scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .lg\:scale-x-0 { + --transform-scale-x: 0; + } + + .lg\:scale-x-50 { + --transform-scale-x: .5; + } + + .lg\:scale-x-75 { + --transform-scale-x: .75; + } + + .lg\:scale-x-90 { + --transform-scale-x: .9; + } + + .lg\:scale-x-95 { + --transform-scale-x: .95; + } + + .lg\:scale-x-100 { + --transform-scale-x: 1; + } + + .lg\:scale-x-105 { + --transform-scale-x: 1.05; + } + + .lg\:scale-x-110 { + --transform-scale-x: 1.1; + } + + .lg\:scale-x-125 { + --transform-scale-x: 1.25; + } + + .lg\:scale-x-150 { + --transform-scale-x: 1.5; + } + + .lg\:scale-y-0 { + --transform-scale-y: 0; + } + + .lg\:scale-y-50 { + --transform-scale-y: .5; + } + + .lg\:scale-y-75 { + --transform-scale-y: .75; + } + + .lg\:scale-y-90 { + --transform-scale-y: .9; + } + + .lg\:scale-y-95 { + --transform-scale-y: .95; + } + + .lg\:scale-y-100 { + --transform-scale-y: 1; + } + + .lg\:scale-y-105 { + --transform-scale-y: 1.05; + } + + .lg\:scale-y-110 { + --transform-scale-y: 1.1; + } + + .lg\:scale-y-125 { + --transform-scale-y: 1.25; + } + + .lg\:scale-y-150 { + --transform-scale-y: 1.5; + } + + .lg\:hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .lg\:hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .lg\:hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .lg\:hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .lg\:hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .lg\:hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .lg\:hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .lg\:hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .lg\:hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .lg\:hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .lg\:hover\:scale-x-0:hover { + --transform-scale-x: 0; + } + + .lg\:hover\:scale-x-50:hover { + --transform-scale-x: .5; + } + + .lg\:hover\:scale-x-75:hover { + --transform-scale-x: .75; + } + + .lg\:hover\:scale-x-90:hover { + --transform-scale-x: .9; + } + + .lg\:hover\:scale-x-95:hover { + --transform-scale-x: .95; + } + + .lg\:hover\:scale-x-100:hover { + --transform-scale-x: 1; + } + + .lg\:hover\:scale-x-105:hover { + --transform-scale-x: 1.05; + } + + .lg\:hover\:scale-x-110:hover { + --transform-scale-x: 1.1; + } + + .lg\:hover\:scale-x-125:hover { + --transform-scale-x: 1.25; + } + + .lg\:hover\:scale-x-150:hover { + --transform-scale-x: 1.5; + } + + .lg\:hover\:scale-y-0:hover { + --transform-scale-y: 0; + } + + .lg\:hover\:scale-y-50:hover { + --transform-scale-y: .5; + } + + .lg\:hover\:scale-y-75:hover { + --transform-scale-y: .75; + } + + .lg\:hover\:scale-y-90:hover { + --transform-scale-y: .9; + } + + .lg\:hover\:scale-y-95:hover { + --transform-scale-y: .95; + } + + .lg\:hover\:scale-y-100:hover { + --transform-scale-y: 1; + } + + .lg\:hover\:scale-y-105:hover { + --transform-scale-y: 1.05; + } + + .lg\:hover\:scale-y-110:hover { + --transform-scale-y: 1.1; + } + + .lg\:hover\:scale-y-125:hover { + --transform-scale-y: 1.25; + } + + .lg\:hover\:scale-y-150:hover { + --transform-scale-y: 1.5; + } + + .lg\:focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .lg\:focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .lg\:focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .lg\:focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .lg\:focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .lg\:focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .lg\:focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .lg\:focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .lg\:focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .lg\:focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .lg\:focus\:scale-x-0:focus { + --transform-scale-x: 0; + } + + .lg\:focus\:scale-x-50:focus { + --transform-scale-x: .5; + } + + .lg\:focus\:scale-x-75:focus { + --transform-scale-x: .75; + } + + .lg\:focus\:scale-x-90:focus { + --transform-scale-x: .9; + } + + .lg\:focus\:scale-x-95:focus { + --transform-scale-x: .95; + } + + .lg\:focus\:scale-x-100:focus { + --transform-scale-x: 1; + } + + .lg\:focus\:scale-x-105:focus { + --transform-scale-x: 1.05; + } + + .lg\:focus\:scale-x-110:focus { + --transform-scale-x: 1.1; + } + + .lg\:focus\:scale-x-125:focus { + --transform-scale-x: 1.25; + } + + .lg\:focus\:scale-x-150:focus { + --transform-scale-x: 1.5; + } + + .lg\:focus\:scale-y-0:focus { + --transform-scale-y: 0; + } + + .lg\:focus\:scale-y-50:focus { + --transform-scale-y: .5; + } + + .lg\:focus\:scale-y-75:focus { + --transform-scale-y: .75; + } + + .lg\:focus\:scale-y-90:focus { + --transform-scale-y: .9; + } + + .lg\:focus\:scale-y-95:focus { + --transform-scale-y: .95; + } + + .lg\:focus\:scale-y-100:focus { + --transform-scale-y: 1; + } + + .lg\:focus\:scale-y-105:focus { + --transform-scale-y: 1.05; + } + + .lg\:focus\:scale-y-110:focus { + --transform-scale-y: 1.1; + } + + .lg\:focus\:scale-y-125:focus { + --transform-scale-y: 1.25; + } + + .lg\:focus\:scale-y-150:focus { + --transform-scale-y: 1.5; + } + + .lg\:rotate-0 { + --transform-rotate: 0; + } + + .lg\:rotate-45 { + --transform-rotate: 45deg; + } + + .lg\:rotate-90 { + --transform-rotate: 90deg; + } + + .lg\:rotate-180 { + --transform-rotate: 180deg; + } + + .lg\:-rotate-180 { + --transform-rotate: -180deg; + } + + .lg\:-rotate-90 { + --transform-rotate: -90deg; + } + + .lg\:-rotate-45 { + --transform-rotate: -45deg; + } + + .lg\:hover\:rotate-0:hover { + --transform-rotate: 0; + } + + .lg\:hover\:rotate-45:hover { + --transform-rotate: 45deg; + } + + .lg\:hover\:rotate-90:hover { + --transform-rotate: 90deg; + } + + .lg\:hover\:rotate-180:hover { + --transform-rotate: 180deg; + } + + .lg\:hover\:-rotate-180:hover { + --transform-rotate: -180deg; + } + + .lg\:hover\:-rotate-90:hover { + --transform-rotate: -90deg; + } + + .lg\:hover\:-rotate-45:hover { + --transform-rotate: -45deg; + } + + .lg\:focus\:rotate-0:focus { + --transform-rotate: 0; + } + + .lg\:focus\:rotate-45:focus { + --transform-rotate: 45deg; + } + + .lg\:focus\:rotate-90:focus { + --transform-rotate: 90deg; + } + + .lg\:focus\:rotate-180:focus { + --transform-rotate: 180deg; + } + + .lg\:focus\:-rotate-180:focus { + --transform-rotate: -180deg; + } + + .lg\:focus\:-rotate-90:focus { + --transform-rotate: -90deg; + } + + .lg\:focus\:-rotate-45:focus { + --transform-rotate: -45deg; + } + + .lg\:translate-x-0 { + --transform-translate-x: 0; + } + + .lg\:translate-x-1 { + --transform-translate-x: 0.25rem; + } + + .lg\:translate-x-2 { + --transform-translate-x: 0.5rem; + } + + .lg\:translate-x-3 { + --transform-translate-x: 0.75rem; + } + + .lg\:translate-x-4 { + --transform-translate-x: 1rem; + } + + .lg\:translate-x-5 { + --transform-translate-x: 1.25rem; + } + + .lg\:translate-x-6 { + --transform-translate-x: 1.5rem; + } + + .lg\:translate-x-8 { + --transform-translate-x: 2rem; + } + + .lg\:translate-x-10 { + --transform-translate-x: 2.5rem; + } + + .lg\:translate-x-12 { + --transform-translate-x: 3rem; + } + + .lg\:translate-x-16 { + --transform-translate-x: 4rem; + } + + .lg\:translate-x-20 { + --transform-translate-x: 5rem; + } + + .lg\:translate-x-24 { + --transform-translate-x: 6rem; + } + + .lg\:translate-x-32 { + --transform-translate-x: 8rem; + } + + .lg\:translate-x-40 { + --transform-translate-x: 10rem; + } + + .lg\:translate-x-48 { + --transform-translate-x: 12rem; + } + + .lg\:translate-x-56 { + --transform-translate-x: 14rem; + } + + .lg\:translate-x-64 { + --transform-translate-x: 16rem; + } + + .lg\:translate-x-px { + --transform-translate-x: 1px; + } + + .lg\:-translate-x-1 { + --transform-translate-x: -0.25rem; + } + + .lg\:-translate-x-2 { + --transform-translate-x: -0.5rem; + } + + .lg\:-translate-x-3 { + --transform-translate-x: -0.75rem; + } + + .lg\:-translate-x-4 { + --transform-translate-x: -1rem; + } + + .lg\:-translate-x-5 { + --transform-translate-x: -1.25rem; + } + + .lg\:-translate-x-6 { + --transform-translate-x: -1.5rem; + } + + .lg\:-translate-x-8 { + --transform-translate-x: -2rem; + } + + .lg\:-translate-x-10 { + --transform-translate-x: -2.5rem; + } + + .lg\:-translate-x-12 { + --transform-translate-x: -3rem; + } + + .lg\:-translate-x-16 { + --transform-translate-x: -4rem; + } + + .lg\:-translate-x-20 { + --transform-translate-x: -5rem; + } + + .lg\:-translate-x-24 { + --transform-translate-x: -6rem; + } + + .lg\:-translate-x-32 { + --transform-translate-x: -8rem; + } + + .lg\:-translate-x-40 { + --transform-translate-x: -10rem; + } + + .lg\:-translate-x-48 { + --transform-translate-x: -12rem; + } + + .lg\:-translate-x-56 { + --transform-translate-x: -14rem; + } + + .lg\:-translate-x-64 { + --transform-translate-x: -16rem; + } + + .lg\:-translate-x-px { + --transform-translate-x: -1px; + } + + .lg\:-translate-x-full { + --transform-translate-x: -100%; + } + + .lg\:-translate-x-1\/2 { + --transform-translate-x: -50%; + } + + .lg\:translate-x-1\/2 { + --transform-translate-x: 50%; + } + + .lg\:translate-x-full { + --transform-translate-x: 100%; + } + + .lg\:translate-y-0 { + --transform-translate-y: 0; + } + + .lg\:translate-y-1 { + --transform-translate-y: 0.25rem; + } + + .lg\:translate-y-2 { + --transform-translate-y: 0.5rem; + } + + .lg\:translate-y-3 { + --transform-translate-y: 0.75rem; + } + + .lg\:translate-y-4 { + --transform-translate-y: 1rem; + } + + .lg\:translate-y-5 { + --transform-translate-y: 1.25rem; + } + + .lg\:translate-y-6 { + --transform-translate-y: 1.5rem; + } + + .lg\:translate-y-8 { + --transform-translate-y: 2rem; + } + + .lg\:translate-y-10 { + --transform-translate-y: 2.5rem; + } + + .lg\:translate-y-12 { + --transform-translate-y: 3rem; + } + + .lg\:translate-y-16 { + --transform-translate-y: 4rem; + } + + .lg\:translate-y-20 { + --transform-translate-y: 5rem; + } + + .lg\:translate-y-24 { + --transform-translate-y: 6rem; + } + + .lg\:translate-y-32 { + --transform-translate-y: 8rem; + } + + .lg\:translate-y-40 { + --transform-translate-y: 10rem; + } + + .lg\:translate-y-48 { + --transform-translate-y: 12rem; + } + + .lg\:translate-y-56 { + --transform-translate-y: 14rem; + } + + .lg\:translate-y-64 { + --transform-translate-y: 16rem; + } + + .lg\:translate-y-px { + --transform-translate-y: 1px; + } + + .lg\:-translate-y-1 { + --transform-translate-y: -0.25rem; + } + + .lg\:-translate-y-2 { + --transform-translate-y: -0.5rem; + } + + .lg\:-translate-y-3 { + --transform-translate-y: -0.75rem; + } + + .lg\:-translate-y-4 { + --transform-translate-y: -1rem; + } + + .lg\:-translate-y-5 { + --transform-translate-y: -1.25rem; + } + + .lg\:-translate-y-6 { + --transform-translate-y: -1.5rem; + } + + .lg\:-translate-y-8 { + --transform-translate-y: -2rem; + } + + .lg\:-translate-y-10 { + --transform-translate-y: -2.5rem; + } + + .lg\:-translate-y-12 { + --transform-translate-y: -3rem; + } + + .lg\:-translate-y-16 { + --transform-translate-y: -4rem; + } + + .lg\:-translate-y-20 { + --transform-translate-y: -5rem; + } + + .lg\:-translate-y-24 { + --transform-translate-y: -6rem; + } + + .lg\:-translate-y-32 { + --transform-translate-y: -8rem; + } + + .lg\:-translate-y-40 { + --transform-translate-y: -10rem; + } + + .lg\:-translate-y-48 { + --transform-translate-y: -12rem; + } + + .lg\:-translate-y-56 { + --transform-translate-y: -14rem; + } + + .lg\:-translate-y-64 { + --transform-translate-y: -16rem; + } + + .lg\:-translate-y-px { + --transform-translate-y: -1px; + } + + .lg\:-translate-y-full { + --transform-translate-y: -100%; + } + + .lg\:-translate-y-1\/2 { + --transform-translate-y: -50%; + } + + .lg\:translate-y-1\/2 { + --transform-translate-y: 50%; + } + + .lg\:translate-y-full { + --transform-translate-y: 100%; + } + + .lg\:hover\:translate-x-0:hover { + --transform-translate-x: 0; + } + + .lg\:hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; + } + + .lg\:hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; + } + + .lg\:hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; + } + + .lg\:hover\:translate-x-4:hover { + --transform-translate-x: 1rem; + } + + .lg\:hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; + } + + .lg\:hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; + } + + .lg\:hover\:translate-x-8:hover { + --transform-translate-x: 2rem; + } + + .lg\:hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; + } + + .lg\:hover\:translate-x-12:hover { + --transform-translate-x: 3rem; + } + + .lg\:hover\:translate-x-16:hover { + --transform-translate-x: 4rem; + } + + .lg\:hover\:translate-x-20:hover { + --transform-translate-x: 5rem; + } + + .lg\:hover\:translate-x-24:hover { + --transform-translate-x: 6rem; + } + + .lg\:hover\:translate-x-32:hover { + --transform-translate-x: 8rem; + } + + .lg\:hover\:translate-x-40:hover { + --transform-translate-x: 10rem; + } + + .lg\:hover\:translate-x-48:hover { + --transform-translate-x: 12rem; + } + + .lg\:hover\:translate-x-56:hover { + --transform-translate-x: 14rem; + } + + .lg\:hover\:translate-x-64:hover { + --transform-translate-x: 16rem; + } + + .lg\:hover\:translate-x-px:hover { + --transform-translate-x: 1px; + } + + .lg\:hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; + } + + .lg\:hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; + } + + .lg\:hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; + } + + .lg\:hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; + } + + .lg\:hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; + } + + .lg\:hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; + } + + .lg\:hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; + } + + .lg\:hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; + } + + .lg\:hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; + } + + .lg\:hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; + } + + .lg\:hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; + } + + .lg\:hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; + } + + .lg\:hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; + } + + .lg\:hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; + } + + .lg\:hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; + } + + .lg\:hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; + } + + .lg\:hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; + } + + .lg\:hover\:-translate-x-px:hover { + --transform-translate-x: -1px; + } + + .lg\:hover\:-translate-x-full:hover { + --transform-translate-x: -100%; + } + + .lg\:hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; + } + + .lg\:hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; + } + + .lg\:hover\:translate-x-full:hover { + --transform-translate-x: 100%; + } + + .lg\:hover\:translate-y-0:hover { + --transform-translate-y: 0; + } + + .lg\:hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; + } + + .lg\:hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; + } + + .lg\:hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; + } + + .lg\:hover\:translate-y-4:hover { + --transform-translate-y: 1rem; + } + + .lg\:hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; + } + + .lg\:hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; + } + + .lg\:hover\:translate-y-8:hover { + --transform-translate-y: 2rem; + } + + .lg\:hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; + } + + .lg\:hover\:translate-y-12:hover { + --transform-translate-y: 3rem; + } + + .lg\:hover\:translate-y-16:hover { + --transform-translate-y: 4rem; + } + + .lg\:hover\:translate-y-20:hover { + --transform-translate-y: 5rem; + } + + .lg\:hover\:translate-y-24:hover { + --transform-translate-y: 6rem; + } + + .lg\:hover\:translate-y-32:hover { + --transform-translate-y: 8rem; + } + + .lg\:hover\:translate-y-40:hover { + --transform-translate-y: 10rem; + } + + .lg\:hover\:translate-y-48:hover { + --transform-translate-y: 12rem; + } + + .lg\:hover\:translate-y-56:hover { + --transform-translate-y: 14rem; + } + + .lg\:hover\:translate-y-64:hover { + --transform-translate-y: 16rem; + } + + .lg\:hover\:translate-y-px:hover { + --transform-translate-y: 1px; + } + + .lg\:hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; + } + + .lg\:hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; + } + + .lg\:hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; + } + + .lg\:hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; + } + + .lg\:hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; + } + + .lg\:hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; + } + + .lg\:hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; + } + + .lg\:hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; + } + + .lg\:hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; + } + + .lg\:hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; + } + + .lg\:hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; + } + + .lg\:hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; + } + + .lg\:hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; + } + + .lg\:hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; + } + + .lg\:hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; + } + + .lg\:hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; + } + + .lg\:hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; + } + + .lg\:hover\:-translate-y-px:hover { + --transform-translate-y: -1px; + } + + .lg\:hover\:-translate-y-full:hover { + --transform-translate-y: -100%; + } + + .lg\:hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; + } + + .lg\:hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; + } + + .lg\:hover\:translate-y-full:hover { + --transform-translate-y: 100%; + } + + .lg\:focus\:translate-x-0:focus { + --transform-translate-x: 0; + } + + .lg\:focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; + } + + .lg\:focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; + } + + .lg\:focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; + } + + .lg\:focus\:translate-x-4:focus { + --transform-translate-x: 1rem; + } + + .lg\:focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; + } + + .lg\:focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; + } + + .lg\:focus\:translate-x-8:focus { + --transform-translate-x: 2rem; + } + + .lg\:focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; + } + + .lg\:focus\:translate-x-12:focus { + --transform-translate-x: 3rem; + } + + .lg\:focus\:translate-x-16:focus { + --transform-translate-x: 4rem; + } + + .lg\:focus\:translate-x-20:focus { + --transform-translate-x: 5rem; + } + + .lg\:focus\:translate-x-24:focus { + --transform-translate-x: 6rem; + } + + .lg\:focus\:translate-x-32:focus { + --transform-translate-x: 8rem; + } + + .lg\:focus\:translate-x-40:focus { + --transform-translate-x: 10rem; + } + + .lg\:focus\:translate-x-48:focus { + --transform-translate-x: 12rem; + } + + .lg\:focus\:translate-x-56:focus { + --transform-translate-x: 14rem; + } + + .lg\:focus\:translate-x-64:focus { + --transform-translate-x: 16rem; + } + + .lg\:focus\:translate-x-px:focus { + --transform-translate-x: 1px; + } + + .lg\:focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; + } + + .lg\:focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; + } + + .lg\:focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; + } + + .lg\:focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; + } + + .lg\:focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; + } + + .lg\:focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; + } + + .lg\:focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; + } + + .lg\:focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; + } + + .lg\:focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; + } + + .lg\:focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; + } + + .lg\:focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; + } + + .lg\:focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; + } + + .lg\:focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; + } + + .lg\:focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; + } + + .lg\:focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; + } + + .lg\:focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; + } + + .lg\:focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; + } + + .lg\:focus\:-translate-x-px:focus { + --transform-translate-x: -1px; + } + + .lg\:focus\:-translate-x-full:focus { + --transform-translate-x: -100%; + } + + .lg\:focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; + } + + .lg\:focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; + } + + .lg\:focus\:translate-x-full:focus { + --transform-translate-x: 100%; + } + + .lg\:focus\:translate-y-0:focus { + --transform-translate-y: 0; + } + + .lg\:focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; + } + + .lg\:focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; + } + + .lg\:focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; + } + + .lg\:focus\:translate-y-4:focus { + --transform-translate-y: 1rem; + } + + .lg\:focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; + } + + .lg\:focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; + } + + .lg\:focus\:translate-y-8:focus { + --transform-translate-y: 2rem; + } + + .lg\:focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; + } + + .lg\:focus\:translate-y-12:focus { + --transform-translate-y: 3rem; + } + + .lg\:focus\:translate-y-16:focus { + --transform-translate-y: 4rem; + } + + .lg\:focus\:translate-y-20:focus { + --transform-translate-y: 5rem; + } + + .lg\:focus\:translate-y-24:focus { + --transform-translate-y: 6rem; + } + + .lg\:focus\:translate-y-32:focus { + --transform-translate-y: 8rem; + } + + .lg\:focus\:translate-y-40:focus { + --transform-translate-y: 10rem; + } + + .lg\:focus\:translate-y-48:focus { + --transform-translate-y: 12rem; + } + + .lg\:focus\:translate-y-56:focus { + --transform-translate-y: 14rem; + } + + .lg\:focus\:translate-y-64:focus { + --transform-translate-y: 16rem; + } + + .lg\:focus\:translate-y-px:focus { + --transform-translate-y: 1px; + } + + .lg\:focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; + } + + .lg\:focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; + } + + .lg\:focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; + } + + .lg\:focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; + } + + .lg\:focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; + } + + .lg\:focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; + } + + .lg\:focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; + } + + .lg\:focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; + } + + .lg\:focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; + } + + .lg\:focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; + } + + .lg\:focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; + } + + .lg\:focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; + } + + .lg\:focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; + } + + .lg\:focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; + } + + .lg\:focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; + } + + .lg\:focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; + } + + .lg\:focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; + } + + .lg\:focus\:-translate-y-px:focus { + --transform-translate-y: -1px; + } + + .lg\:focus\:-translate-y-full:focus { + --transform-translate-y: -100%; + } + + .lg\:focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; + } + + .lg\:focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; + } + + .lg\:focus\:translate-y-full:focus { + --transform-translate-y: 100%; + } + + .lg\:skew-x-0 { + --transform-skew-x: 0; + } + + .lg\:skew-x-3 { + --transform-skew-x: 3deg; + } + + .lg\:skew-x-6 { + --transform-skew-x: 6deg; + } + + .lg\:skew-x-12 { + --transform-skew-x: 12deg; + } + + .lg\:-skew-x-12 { + --transform-skew-x: -12deg; + } + + .lg\:-skew-x-6 { + --transform-skew-x: -6deg; + } + + .lg\:-skew-x-3 { + --transform-skew-x: -3deg; + } + + .lg\:skew-y-0 { + --transform-skew-y: 0; + } + + .lg\:skew-y-3 { + --transform-skew-y: 3deg; + } + + .lg\:skew-y-6 { + --transform-skew-y: 6deg; + } + + .lg\:skew-y-12 { + --transform-skew-y: 12deg; + } + + .lg\:-skew-y-12 { + --transform-skew-y: -12deg; + } + + .lg\:-skew-y-6 { + --transform-skew-y: -6deg; + } + + .lg\:-skew-y-3 { + --transform-skew-y: -3deg; + } + + .lg\:hover\:skew-x-0:hover { + --transform-skew-x: 0; + } + + .lg\:hover\:skew-x-3:hover { + --transform-skew-x: 3deg; + } + + .lg\:hover\:skew-x-6:hover { + --transform-skew-x: 6deg; + } + + .lg\:hover\:skew-x-12:hover { + --transform-skew-x: 12deg; + } + + .lg\:hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; + } + + .lg\:hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; + } + + .lg\:hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; + } + + .lg\:hover\:skew-y-0:hover { + --transform-skew-y: 0; + } + + .lg\:hover\:skew-y-3:hover { + --transform-skew-y: 3deg; + } + + .lg\:hover\:skew-y-6:hover { + --transform-skew-y: 6deg; + } + + .lg\:hover\:skew-y-12:hover { + --transform-skew-y: 12deg; + } + + .lg\:hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; + } + + .lg\:hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; + } + + .lg\:hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; + } + + .lg\:focus\:skew-x-0:focus { + --transform-skew-x: 0; + } + + .lg\:focus\:skew-x-3:focus { + --transform-skew-x: 3deg; + } + + .lg\:focus\:skew-x-6:focus { + --transform-skew-x: 6deg; + } + + .lg\:focus\:skew-x-12:focus { + --transform-skew-x: 12deg; + } + + .lg\:focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; + } + + .lg\:focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; + } + + .lg\:focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; + } + + .lg\:focus\:skew-y-0:focus { + --transform-skew-y: 0; + } + + .lg\:focus\:skew-y-3:focus { + --transform-skew-y: 3deg; + } + + .lg\:focus\:skew-y-6:focus { + --transform-skew-y: 6deg; + } + + .lg\:focus\:skew-y-12:focus { + --transform-skew-y: 12deg; + } + + .lg\:focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; + } + + .lg\:focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; + } + + .lg\:focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; + } + + .lg\:transition-none { + transition-property: none; + } + + .lg\:transition-all { + transition-property: all; + } + + .lg\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + } + + .lg\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + } + + .lg\:transition-opacity { + transition-property: opacity; + } + + .lg\:transition-shadow { + transition-property: box-shadow; + } + + .lg\:transition-transform { + transition-property: transform; + } + + .lg\:ease-linear { + transition-timing-function: linear; + } + + .lg\:ease-in { + transition-timing-function: cubic-bezier(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; + } +} + +@media (min-width: 1280px) { + .xl\:space-y-0 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0px * var(--space-y-reverse)); + } + + .xl\:space-x-0 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0px * var(--space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.25rem * var(--space-y-reverse)); + } + + .xl\:space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.25rem * var(--space-x-reverse)); + margin-left: calc(0.25rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.5rem * var(--space-y-reverse)); + } + + .xl\:space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.5rem * var(--space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(0.75rem * var(--space-y-reverse)); + } + + .xl\:space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(0.75rem * var(--space-x-reverse)); + margin-left: calc(0.75rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1rem * var(--space-y-reverse)); + } + + .xl\:space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1rem * var(--space-x-reverse)); + margin-left: calc(1rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.25rem * var(--space-y-reverse)); + } + + .xl\:space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.25rem * var(--space-x-reverse)); + margin-left: calc(1.25rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1.5rem * var(--space-y-reverse)); + } + + .xl\:space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1.5rem * var(--space-x-reverse)); + margin-left: calc(1.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2rem * var(--space-y-reverse)); + } + + .xl\:space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2rem * var(--space-x-reverse)); + margin-left: calc(2rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(2.5rem * var(--space-y-reverse)); + } + + .xl\:space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(2.5rem * var(--space-x-reverse)); + margin-left: calc(2.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(3rem * var(--space-y-reverse)); + } + + .xl\:space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(3rem * var(--space-x-reverse)); + margin-left: calc(3rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(4rem * var(--space-y-reverse)); + } + + .xl\:space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(4rem * var(--space-x-reverse)); + margin-left: calc(4rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(5rem * var(--space-y-reverse)); + } + + .xl\:space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(5rem * var(--space-x-reverse)); + margin-left: calc(5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(6rem * var(--space-y-reverse)); + } + + .xl\:space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(6rem * var(--space-x-reverse)); + margin-left: calc(6rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(8rem * var(--space-y-reverse)); + } + + .xl\:space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(8rem * var(--space-x-reverse)); + margin-left: calc(8rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(10rem * var(--space-y-reverse)); + } + + .xl\:space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(10rem * var(--space-x-reverse)); + margin-left: calc(10rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(12rem * var(--space-y-reverse)); + } + + .xl\:space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(12rem * var(--space-x-reverse)); + margin-left: calc(12rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(14rem * var(--space-y-reverse)); + } + + .xl\:space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(14rem * var(--space-x-reverse)); + margin-left: calc(14rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(16rem * var(--space-y-reverse)); + } + + .xl\:space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(16rem * var(--space-x-reverse)); + margin-left: calc(16rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(1px * var(--space-y-reverse)); + } + + .xl\:space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(1px * var(--space-x-reverse)); + margin-left: calc(1px * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-1 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.25rem * var(--space-y-reverse)); + } + + .xl\:-space-x-1 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-2 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.5rem * var(--space-y-reverse)); + } + + .xl\:-space-x-2 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-3 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-0.75rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-0.75rem * var(--space-y-reverse)); + } + + .xl\:-space-x-3 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-4 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1rem * var(--space-y-reverse)); + } + + .xl\:-space-x-4 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1rem * var(--space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-5 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.25rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.25rem * var(--space-y-reverse)); + } + + .xl\:-space-x-5 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-6 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1.5rem * var(--space-y-reverse)); + } + + .xl\:-space-x-6 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-8 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2rem * var(--space-y-reverse)); + } + + .xl\:-space-x-8 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2rem * var(--space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-10 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-2.5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-2.5rem * var(--space-y-reverse)); + } + + .xl\:-space-x-10 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-12 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-3rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-3rem * var(--space-y-reverse)); + } + + .xl\:-space-x-12 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-3rem * var(--space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-16 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-4rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-4rem * var(--space-y-reverse)); + } + + .xl\:-space-x-16 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-4rem * var(--space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-20 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-5rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-5rem * var(--space-y-reverse)); + } + + .xl\:-space-x-20 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-5rem * var(--space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-24 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-6rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-6rem * var(--space-y-reverse)); + } + + .xl\:-space-x-24 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-6rem * var(--space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-32 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-8rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-8rem * var(--space-y-reverse)); + } + + .xl\:-space-x-32 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-8rem * var(--space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-40 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-10rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-10rem * var(--space-y-reverse)); + } + + .xl\:-space-x-40 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-10rem * var(--space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-48 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-12rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-12rem * var(--space-y-reverse)); + } + + .xl\:-space-x-48 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-12rem * var(--space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-56 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-14rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-14rem * var(--space-y-reverse)); + } + + .xl\:-space-x-56 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-14rem * var(--space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-64 > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-16rem * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-16rem * var(--space-y-reverse)); + } + + .xl\:-space-x-64 > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-16rem * var(--space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--space-x-reverse))); + } + + .xl\:-space-y-px > :not(template) ~ :not(template) { + --space-y-reverse: 0; + margin-top: calc(-1px * calc(1 - var(--space-y-reverse))); + margin-bottom: calc(-1px * var(--space-y-reverse)); + } + + .xl\:-space-x-px > :not(template) ~ :not(template) { + --space-x-reverse: 0; + margin-right: calc(-1px * var(--space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--space-x-reverse))); + } + + .xl\:space-y-reverse > :not(template) ~ :not(template) { + --space-y-reverse: 1; + } + + .xl\:space-x-reverse > :not(template) ~ :not(template) { + --space-x-reverse: 1; + } + + .xl\:divide-y-0 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(0px * var(--divide-y-reverse)); + } + + .xl\:divide-x-0 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(0px * var(--divide-x-reverse)); + border-left-width: calc(0px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y-2 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(2px * var(--divide-y-reverse)); + } + + .xl\:divide-x-2 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(2px * var(--divide-x-reverse)); + border-left-width: calc(2px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y-4 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(4px * var(--divide-y-reverse)); + } + + .xl\:divide-x-4 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(4px * var(--divide-x-reverse)); + border-left-width: calc(4px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y-8 > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(8px * var(--divide-y-reverse)); + } + + .xl\:divide-x-8 > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(8px * var(--divide-x-reverse)); + border-left-width: calc(8px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y > :not(template) ~ :not(template) { + --divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--divide-y-reverse))); + border-bottom-width: calc(1px * var(--divide-y-reverse)); + } + + .xl\:divide-x > :not(template) ~ :not(template) { + --divide-x-reverse: 0; + border-right-width: calc(1px * var(--divide-x-reverse)); + border-left-width: calc(1px * calc(1 - var(--divide-x-reverse))); + } + + .xl\:divide-y-reverse > :not(template) ~ :not(template) { + --divide-y-reverse: 1; + } + + .xl\:divide-x-reverse > :not(template) ~ :not(template) { + --divide-x-reverse: 1; + } + + .xl\:divide-opacity-0 > :not(template) ~ :not(template) { + --divide-opacity: 0; + } + + .xl\:divide-opacity-25 > :not(template) ~ :not(template) { + --divide-opacity: 0.25; + } + + .xl\:divide-opacity-50 > :not(template) ~ :not(template) { + --divide-opacity: 0.5; + } + + .xl\:divide-opacity-75 > :not(template) ~ :not(template) { + --divide-opacity: 0.75; + } + + .xl\:divide-opacity-100 > :not(template) ~ :not(template) { + --divide-opacity: 1; + } + + .xl\:sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .xl\:not-sr-only { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .xl\:focus\:sr-only:focus { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; + } + + .xl\:focus\:not-sr-only:focus { + position: static; + width: auto; + height: auto; + padding: 0; + margin: 0; + overflow: visible; + clip: auto; + white-space: normal; + } + + .xl\:appearance-none { + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + } + + .xl\:bg-fixed { + background-attachment: fixed; + } + + .xl\:bg-local { + background-attachment: local; + } + + .xl\:bg-scroll { + background-attachment: scroll; + } + + .xl\:bg-opacity-0 { + --bg-opacity: 0; + } + + .xl\:bg-opacity-25 { + --bg-opacity: 0.25; + } + + .xl\:bg-opacity-50 { + --bg-opacity: 0.5; + } + + .xl\:bg-opacity-75 { + --bg-opacity: 0.75; + } + + .xl\:bg-opacity-100 { + --bg-opacity: 1; + } + + .xl\:hover\:bg-opacity-0:hover { + --bg-opacity: 0; + } + + .xl\:hover\:bg-opacity-25:hover { + --bg-opacity: 0.25; + } + + .xl\:hover\:bg-opacity-50:hover { + --bg-opacity: 0.5; + } + + .xl\:hover\:bg-opacity-75:hover { + --bg-opacity: 0.75; + } + + .xl\:hover\:bg-opacity-100:hover { + --bg-opacity: 1; + } + + .xl\:focus\:bg-opacity-0:focus { + --bg-opacity: 0; + } + + .xl\:focus\:bg-opacity-25:focus { + --bg-opacity: 0.25; + } + + .xl\:focus\:bg-opacity-50:focus { + --bg-opacity: 0.5; + } + + .xl\:focus\:bg-opacity-75:focus { + --bg-opacity: 0.75; + } + + .xl\:focus\:bg-opacity-100:focus { + --bg-opacity: 1; + } + + .xl\:bg-bottom { + background-position: bottom; + } + + .xl\:bg-center { + background-position: center; + } + + .xl\:bg-left { + background-position: left; + } + + .xl\:bg-left-bottom { + background-position: left bottom; + } + + .xl\:bg-left-top { + background-position: left top; + } + + .xl\:bg-right { + background-position: right; + } + + .xl\:bg-right-bottom { + background-position: right bottom; + } + + .xl\:bg-right-top { + background-position: right top; + } + + .xl\:bg-top { + background-position: top; + } + + .xl\:bg-repeat { + background-repeat: repeat; + } + + .xl\:bg-no-repeat { + background-repeat: no-repeat; + } + + .xl\:bg-repeat-x { + background-repeat: repeat-x; + } + + .xl\:bg-repeat-y { + background-repeat: repeat-y; + } + + .xl\:bg-repeat-round { + background-repeat: round; + } + + .xl\:bg-repeat-space { + background-repeat: space; + } + + .xl\:bg-auto { + background-size: auto; + } + + .xl\:bg-cover { + background-size: cover; + } + + .xl\:bg-contain { + background-size: contain; + } + + .xl\:border-collapse { + border-collapse: collapse; + } + + .xl\:border-separate { + border-collapse: separate; + } + + .xl\:border-opacity-0 { + --border-opacity: 0; + } + + .xl\:border-opacity-25 { + --border-opacity: 0.25; + } + + .xl\:border-opacity-50 { + --border-opacity: 0.5; + } + + .xl\:border-opacity-75 { + --border-opacity: 0.75; + } + + .xl\:border-opacity-100 { + --border-opacity: 1; + } + + .xl\:hover\:border-opacity-0:hover { + --border-opacity: 0; + } + + .xl\:hover\:border-opacity-25:hover { + --border-opacity: 0.25; + } + + .xl\:hover\:border-opacity-50:hover { + --border-opacity: 0.5; + } + + .xl\:hover\:border-opacity-75:hover { + --border-opacity: 0.75; + } + + .xl\:hover\:border-opacity-100:hover { + --border-opacity: 1; + } + + .xl\:focus\:border-opacity-0:focus { + --border-opacity: 0; + } + + .xl\:focus\:border-opacity-25:focus { + --border-opacity: 0.25; + } + + .xl\:focus\:border-opacity-50:focus { + --border-opacity: 0.5; + } + + .xl\:focus\:border-opacity-75:focus { + --border-opacity: 0.75; + } + + .xl\:focus\:border-opacity-100:focus { + --border-opacity: 1; + } + + .xl\:rounded-none { + border-radius: 0; + } + + .xl\:rounded-sm { + border-radius: 0.125rem; + } + + .xl\:rounded { + border-radius: 0.25rem; + } + + .xl\:rounded-md { + border-radius: 0.375rem; + } + + .xl\:rounded-lg { + border-radius: 0.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-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-full { + border-top-left-radius: 9999px; + } + + .xl\:rounded-tr-full { + border-top-right-radius: 9999px; + } + + .xl\:rounded-br-full { + border-bottom-right-radius: 9999px; + } + + .xl\:rounded-bl-full { + border-bottom-left-radius: 9999px; + } + + .xl\:border-solid { + border-style: solid; + } + + .xl\:border-dashed { + border-style: dashed; + } + + .xl\:border-dotted { + border-style: dotted; + } + + .xl\:border-double { + border-style: double; + } + + .xl\:border-none { + border-style: none; + } + + .xl\:border-0 { + border-width: 0; + } + + .xl\:border-2 { + border-width: 2px; + } + + .xl\:border-4 { + border-width: 4px; + } + + .xl\:border-8 { + border-width: 8px; + } + + .xl\:border { + border-width: 1px; + } + + .xl\:border-t-0 { + border-top-width: 0; + } + + .xl\:border-r-0 { + border-right-width: 0; + } + + .xl\:border-b-0 { + border-bottom-width: 0; + } + + .xl\:border-l-0 { + border-left-width: 0; + } + + .xl\:border-t-2 { + border-top-width: 2px; + } + + .xl\:border-r-2 { + border-right-width: 2px; + } + + .xl\:border-b-2 { + border-bottom-width: 2px; + } + + .xl\:border-l-2 { + border-left-width: 2px; + } + + .xl\:border-t-4 { + border-top-width: 4px; + } + + .xl\:border-r-4 { + border-right-width: 4px; + } + + .xl\:border-b-4 { + border-bottom-width: 4px; + } + + .xl\:border-l-4 { + border-left-width: 4px; + } + + .xl\:border-t-8 { + border-top-width: 8px; + } + + .xl\:border-r-8 { + border-right-width: 8px; + } + + .xl\:border-b-8 { + border-bottom-width: 8px; + } + + .xl\:border-l-8 { + border-left-width: 8px; + } + + .xl\:border-t { + border-top-width: 1px; + } + + .xl\:border-r { + border-right-width: 1px; + } + + .xl\:border-b { + border-bottom-width: 1px; + } + + .xl\:border-l { + border-left-width: 1px; + } + + .xl\:box-border { + box-sizing: border-box; + } + + .xl\:box-content { + box-sizing: content-box; + } + + .xl\:cursor-auto { + cursor: auto; + } + + .xl\:cursor-default { + cursor: default; + } + + .xl\:cursor-pointer { + cursor: pointer; + } + + .xl\:cursor-wait { + cursor: wait; + } + + .xl\:cursor-text { + cursor: text; + } + + .xl\:cursor-move { + cursor: move; + } + + .xl\:cursor-not-allowed { + cursor: not-allowed; + } + + .xl\:block { + display: block; + } + + .xl\:inline-block { + display: inline-block; + } + + .xl\:inline { + display: inline; + } + + .xl\:flex { + display: flex; + } + + .xl\:inline-flex { + display: inline-flex; + } + + .xl\:table { + display: table; + } + + .xl\:table-caption { + display: table-caption; + } + + .xl\:table-cell { + display: table-cell; + } + + .xl\:table-column { + display: table-column; + } + + .xl\:table-column-group { + display: table-column-group; + } + + .xl\:table-footer-group { + display: table-footer-group; + } + + .xl\:table-header-group { + display: table-header-group; + } + + .xl\:table-row-group { + display: table-row-group; + } + + .xl\:table-row { + display: table-row; + } + + .xl\:flow-root { + display: flow-root; + } + + .xl\:grid { + display: grid; + } + + .xl\:inline-grid { + display: inline-grid; + } + + .xl\:hidden { + display: none; + } + + .theme-dark .xl\:dark\:block { + display: block; + } + + .theme-dark .xl\:dark\:inline-block { + display: inline-block; + } + + .theme-dark .xl\:dark\:inline { + display: inline; + } + + .theme-dark .xl\:dark\:flex { + display: flex; + } + + .theme-dark .xl\:dark\:inline-flex { + display: inline-flex; + } + + .theme-dark .xl\:dark\:table { + display: table; + } + + .theme-dark .xl\:dark\:table-caption { + display: table-caption; + } + + .theme-dark .xl\:dark\:table-cell { + display: table-cell; + } + + .theme-dark .xl\:dark\:table-column { + display: table-column; + } + + .theme-dark .xl\:dark\:table-column-group { + display: table-column-group; + } + + .theme-dark .xl\:dark\:table-footer-group { + display: table-footer-group; + } + + .theme-dark .xl\:dark\:table-header-group { + display: table-header-group; + } + + .theme-dark .xl\:dark\:table-row-group { + display: table-row-group; + } + + .theme-dark .xl\:dark\:table-row { + display: table-row; + } + + .theme-dark .xl\:dark\:flow-root { + display: flow-root; + } + + .theme-dark .xl\:dark\:grid { + display: grid; + } + + .theme-dark .xl\:dark\:inline-grid { + display: inline-grid; + } + + .theme-dark .xl\:dark\:hidden { + display: none; + } + + .xl\:flex-row { + flex-direction: row; + } + + .xl\:flex-row-reverse { + flex-direction: row-reverse; + } + + .xl\:flex-col { + flex-direction: column; + } + + .xl\:flex-col-reverse { + flex-direction: column-reverse; + } + + .xl\:flex-wrap { + flex-wrap: wrap; + } + + .xl\:flex-wrap-reverse { + flex-wrap: wrap-reverse; + } + + .xl\:flex-no-wrap { + flex-wrap: nowrap; + } + + .xl\:items-start { + align-items: flex-start; + } + + .xl\:items-end { + align-items: flex-end; + } + + .xl\:items-center { + align-items: center; + } + + .xl\:items-baseline { + align-items: baseline; + } + + .xl\:items-stretch { + align-items: stretch; + } + + .xl\:self-auto { + align-self: auto; + } + + .xl\:self-start { + align-self: flex-start; + } + + .xl\:self-end { + align-self: flex-end; + } + + .xl\:self-center { + align-self: center; + } + + .xl\:self-stretch { + align-self: stretch; + } + + .xl\:justify-start { + justify-content: flex-start; + } + + .xl\:justify-end { + justify-content: flex-end; + } + + .xl\:justify-center { + justify-content: center; + } + + .xl\:justify-between { + justify-content: space-between; + } + + .xl\:justify-around { + justify-content: space-around; + } + + .xl\:justify-evenly { + justify-content: space-evenly; + } + + .xl\:content-center { + align-content: center; + } + + .xl\:content-start { + align-content: flex-start; + } + + .xl\:content-end { + align-content: flex-end; + } + + .xl\:content-between { + align-content: space-between; + } + + .xl\:content-around { + align-content: space-around; + } + + .xl\:flex-1 { + flex: 1 1 0%; + } + + .xl\:flex-auto { + flex: 1 1 auto; + } + + .xl\:flex-initial { + flex: 0 1 auto; + } + + .xl\:flex-none { + flex: none; + } + + .xl\:flex-grow-0 { + flex-grow: 0; + } + + .xl\:flex-grow { + flex-grow: 1; + } + + .xl\:flex-shrink-0 { + flex-shrink: 0; + } + + .xl\:flex-shrink { + flex-shrink: 1; + } + + .xl\:order-1 { + order: 1; + } + + .xl\:order-2 { + order: 2; + } + + .xl\:order-3 { + order: 3; + } + + .xl\:order-4 { + order: 4; + } + + .xl\:order-5 { + order: 5; + } + + .xl\:order-6 { + order: 6; + } + + .xl\:order-7 { + order: 7; + } + + .xl\:order-8 { + order: 8; + } + + .xl\:order-9 { + order: 9; + } + + .xl\:order-10 { + order: 10; + } + + .xl\:order-11 { + order: 11; + } + + .xl\:order-12 { + order: 12; + } + + .xl\:order-first { + order: -9999; + } + + .xl\:order-last { + order: 9999; + } + + .xl\:order-none { + order: 0; + } + + .xl\:float-right { + float: right; + } + + .xl\:float-left { + float: left; + } + + .xl\:float-none { + float: none; + } + + .xl\:clearfix:after { + content: ""; + display: table; + clear: both; + } + + .xl\:clear-left { + clear: left; + } + + .xl\:clear-right { + clear: right; + } + + .xl\:clear-both { + clear: both; + } + + .xl\:clear-none { + clear: none; + } + + .xl\:font-sans { + font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + } + + .xl\:font-serif { + font-family: Georgia, Cambria, "Times New Roman", Times, serif; + } + + .xl\:font-mono { + font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + } + + .xl\:font-hairline { + font-weight: 100; + } + + .xl\:font-thin { + font-weight: 200; + } + + .xl\:font-light { + font-weight: 300; + } + + .xl\:font-normal { + font-weight: 400; + } + + .xl\:font-medium { + font-weight: 500; + } + + .xl\:font-semibold { + font-weight: 600; + } + + .xl\:font-bold { + font-weight: 700; + } + + .xl\:font-extrabold { + font-weight: 800; + } + + .xl\:font-black { + font-weight: 900; + } + + .xl\:hover\:font-hairline:hover { + font-weight: 100; + } + + .xl\:hover\:font-thin:hover { + font-weight: 200; + } + + .xl\:hover\:font-light:hover { + font-weight: 300; + } + + .xl\:hover\:font-normal:hover { + font-weight: 400; + } + + .xl\:hover\:font-medium:hover { + font-weight: 500; + } + + .xl\:hover\:font-semibold:hover { + font-weight: 600; + } + + .xl\:hover\:font-bold:hover { + font-weight: 700; + } + + .xl\:hover\:font-extrabold:hover { + font-weight: 800; + } + + .xl\:hover\:font-black:hover { + font-weight: 900; + } + + .xl\:focus\:font-hairline:focus { + font-weight: 100; + } + + .xl\:focus\:font-thin:focus { + font-weight: 200; + } + + .xl\:focus\:font-light:focus { + font-weight: 300; + } + + .xl\:focus\:font-normal:focus { + font-weight: 400; + } + + .xl\:focus\:font-medium:focus { + font-weight: 500; + } + + .xl\:focus\:font-semibold:focus { + font-weight: 600; + } + + .xl\:focus\:font-bold:focus { + font-weight: 700; + } + + .xl\:focus\:font-extrabold:focus { + font-weight: 800; + } + + .xl\:focus\:font-black:focus { + font-weight: 900; + } + + .xl\:h-0 { + height: 0; + } + + .xl\:h-1 { + height: 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-8 { + height: 2rem; + } + + .xl\:h-10 { + height: 2.5rem; + } + + .xl\:h-12 { + height: 3rem; + } + + .xl\:h-16 { + height: 4rem; + } + + .xl\:h-20 { + height: 5rem; + } + + .xl\:h-24 { + height: 6rem; + } + + .xl\:h-32 { + height: 8rem; + } + + .xl\:h-40 { + height: 10rem; + } + + .xl\:h-48 { + height: 12rem; + } + + .xl\:h-56 { + height: 14rem; + } + + .xl\:h-64 { + height: 16rem; + } + + .xl\:h-auto { + height: auto; + } + + .xl\:h-px { + height: 1px; + } + + .xl\:h-full { + height: 100%; + } + + .xl\:h-screen { + height: 100vh; + } + + .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: 4rem; + } + + .xl\:leading-3 { + line-height: .75rem; + } + + .xl\:leading-4 { + line-height: 1rem; + } + + .xl\:leading-5 { + line-height: 1.25rem; + } + + .xl\:leading-6 { + line-height: 1.5rem; + } + + .xl\:leading-7 { + line-height: 1.75rem; + } + + .xl\:leading-8 { + line-height: 2rem; + } + + .xl\:leading-9 { + line-height: 2.25rem; + } + + .xl\:leading-10 { + line-height: 2.5rem; + } + + .xl\:leading-none { + line-height: 1; + } + + .xl\:leading-tight { + line-height: 1.25; + } + + .xl\:leading-snug { + line-height: 1.375; + } + + .xl\:leading-normal { + line-height: 1.5; + } + + .xl\:leading-relaxed { + line-height: 1.625; + } + + .xl\:leading-loose { + line-height: 2; + } + + .xl\:list-inside { + list-style-position: inside; + } + + .xl\:list-outside { + list-style-position: outside; + } + + .xl\:list-none { + list-style-type: none; + } + + .xl\:list-disc { + list-style-type: disc; + } + + .xl\:list-decimal { + list-style-type: decimal; + } + + .xl\:m-0 { + margin: 0; + } + + .xl\:m-1 { + margin: 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-8 { + margin: 2rem; + } + + .xl\:m-10 { + margin: 2.5rem; + } + + .xl\:m-12 { + margin: 3rem; + } + + .xl\:m-16 { + margin: 4rem; + } + + .xl\:m-20 { + margin: 5rem; + } + + .xl\:m-24 { + margin: 6rem; + } + + .xl\:m-32 { + margin: 8rem; + } + + .xl\:m-40 { + margin: 10rem; + } + + .xl\:m-48 { + margin: 12rem; + } + + .xl\:m-56 { + margin: 14rem; + } + + .xl\:m-64 { + margin: 16rem; + } + + .xl\:m-auto { + margin: auto; + } + + .xl\:m-px { + margin: 1px; + } + + .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-8 { + margin: -2rem; + } + + .xl\:-m-10 { + margin: -2.5rem; + } + + .xl\:-m-12 { + margin: -3rem; + } + + .xl\:-m-16 { + margin: -4rem; + } + + .xl\:-m-20 { + margin: -5rem; + } + + .xl\:-m-24 { + margin: -6rem; + } + + .xl\:-m-32 { + margin: -8rem; + } + + .xl\:-m-40 { + margin: -10rem; + } + + .xl\:-m-48 { + margin: -12rem; + } + + .xl\:-m-56 { + margin: -14rem; + } + + .xl\:-m-64 { + margin: -16rem; + } + + .xl\:-m-px { + margin: -1px; + } + + .xl\:my-0 { + margin-top: 0; + margin-bottom: 0; + } + + .xl\:mx-0 { + margin-left: 0; + margin-right: 0; + } + + .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-8 { + margin-top: 2rem; + margin-bottom: 2rem; + } + + .xl\:mx-8 { + margin-left: 2rem; + margin-right: 2rem; + } + + .xl\:my-10 { + margin-top: 2.5rem; + margin-bottom: 2.5rem; + } + + .xl\:mx-10 { + margin-left: 2.5rem; + margin-right: 2.5rem; + } + + .xl\:my-12 { + margin-top: 3rem; + margin-bottom: 3rem; + } + + .xl\:mx-12 { + margin-left: 3rem; + margin-right: 3rem; + } + + .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-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + + .xl\:mx-32 { + margin-left: 8rem; + margin-right: 8rem; + } + + .xl\:my-40 { + margin-top: 10rem; + margin-bottom: 10rem; + } + + .xl\:mx-40 { + margin-left: 10rem; + margin-right: 10rem; + } + + .xl\:my-48 { + margin-top: 12rem; + margin-bottom: 12rem; + } + + .xl\:mx-48 { + margin-left: 12rem; + margin-right: 12rem; + } + + .xl\:my-56 { + margin-top: 14rem; + margin-bottom: 14rem; + } + + .xl\:mx-56 { + margin-left: 14rem; + margin-right: 14rem; + } + + .xl\:my-64 { + margin-top: 16rem; + margin-bottom: 16rem; + } + + .xl\:mx-64 { + margin-left: 16rem; + margin-right: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + margin-bottom: -2rem; + } + + .xl\:-mx-8 { + margin-left: -2rem; + margin-right: -2rem; + } + + .xl\:-my-10 { + margin-top: -2.5rem; + margin-bottom: -2.5rem; + } + + .xl\:-mx-10 { + margin-left: -2.5rem; + margin-right: -2.5rem; + } + + .xl\:-my-12 { + margin-top: -3rem; + margin-bottom: -3rem; + } + + .xl\:-mx-12 { + margin-left: -3rem; + margin-right: -3rem; + } + + .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-32 { + margin-top: -8rem; + margin-bottom: -8rem; + } + + .xl\:-mx-32 { + margin-left: -8rem; + margin-right: -8rem; + } + + .xl\:-my-40 { + margin-top: -10rem; + margin-bottom: -10rem; + } + + .xl\:-mx-40 { + margin-left: -10rem; + margin-right: -10rem; + } + + .xl\:-my-48 { + margin-top: -12rem; + margin-bottom: -12rem; + } + + .xl\:-mx-48 { + margin-left: -12rem; + margin-right: -12rem; + } + + .xl\:-my-56 { + margin-top: -14rem; + margin-bottom: -14rem; + } + + .xl\:-mx-56 { + margin-left: -14rem; + margin-right: -14rem; + } + + .xl\:-my-64 { + margin-top: -16rem; + margin-bottom: -16rem; + } + + .xl\:-mx-64 { + margin-left: -16rem; + margin-right: -16rem; + } + + .xl\:-my-px { + margin-top: -1px; + margin-bottom: -1px; + } + + .xl\:-mx-px { + margin-left: -1px; + margin-right: -1px; + } + + .xl\:mt-0 { + margin-top: 0; + } + + .xl\:mr-0 { + margin-right: 0; + } + + .xl\:mb-0 { + margin-bottom: 0; + } + + .xl\:ml-0 { + margin-left: 0; + } + + .xl\:mt-1 { + margin-top: 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-8 { + margin-top: 2rem; + } + + .xl\:mr-8 { + margin-right: 2rem; + } + + .xl\:mb-8 { + margin-bottom: 2rem; + } + + .xl\:ml-8 { + margin-left: 2rem; + } + + .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-12 { + margin-top: 3rem; + } + + .xl\:mr-12 { + margin-right: 3rem; + } + + .xl\:mb-12 { + margin-bottom: 3rem; + } + + .xl\:ml-12 { + margin-left: 3rem; + } + + .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-32 { + margin-top: 8rem; + } + + .xl\:mr-32 { + margin-right: 8rem; + } + + .xl\:mb-32 { + margin-bottom: 8rem; + } + + .xl\:ml-32 { + margin-left: 8rem; + } + + .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-48 { + margin-top: 12rem; + } + + .xl\:mr-48 { + margin-right: 12rem; + } + + .xl\:mb-48 { + margin-bottom: 12rem; + } + + .xl\:ml-48 { + margin-left: 12rem; + } + + .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-64 { + margin-top: 16rem; + } + + .xl\:mr-64 { + margin-right: 16rem; + } + + .xl\:mb-64 { + margin-bottom: 16rem; + } + + .xl\:ml-64 { + margin-left: 16rem; + } + + .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-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-8 { + margin-top: -2rem; + } + + .xl\:-mr-8 { + margin-right: -2rem; + } + + .xl\:-mb-8 { + margin-bottom: -2rem; + } + + .xl\:-ml-8 { + margin-left: -2rem; + } + + .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-12 { + margin-top: -3rem; + } + + .xl\:-mr-12 { + margin-right: -3rem; + } + + .xl\:-mb-12 { + margin-bottom: -3rem; + } + + .xl\:-ml-12 { + margin-left: -3rem; + } + + .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-32 { + margin-top: -8rem; + } + + .xl\:-mr-32 { + margin-right: -8rem; + } + + .xl\:-mb-32 { + margin-bottom: -8rem; + } + + .xl\:-ml-32 { + margin-left: -8rem; + } + + .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-48 { + margin-top: -12rem; + } + + .xl\:-mr-48 { + margin-right: -12rem; + } + + .xl\:-mb-48 { + margin-bottom: -12rem; + } + + .xl\:-ml-48 { + margin-left: -12rem; + } + + .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-64 { + margin-top: -16rem; + } + + .xl\:-mr-64 { + margin-right: -16rem; + } + + .xl\:-mb-64 { + margin-bottom: -16rem; + } + + .xl\:-ml-64 { + margin-left: -16rem; + } + + .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\:max-h-0 { + max-height: 0; + } + + .xl\:max-h-full { + max-height: 100%; + } + + .xl\:max-h-screen { + max-height: 100vh; + } + + .xl\:max-h-xl { + max-height: 36rem; + } + + .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-full { + max-width: 100%; + } + + .xl\:max-w-screen-sm { + max-width: 640px; + } + + .xl\:max-w-screen-md { + max-width: 768px; + } + + .xl\:max-w-screen-lg { + max-width: 1024px; + } + + .xl\:max-w-screen-xl { + max-width: 1280px; + } + + .xl\:min-h-0 { + min-height: 0; + } + + .xl\:min-h-full { + min-height: 100%; + } + + .xl\:min-h-screen { + min-height: 100vh; + } + + .xl\:min-w-0 { + min-width: 0; + } + + .xl\:min-w-full { + min-width: 100%; + } + + .xl\:object-contain { + -o-object-fit: contain; + object-fit: contain; + } + + .xl\:object-cover { + -o-object-fit: cover; + object-fit: cover; + } + + .xl\:object-fill { + -o-object-fit: fill; + object-fit: fill; + } + + .xl\:object-none { + -o-object-fit: none; + object-fit: none; + } + + .xl\:object-scale-down { + -o-object-fit: scale-down; + object-fit: scale-down; + } + + .xl\:object-bottom { + -o-object-position: bottom; + object-position: bottom; + } + + .xl\:object-center { + -o-object-position: center; + object-position: center; + } + + .xl\:object-left { + -o-object-position: left; + object-position: left; + } + + .xl\:object-left-bottom { + -o-object-position: left bottom; + object-position: left bottom; + } + + .xl\:object-left-top { + -o-object-position: left top; + object-position: left top; + } + + .xl\:object-right { + -o-object-position: right; + object-position: right; + } + + .xl\:object-right-bottom { + -o-object-position: right bottom; + object-position: right bottom; + } + + .xl\:object-right-top { + -o-object-position: right top; + object-position: right top; + } + + .xl\:object-top { + -o-object-position: top; + object-position: top; + } + + .xl\:opacity-0 { + opacity: 0; + } + + .xl\:opacity-25 { + opacity: 0.25; + } + + .xl\:opacity-50 { + opacity: 0.5; + } + + .xl\:opacity-75 { + opacity: 0.75; + } + + .xl\:opacity-100 { + opacity: 1; + } + + .xl\:hover\:opacity-0:hover { + opacity: 0; + } + + .xl\:hover\:opacity-25:hover { + opacity: 0.25; + } + + .xl\:hover\:opacity-50:hover { + opacity: 0.5; + } + + .xl\:hover\:opacity-75:hover { + opacity: 0.75; + } + + .xl\:hover\:opacity-100:hover { + opacity: 1; + } + + .xl\:focus\:opacity-0:focus { + opacity: 0; + } + + .xl\:focus\:opacity-25:focus { + opacity: 0.25; + } + + .xl\:focus\:opacity-50:focus { + opacity: 0.5; + } + + .xl\:focus\:opacity-75:focus { + opacity: 0.75; + } + + .xl\:focus\:opacity-100:focus { + opacity: 1; + } + + .xl\:outline-none { + outline: 0; + } + + .xl\:focus\:outline-none:focus { + outline: 0; + } + + .xl\:overflow-auto { + overflow: auto; + } + + .xl\:overflow-hidden { + overflow: hidden; + } + + .xl\:overflow-visible { + overflow: visible; + } + + .xl\:overflow-scroll { + overflow: scroll; + } + + .xl\:overflow-x-auto { + overflow-x: auto; + } + + .xl\:overflow-y-auto { + overflow-y: auto; + } + + .xl\:overflow-x-hidden { + overflow-x: hidden; + } + + .xl\:overflow-y-hidden { + overflow-y: hidden; + } + + .xl\:overflow-x-visible { + overflow-x: visible; + } + + .xl\:overflow-y-visible { + overflow-y: visible; + } + + .xl\:overflow-x-scroll { + overflow-x: scroll; + } + + .xl\:overflow-y-scroll { + overflow-y: scroll; + } + + .xl\:scrolling-touch { + -webkit-overflow-scrolling: touch; + } + + .xl\:scrolling-auto { + -webkit-overflow-scrolling: auto; + } + + .xl\:p-0 { + padding: 0; + } + + .xl\:p-1 { + padding: 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-8 { + padding: 2rem; + } + + .xl\:p-10 { + padding: 2.5rem; + } + + .xl\:p-12 { + padding: 3rem; + } + + .xl\:p-16 { + padding: 4rem; + } + + .xl\:p-20 { + padding: 5rem; + } + + .xl\:p-24 { + padding: 6rem; + } + + .xl\:p-32 { + padding: 8rem; + } + + .xl\:p-40 { + padding: 10rem; + } + + .xl\:p-48 { + padding: 12rem; + } + + .xl\:p-56 { + padding: 14rem; + } + + .xl\:p-64 { + padding: 16rem; + } + + .xl\:p-px { + padding: 1px; + } + + .xl\:py-0 { + padding-top: 0; + padding-bottom: 0; + } + + .xl\:px-0 { + padding-left: 0; + padding-right: 0; + } + + .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-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + + .xl\:px-8 { + padding-left: 2rem; + padding-right: 2rem; + } + + .xl\:py-10 { + padding-top: 2.5rem; + padding-bottom: 2.5rem; + } + + .xl\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .xl\:py-12 { + padding-top: 3rem; + padding-bottom: 3rem; + } + + .xl\:px-12 { + padding-left: 3rem; + padding-right: 3rem; + } + + .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-32 { + padding-top: 8rem; + padding-bottom: 8rem; + } + + .xl\:px-32 { + padding-left: 8rem; + padding-right: 8rem; + } + + .xl\:py-40 { + padding-top: 10rem; + padding-bottom: 10rem; + } + + .xl\:px-40 { + padding-left: 10rem; + padding-right: 10rem; + } + + .xl\:py-48 { + padding-top: 12rem; + padding-bottom: 12rem; + } + + .xl\:px-48 { + padding-left: 12rem; + padding-right: 12rem; + } + + .xl\:py-56 { + padding-top: 14rem; + padding-bottom: 14rem; + } + + .xl\:px-56 { + padding-left: 14rem; + padding-right: 14rem; + } + + .xl\:py-64 { + padding-top: 16rem; + padding-bottom: 16rem; + } + + .xl\:px-64 { + padding-left: 16rem; + padding-right: 16rem; + } + + .xl\:py-px { + padding-top: 1px; + padding-bottom: 1px; + } + + .xl\:px-px { + padding-left: 1px; + padding-right: 1px; + } + + .xl\:pt-0 { + padding-top: 0; + } + + .xl\:pr-0 { + padding-right: 0; + } + + .xl\:pb-0 { + padding-bottom: 0; + } + + .xl\:pl-0 { + padding-left: 0; + } + + .xl\:pt-1 { + padding-top: 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-8 { + padding-top: 2rem; + } + + .xl\:pr-8 { + padding-right: 2rem; + } + + .xl\:pb-8 { + padding-bottom: 2rem; + } + + .xl\:pl-8 { + padding-left: 2rem; + } + + .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-12 { + padding-top: 3rem; + } + + .xl\:pr-12 { + padding-right: 3rem; + } + + .xl\:pb-12 { + padding-bottom: 3rem; + } + + .xl\:pl-12 { + padding-left: 3rem; + } + + .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-32 { + padding-top: 8rem; + } + + .xl\:pr-32 { + padding-right: 8rem; + } + + .xl\:pb-32 { + padding-bottom: 8rem; + } + + .xl\:pl-32 { + padding-left: 8rem; + } + + .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-48 { + padding-top: 12rem; + } + + .xl\:pr-48 { + padding-right: 12rem; + } + + .xl\:pb-48 { + padding-bottom: 12rem; + } + + .xl\:pl-48 { + padding-left: 12rem; + } + + .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-64 { + padding-top: 16rem; + } + + .xl\:pr-64 { + padding-right: 16rem; + } + + .xl\:pb-64 { + padding-bottom: 16rem; + } + + .xl\:pl-64 { + padding-left: 16rem; + } + + .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\:placeholder-opacity-0::-moz-placeholder { + --placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-0::placeholder { + --placeholder-opacity: 0; + } + + .xl\:placeholder-opacity-25::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-25::placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:placeholder-opacity-50::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-50::placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:placeholder-opacity-75::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-75::placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:placeholder-opacity-100::-moz-placeholder { + --placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .xl\:placeholder-opacity-100::placeholder { + --placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-0:focus::-moz-placeholder { + --placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus:-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::-ms-input-placeholder { + --placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-0:focus::placeholder { + --placeholder-opacity: 0; + } + + .xl\:focus\:placeholder-opacity-25:focus::-moz-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus:-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::-ms-input-placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-25:focus::placeholder { + --placeholder-opacity: 0.25; + } + + .xl\:focus\:placeholder-opacity-50:focus::-moz-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus:-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::-ms-input-placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-50:focus::placeholder { + --placeholder-opacity: 0.5; + } + + .xl\:focus\:placeholder-opacity-75:focus::-moz-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus:-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::-ms-input-placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-75:focus::placeholder { + --placeholder-opacity: 0.75; + } + + .xl\:focus\:placeholder-opacity-100:focus::-moz-placeholder { + --placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus:-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::-ms-input-placeholder { + --placeholder-opacity: 1; + } + + .xl\:focus\:placeholder-opacity-100:focus::placeholder { + --placeholder-opacity: 1; + } + + .xl\:pointer-events-none { + pointer-events: none; + } + + .xl\:pointer-events-auto { + pointer-events: auto; + } + + .xl\:static { + position: static; + } + + .xl\:fixed { + position: fixed; + } + + .xl\:absolute { + position: absolute; + } + + .xl\:relative { + position: relative; + } + + .xl\:sticky { + position: -webkit-sticky; + position: sticky; + } + + .xl\:inset-0 { + top: 0; + right: 0; + bottom: 0; + left: 0; + } + + .xl\:inset-auto { + top: auto; + right: auto; + bottom: auto; + left: auto; + } + + .xl\:inset-y-0 { + top: 0; + bottom: 0; + } + + .xl\:inset-x-0 { + right: 0; + left: 0; + } + + .xl\:inset-y-auto { + top: auto; + bottom: auto; + } + + .xl\:inset-x-auto { + right: auto; + left: auto; + } + + .xl\:top-0 { + top: 0; + } + + .xl\:right-0 { + right: 0; + } + + .xl\:bottom-0 { + bottom: 0; + } + + .xl\:left-0 { + left: 0; + } + + .xl\:top-auto { + top: auto; + } + + .xl\:right-auto { + right: auto; + } + + .xl\:bottom-auto { + bottom: auto; + } + + .xl\:left-auto { + left: auto; + } + + .xl\:resize-none { + resize: none; + } + + .xl\:resize-y { + resize: vertical; + } + + .xl\:resize-x { + resize: horizontal; + } + + .xl\:resize { + resize: both; + } + + .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-opacity-0 { + --text-opacity: 0; + } + + .xl\:text-opacity-25 { + --text-opacity: 0.25; + } + + .xl\:text-opacity-50 { + --text-opacity: 0.5; + } + + .xl\:text-opacity-75 { + --text-opacity: 0.75; + } + + .xl\:text-opacity-100 { + --text-opacity: 1; + } + + .xl\:hover\:text-opacity-0:hover { + --text-opacity: 0; + } + + .xl\:hover\:text-opacity-25:hover { + --text-opacity: 0.25; + } + + .xl\:hover\:text-opacity-50:hover { + --text-opacity: 0.5; + } + + .xl\:hover\:text-opacity-75:hover { + --text-opacity: 0.75; + } + + .xl\:hover\:text-opacity-100:hover { + --text-opacity: 1; + } + + .xl\:focus\:text-opacity-0:focus { + --text-opacity: 0; + } + + .xl\:focus\:text-opacity-25:focus { + --text-opacity: 0.25; + } + + .xl\:focus\:text-opacity-50:focus { + --text-opacity: 0.5; + } + + .xl\:focus\:text-opacity-75:focus { + --text-opacity: 0.75; + } + + .xl\:focus\:text-opacity-100:focus { + --text-opacity: 1; + } + + .xl\:italic { + font-style: italic; + } + + .xl\:not-italic { + font-style: normal; + } + + .xl\:uppercase { + text-transform: uppercase; + } + + .xl\:lowercase { + text-transform: lowercase; + } + + .xl\:capitalize { + text-transform: capitalize; + } + + .xl\:normal-case { + text-transform: none; + } + + .xl\:underline { + text-decoration: underline; + } + + .xl\:line-through { + text-decoration: line-through; + } + + .xl\:no-underline { + text-decoration: none; + } + + .xl\:hover\:underline:hover { + text-decoration: underline; + } + + .xl\:hover\:line-through:hover { + text-decoration: line-through; + } + + .xl\:hover\:no-underline:hover { + text-decoration: none; + } + + .xl\:focus\:underline:focus { + text-decoration: underline; + } + + .xl\:focus\:line-through:focus { + text-decoration: line-through; + } + + .xl\:focus\:no-underline:focus { + text-decoration: none; + } + + .xl\:antialiased { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + } + + .xl\:subpixel-antialiased { + -webkit-font-smoothing: auto; + -moz-osx-font-smoothing: auto; + } + + .xl\:tracking-tighter { + letter-spacing: -0.05em; + } + + .xl\:tracking-tight { + letter-spacing: -0.025em; + } + + .xl\:tracking-normal { + letter-spacing: 0; + } + + .xl\:tracking-wide { + letter-spacing: 0.025em; + } + + .xl\:tracking-wider { + letter-spacing: 0.05em; + } + + .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-no-wrap { + white-space: nowrap; + } + + .xl\:whitespace-pre { + white-space: pre; + } + + .xl\:whitespace-pre-line { + white-space: pre-line; + } + + .xl\:whitespace-pre-wrap { + white-space: pre-wrap; + } + + .xl\:break-normal { + overflow-wrap: normal; + word-break: normal; + } + + .xl\:break-words { + overflow-wrap: break-word; + } + + .xl\:break-all { + word-break: break-all; + } + + .xl\:truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + + .xl\:w-0 { + width: 0; + } + + .xl\:w-1 { + width: 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-8 { + width: 2rem; + } + + .xl\:w-10 { + width: 2.5rem; + } + + .xl\:w-12 { + width: 3rem; + } + + .xl\:w-16 { + width: 4rem; + } + + .xl\:w-20 { + width: 5rem; + } + + .xl\:w-24 { + width: 6rem; + } + + .xl\:w-32 { + width: 8rem; + } + + .xl\:w-40 { + width: 10rem; + } + + .xl\:w-48 { + width: 12rem; + } + + .xl\:w-56 { + width: 14rem; + } + + .xl\:w-64 { + width: 16rem; + } + + .xl\:w-auto { + width: auto; + } + + .xl\:w-px { + width: 1px; + } + + .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\:gap-0 { + grid-gap: 0; + gap: 0; + } + + .xl\:gap-1 { + grid-gap: 0.25rem; + gap: 0.25rem; + } + + .xl\:gap-2 { + grid-gap: 0.5rem; + gap: 0.5rem; + } + + .xl\:gap-3 { + grid-gap: 0.75rem; + gap: 0.75rem; + } + + .xl\:gap-4 { + grid-gap: 1rem; + gap: 1rem; + } + + .xl\:gap-5 { + grid-gap: 1.25rem; + gap: 1.25rem; + } + + .xl\:gap-6 { + grid-gap: 1.5rem; + gap: 1.5rem; + } + + .xl\:gap-8 { + grid-gap: 2rem; + gap: 2rem; + } + + .xl\:gap-10 { + grid-gap: 2.5rem; + gap: 2.5rem; + } + + .xl\:gap-12 { + grid-gap: 3rem; + gap: 3rem; + } + + .xl\:gap-16 { + grid-gap: 4rem; + gap: 4rem; + } + + .xl\:gap-20 { + grid-gap: 5rem; + gap: 5rem; + } + + .xl\:gap-24 { + grid-gap: 6rem; + gap: 6rem; + } + + .xl\:gap-32 { + grid-gap: 8rem; + gap: 8rem; + } + + .xl\:gap-40 { + grid-gap: 10rem; + gap: 10rem; + } + + .xl\:gap-48 { + grid-gap: 12rem; + gap: 12rem; + } + + .xl\:gap-56 { + grid-gap: 14rem; + gap: 14rem; + } + + .xl\:gap-64 { + grid-gap: 16rem; + gap: 16rem; + } + + .xl\:gap-px { + grid-gap: 1px; + gap: 1px; + } + + .xl\:col-gap-0 { + grid-column-gap: 0; + -moz-column-gap: 0; + column-gap: 0; + } + + .xl\:col-gap-1 { + grid-column-gap: 0.25rem; + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; + } + + .xl\:col-gap-2 { + grid-column-gap: 0.5rem; + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; + } + + .xl\:col-gap-3 { + grid-column-gap: 0.75rem; + -moz-column-gap: 0.75rem; + column-gap: 0.75rem; + } + + .xl\:col-gap-4 { + grid-column-gap: 1rem; + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .xl\:col-gap-5 { + grid-column-gap: 1.25rem; + -moz-column-gap: 1.25rem; + column-gap: 1.25rem; + } + + .xl\:col-gap-6 { + grid-column-gap: 1.5rem; + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; + } + + .xl\:col-gap-8 { + grid-column-gap: 2rem; + -moz-column-gap: 2rem; + column-gap: 2rem; + } + + .xl\:col-gap-10 { + grid-column-gap: 2.5rem; + -moz-column-gap: 2.5rem; + column-gap: 2.5rem; + } + + .xl\:col-gap-12 { + grid-column-gap: 3rem; + -moz-column-gap: 3rem; + column-gap: 3rem; + } + + .xl\:col-gap-16 { + grid-column-gap: 4rem; + -moz-column-gap: 4rem; + column-gap: 4rem; + } + + .xl\:col-gap-20 { + grid-column-gap: 5rem; + -moz-column-gap: 5rem; + column-gap: 5rem; + } + + .xl\:col-gap-24 { + grid-column-gap: 6rem; + -moz-column-gap: 6rem; + column-gap: 6rem; + } + + .xl\:col-gap-32 { + grid-column-gap: 8rem; + -moz-column-gap: 8rem; + column-gap: 8rem; + } + + .xl\:col-gap-40 { + grid-column-gap: 10rem; + -moz-column-gap: 10rem; + column-gap: 10rem; + } + + .xl\:col-gap-48 { + grid-column-gap: 12rem; + -moz-column-gap: 12rem; + column-gap: 12rem; + } + + .xl\:col-gap-56 { + grid-column-gap: 14rem; + -moz-column-gap: 14rem; + column-gap: 14rem; + } + + .xl\:col-gap-64 { + grid-column-gap: 16rem; + -moz-column-gap: 16rem; + column-gap: 16rem; + } + + .xl\:col-gap-px { + grid-column-gap: 1px; + -moz-column-gap: 1px; + column-gap: 1px; + } + + .xl\:row-gap-0 { + grid-row-gap: 0; + row-gap: 0; + } + + .xl\:row-gap-1 { + grid-row-gap: 0.25rem; + row-gap: 0.25rem; + } + + .xl\:row-gap-2 { + grid-row-gap: 0.5rem; + row-gap: 0.5rem; + } + + .xl\:row-gap-3 { + grid-row-gap: 0.75rem; + row-gap: 0.75rem; + } + + .xl\:row-gap-4 { + grid-row-gap: 1rem; + row-gap: 1rem; + } + + .xl\:row-gap-5 { + grid-row-gap: 1.25rem; + row-gap: 1.25rem; + } + + .xl\:row-gap-6 { + grid-row-gap: 1.5rem; + row-gap: 1.5rem; + } + + .xl\:row-gap-8 { + grid-row-gap: 2rem; + row-gap: 2rem; + } + + .xl\:row-gap-10 { + grid-row-gap: 2.5rem; + row-gap: 2.5rem; + } + + .xl\:row-gap-12 { + grid-row-gap: 3rem; + row-gap: 3rem; + } + + .xl\:row-gap-16 { + grid-row-gap: 4rem; + row-gap: 4rem; + } + + .xl\:row-gap-20 { + grid-row-gap: 5rem; + row-gap: 5rem; + } + + .xl\:row-gap-24 { + grid-row-gap: 6rem; + row-gap: 6rem; + } + + .xl\:row-gap-32 { + grid-row-gap: 8rem; + row-gap: 8rem; + } + + .xl\:row-gap-40 { + grid-row-gap: 10rem; + row-gap: 10rem; + } + + .xl\:row-gap-48 { + grid-row-gap: 12rem; + row-gap: 12rem; + } + + .xl\:row-gap-56 { + grid-row-gap: 14rem; + row-gap: 14rem; + } + + .xl\:row-gap-64 { + grid-row-gap: 16rem; + row-gap: 16rem; + } + + .xl\:row-gap-px { + grid-row-gap: 1px; + row-gap: 1px; + } + + .xl\:grid-flow-row { + grid-auto-flow: row; + } + + .xl\:grid-flow-col { + grid-auto-flow: column; + } + + .xl\:grid-flow-row-dense { + grid-auto-flow: row dense; + } + + .xl\:grid-flow-col-dense { + grid-auto-flow: column dense; + } + + .xl\:grid-cols-1 { + grid-template-columns: repeat(1, minmax(0, 1fr)); + } + + .xl\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); + } + + .xl\:grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); + } + + .xl\:grid-cols-4 { + grid-template-columns: repeat(4, minmax(0, 1fr)); + } + + .xl\:grid-cols-5 { + grid-template-columns: repeat(5, minmax(0, 1fr)); + } + + .xl\:grid-cols-6 { + grid-template-columns: repeat(6, minmax(0, 1fr)); + } + + .xl\:grid-cols-7 { + grid-template-columns: repeat(7, minmax(0, 1fr)); + } + + .xl\:grid-cols-8 { + grid-template-columns: repeat(8, minmax(0, 1fr)); + } + + .xl\:grid-cols-9 { + grid-template-columns: repeat(9, minmax(0, 1fr)); + } + + .xl\:grid-cols-10 { + grid-template-columns: repeat(10, minmax(0, 1fr)); + } + + .xl\:grid-cols-11 { + grid-template-columns: repeat(11, minmax(0, 1fr)); + } + + .xl\:grid-cols-12 { + grid-template-columns: repeat(12, minmax(0, 1fr)); + } + + .xl\:grid-cols-none { + grid-template-columns: none; + } + + .xl\:col-auto { + grid-column: auto; + } + + .xl\:col-span-1 { + grid-column: span 1 / span 1; + } + + .xl\:col-span-2 { + grid-column: span 2 / span 2; + } + + .xl\:col-span-3 { + grid-column: span 3 / span 3; + } + + .xl\:col-span-4 { + grid-column: span 4 / span 4; + } + + .xl\:col-span-5 { + grid-column: span 5 / span 5; + } + + .xl\:col-span-6 { + grid-column: span 6 / span 6; + } + + .xl\:col-span-7 { + grid-column: span 7 / span 7; + } + + .xl\:col-span-8 { + grid-column: span 8 / span 8; + } + + .xl\:col-span-9 { + grid-column: span 9 / span 9; + } + + .xl\:col-span-10 { + grid-column: span 10 / span 10; + } + + .xl\:col-span-11 { + grid-column: span 11 / span 11; + } + + .xl\:col-span-12 { + grid-column: span 12 / span 12; + } + + .xl\:col-start-1 { + grid-column-start: 1; + } + + .xl\:col-start-2 { + grid-column-start: 2; + } + + .xl\:col-start-3 { + grid-column-start: 3; + } + + .xl\:col-start-4 { + grid-column-start: 4; + } + + .xl\:col-start-5 { + grid-column-start: 5; + } + + .xl\:col-start-6 { + grid-column-start: 6; + } + + .xl\:col-start-7 { + grid-column-start: 7; + } + + .xl\:col-start-8 { + grid-column-start: 8; + } + + .xl\:col-start-9 { + grid-column-start: 9; + } + + .xl\:col-start-10 { + grid-column-start: 10; + } + + .xl\:col-start-11 { + grid-column-start: 11; + } + + .xl\:col-start-12 { + grid-column-start: 12; + } + + .xl\:col-start-13 { + grid-column-start: 13; + } + + .xl\:col-start-auto { + grid-column-start: auto; + } + + .xl\:col-end-1 { + grid-column-end: 1; + } + + .xl\:col-end-2 { + grid-column-end: 2; + } + + .xl\:col-end-3 { + grid-column-end: 3; + } + + .xl\:col-end-4 { + grid-column-end: 4; + } + + .xl\:col-end-5 { + grid-column-end: 5; + } + + .xl\:col-end-6 { + grid-column-end: 6; + } + + .xl\:col-end-7 { + grid-column-end: 7; + } + + .xl\:col-end-8 { + grid-column-end: 8; + } + + .xl\:col-end-9 { + grid-column-end: 9; + } + + .xl\:col-end-10 { + grid-column-end: 10; + } + + .xl\:col-end-11 { + grid-column-end: 11; + } + + .xl\:col-end-12 { + grid-column-end: 12; + } + + .xl\:col-end-13 { + grid-column-end: 13; + } + + .xl\:col-end-auto { + grid-column-end: auto; + } + + .xl\:grid-rows-1 { + grid-template-rows: repeat(1, minmax(0, 1fr)); + } + + .xl\:grid-rows-2 { + grid-template-rows: repeat(2, minmax(0, 1fr)); + } + + .xl\:grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); + } + + .xl\:grid-rows-4 { + grid-template-rows: repeat(4, minmax(0, 1fr)); + } + + .xl\:grid-rows-5 { + grid-template-rows: repeat(5, minmax(0, 1fr)); + } + + .xl\:grid-rows-6 { + grid-template-rows: repeat(6, minmax(0, 1fr)); + } + + .xl\:grid-rows-none { + grid-template-rows: none; + } + + .xl\:row-auto { + grid-row: auto; + } + + .xl\:row-span-1 { + grid-row: span 1 / span 1; + } + + .xl\:row-span-2 { + grid-row: span 2 / span 2; + } + + .xl\:row-span-3 { + grid-row: span 3 / span 3; + } + + .xl\:row-span-4 { + grid-row: span 4 / span 4; + } + + .xl\:row-span-5 { + grid-row: span 5 / span 5; + } + + .xl\:row-span-6 { + grid-row: span 6 / span 6; + } + + .xl\:row-start-1 { + grid-row-start: 1; + } + + .xl\:row-start-2 { + grid-row-start: 2; + } + + .xl\:row-start-3 { + grid-row-start: 3; + } + + .xl\:row-start-4 { + grid-row-start: 4; + } + + .xl\:row-start-5 { + grid-row-start: 5; + } + + .xl\:row-start-6 { + grid-row-start: 6; + } + + .xl\:row-start-7 { + grid-row-start: 7; + } + + .xl\:row-start-auto { + grid-row-start: auto; + } + + .xl\:row-end-1 { + grid-row-end: 1; + } + + .xl\:row-end-2 { + grid-row-end: 2; + } + + .xl\:row-end-3 { + grid-row-end: 3; + } + + .xl\:row-end-4 { + grid-row-end: 4; + } + + .xl\:row-end-5 { + grid-row-end: 5; + } + + .xl\:row-end-6 { + grid-row-end: 6; + } + + .xl\:row-end-7 { + grid-row-end: 7; + } + + .xl\:row-end-auto { + grid-row-end: auto; + } + + .xl\:transform { + --transform-translate-x: 0; + --transform-translate-y: 0; + --transform-rotate: 0; + --transform-skew-x: 0; + --transform-skew-y: 0; + --transform-scale-x: 1; + --transform-scale-y: 1; + transform: translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y)); + } + + .xl\:transform-none { + transform: none; + } + + .xl\:origin-center { + transform-origin: center; + } + + .xl\:origin-top { + transform-origin: top; + } + + .xl\:origin-top-right { + transform-origin: top right; + } + + .xl\:origin-right { + transform-origin: right; + } + + .xl\:origin-bottom-right { + transform-origin: bottom right; + } + + .xl\:origin-bottom { + transform-origin: bottom; + } + + .xl\:origin-bottom-left { + transform-origin: bottom left; + } + + .xl\:origin-left { + transform-origin: left; + } + + .xl\:origin-top-left { + transform-origin: top left; + } + + .xl\:scale-0 { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .xl\:scale-50 { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .xl\:scale-75 { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .xl\:scale-90 { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .xl\:scale-95 { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .xl\:scale-100 { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .xl\:scale-105 { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .xl\:scale-110 { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .xl\:scale-125 { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .xl\:scale-150 { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .xl\:scale-x-0 { + --transform-scale-x: 0; + } + + .xl\:scale-x-50 { + --transform-scale-x: .5; + } + + .xl\:scale-x-75 { + --transform-scale-x: .75; + } + + .xl\:scale-x-90 { + --transform-scale-x: .9; + } + + .xl\:scale-x-95 { + --transform-scale-x: .95; + } + + .xl\:scale-x-100 { + --transform-scale-x: 1; + } + + .xl\:scale-x-105 { + --transform-scale-x: 1.05; + } + + .xl\:scale-x-110 { + --transform-scale-x: 1.1; + } + + .xl\:scale-x-125 { + --transform-scale-x: 1.25; + } + + .xl\:scale-x-150 { + --transform-scale-x: 1.5; + } + + .xl\:scale-y-0 { + --transform-scale-y: 0; + } + + .xl\:scale-y-50 { + --transform-scale-y: .5; + } + + .xl\:scale-y-75 { + --transform-scale-y: .75; + } + + .xl\:scale-y-90 { + --transform-scale-y: .9; + } + + .xl\:scale-y-95 { + --transform-scale-y: .95; + } + + .xl\:scale-y-100 { + --transform-scale-y: 1; + } + + .xl\:scale-y-105 { + --transform-scale-y: 1.05; + } + + .xl\:scale-y-110 { + --transform-scale-y: 1.1; + } + + .xl\:scale-y-125 { + --transform-scale-y: 1.25; + } + + .xl\:scale-y-150 { + --transform-scale-y: 1.5; + } + + .xl\:hover\:scale-0:hover { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .xl\:hover\:scale-50:hover { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .xl\:hover\:scale-75:hover { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .xl\:hover\:scale-90:hover { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .xl\:hover\:scale-95:hover { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .xl\:hover\:scale-100:hover { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .xl\:hover\:scale-105:hover { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .xl\:hover\:scale-110:hover { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .xl\:hover\:scale-125:hover { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .xl\:hover\:scale-150:hover { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .xl\:hover\:scale-x-0:hover { + --transform-scale-x: 0; + } + + .xl\:hover\:scale-x-50:hover { + --transform-scale-x: .5; + } + + .xl\:hover\:scale-x-75:hover { + --transform-scale-x: .75; + } + + .xl\:hover\:scale-x-90:hover { + --transform-scale-x: .9; + } + + .xl\:hover\:scale-x-95:hover { + --transform-scale-x: .95; + } + + .xl\:hover\:scale-x-100:hover { + --transform-scale-x: 1; + } + + .xl\:hover\:scale-x-105:hover { + --transform-scale-x: 1.05; + } + + .xl\:hover\:scale-x-110:hover { + --transform-scale-x: 1.1; + } + + .xl\:hover\:scale-x-125:hover { + --transform-scale-x: 1.25; + } + + .xl\:hover\:scale-x-150:hover { + --transform-scale-x: 1.5; + } + + .xl\:hover\:scale-y-0:hover { + --transform-scale-y: 0; + } + + .xl\:hover\:scale-y-50:hover { + --transform-scale-y: .5; + } + + .xl\:hover\:scale-y-75:hover { + --transform-scale-y: .75; + } + + .xl\:hover\:scale-y-90:hover { + --transform-scale-y: .9; + } + + .xl\:hover\:scale-y-95:hover { + --transform-scale-y: .95; + } + + .xl\:hover\:scale-y-100:hover { + --transform-scale-y: 1; + } + + .xl\:hover\:scale-y-105:hover { + --transform-scale-y: 1.05; + } + + .xl\:hover\:scale-y-110:hover { + --transform-scale-y: 1.1; + } + + .xl\:hover\:scale-y-125:hover { + --transform-scale-y: 1.25; + } + + .xl\:hover\:scale-y-150:hover { + --transform-scale-y: 1.5; + } + + .xl\:focus\:scale-0:focus { + --transform-scale-x: 0; + --transform-scale-y: 0; + } + + .xl\:focus\:scale-50:focus { + --transform-scale-x: .5; + --transform-scale-y: .5; + } + + .xl\:focus\:scale-75:focus { + --transform-scale-x: .75; + --transform-scale-y: .75; + } + + .xl\:focus\:scale-90:focus { + --transform-scale-x: .9; + --transform-scale-y: .9; + } + + .xl\:focus\:scale-95:focus { + --transform-scale-x: .95; + --transform-scale-y: .95; + } + + .xl\:focus\:scale-100:focus { + --transform-scale-x: 1; + --transform-scale-y: 1; + } + + .xl\:focus\:scale-105:focus { + --transform-scale-x: 1.05; + --transform-scale-y: 1.05; + } + + .xl\:focus\:scale-110:focus { + --transform-scale-x: 1.1; + --transform-scale-y: 1.1; + } + + .xl\:focus\:scale-125:focus { + --transform-scale-x: 1.25; + --transform-scale-y: 1.25; + } + + .xl\:focus\:scale-150:focus { + --transform-scale-x: 1.5; + --transform-scale-y: 1.5; + } + + .xl\:focus\:scale-x-0:focus { + --transform-scale-x: 0; + } + + .xl\:focus\:scale-x-50:focus { + --transform-scale-x: .5; + } + + .xl\:focus\:scale-x-75:focus { + --transform-scale-x: .75; + } + + .xl\:focus\:scale-x-90:focus { + --transform-scale-x: .9; + } + + .xl\:focus\:scale-x-95:focus { + --transform-scale-x: .95; + } + + .xl\:focus\:scale-x-100:focus { + --transform-scale-x: 1; + } + + .xl\:focus\:scale-x-105:focus { + --transform-scale-x: 1.05; + } + + .xl\:focus\:scale-x-110:focus { + --transform-scale-x: 1.1; + } + + .xl\:focus\:scale-x-125:focus { + --transform-scale-x: 1.25; + } + + .xl\:focus\:scale-x-150:focus { + --transform-scale-x: 1.5; + } + + .xl\:focus\:scale-y-0:focus { + --transform-scale-y: 0; + } + + .xl\:focus\:scale-y-50:focus { + --transform-scale-y: .5; + } + + .xl\:focus\:scale-y-75:focus { + --transform-scale-y: .75; + } + + .xl\:focus\:scale-y-90:focus { + --transform-scale-y: .9; + } + + .xl\:focus\:scale-y-95:focus { + --transform-scale-y: .95; + } + + .xl\:focus\:scale-y-100:focus { + --transform-scale-y: 1; + } + + .xl\:focus\:scale-y-105:focus { + --transform-scale-y: 1.05; + } + + .xl\:focus\:scale-y-110:focus { + --transform-scale-y: 1.1; + } + + .xl\:focus\:scale-y-125:focus { + --transform-scale-y: 1.25; + } + + .xl\:focus\:scale-y-150:focus { + --transform-scale-y: 1.5; + } + + .xl\:rotate-0 { + --transform-rotate: 0; + } + + .xl\:rotate-45 { + --transform-rotate: 45deg; + } + + .xl\:rotate-90 { + --transform-rotate: 90deg; + } + + .xl\:rotate-180 { + --transform-rotate: 180deg; + } + + .xl\:-rotate-180 { + --transform-rotate: -180deg; + } + + .xl\:-rotate-90 { + --transform-rotate: -90deg; + } + + .xl\:-rotate-45 { + --transform-rotate: -45deg; + } + + .xl\:hover\:rotate-0:hover { + --transform-rotate: 0; + } + + .xl\:hover\:rotate-45:hover { + --transform-rotate: 45deg; + } + + .xl\:hover\:rotate-90:hover { + --transform-rotate: 90deg; + } + + .xl\:hover\:rotate-180:hover { + --transform-rotate: 180deg; + } + + .xl\:hover\:-rotate-180:hover { + --transform-rotate: -180deg; + } + + .xl\:hover\:-rotate-90:hover { + --transform-rotate: -90deg; + } + + .xl\:hover\:-rotate-45:hover { + --transform-rotate: -45deg; + } + + .xl\:focus\:rotate-0:focus { + --transform-rotate: 0; + } + + .xl\:focus\:rotate-45:focus { + --transform-rotate: 45deg; + } + + .xl\:focus\:rotate-90:focus { + --transform-rotate: 90deg; + } + + .xl\:focus\:rotate-180:focus { + --transform-rotate: 180deg; + } + + .xl\:focus\:-rotate-180:focus { + --transform-rotate: -180deg; + } + + .xl\:focus\:-rotate-90:focus { + --transform-rotate: -90deg; + } + + .xl\:focus\:-rotate-45:focus { + --transform-rotate: -45deg; + } + + .xl\:translate-x-0 { + --transform-translate-x: 0; + } + + .xl\:translate-x-1 { + --transform-translate-x: 0.25rem; + } + + .xl\:translate-x-2 { + --transform-translate-x: 0.5rem; + } + + .xl\:translate-x-3 { + --transform-translate-x: 0.75rem; + } + + .xl\:translate-x-4 { + --transform-translate-x: 1rem; + } + + .xl\:translate-x-5 { + --transform-translate-x: 1.25rem; + } + + .xl\:translate-x-6 { + --transform-translate-x: 1.5rem; + } + + .xl\:translate-x-8 { + --transform-translate-x: 2rem; + } + + .xl\:translate-x-10 { + --transform-translate-x: 2.5rem; + } + + .xl\:translate-x-12 { + --transform-translate-x: 3rem; + } + + .xl\:translate-x-16 { + --transform-translate-x: 4rem; + } + + .xl\:translate-x-20 { + --transform-translate-x: 5rem; + } + + .xl\:translate-x-24 { + --transform-translate-x: 6rem; + } + + .xl\:translate-x-32 { + --transform-translate-x: 8rem; + } + + .xl\:translate-x-40 { + --transform-translate-x: 10rem; + } + + .xl\:translate-x-48 { + --transform-translate-x: 12rem; + } + + .xl\:translate-x-56 { + --transform-translate-x: 14rem; + } + + .xl\:translate-x-64 { + --transform-translate-x: 16rem; + } + + .xl\:translate-x-px { + --transform-translate-x: 1px; + } + + .xl\:-translate-x-1 { + --transform-translate-x: -0.25rem; + } + + .xl\:-translate-x-2 { + --transform-translate-x: -0.5rem; + } + + .xl\:-translate-x-3 { + --transform-translate-x: -0.75rem; + } + + .xl\:-translate-x-4 { + --transform-translate-x: -1rem; + } + + .xl\:-translate-x-5 { + --transform-translate-x: -1.25rem; + } + + .xl\:-translate-x-6 { + --transform-translate-x: -1.5rem; + } + + .xl\:-translate-x-8 { + --transform-translate-x: -2rem; + } + + .xl\:-translate-x-10 { + --transform-translate-x: -2.5rem; + } + + .xl\:-translate-x-12 { + --transform-translate-x: -3rem; + } + + .xl\:-translate-x-16 { + --transform-translate-x: -4rem; + } + + .xl\:-translate-x-20 { + --transform-translate-x: -5rem; + } + + .xl\:-translate-x-24 { + --transform-translate-x: -6rem; + } + + .xl\:-translate-x-32 { + --transform-translate-x: -8rem; + } + + .xl\:-translate-x-40 { + --transform-translate-x: -10rem; + } + + .xl\:-translate-x-48 { + --transform-translate-x: -12rem; + } + + .xl\:-translate-x-56 { + --transform-translate-x: -14rem; + } + + .xl\:-translate-x-64 { + --transform-translate-x: -16rem; + } + + .xl\:-translate-x-px { + --transform-translate-x: -1px; + } + + .xl\:-translate-x-full { + --transform-translate-x: -100%; + } + + .xl\:-translate-x-1\/2 { + --transform-translate-x: -50%; + } + + .xl\:translate-x-1\/2 { + --transform-translate-x: 50%; + } + + .xl\:translate-x-full { + --transform-translate-x: 100%; + } + + .xl\:translate-y-0 { + --transform-translate-y: 0; + } + + .xl\:translate-y-1 { + --transform-translate-y: 0.25rem; + } + + .xl\:translate-y-2 { + --transform-translate-y: 0.5rem; + } + + .xl\:translate-y-3 { + --transform-translate-y: 0.75rem; + } + + .xl\:translate-y-4 { + --transform-translate-y: 1rem; + } + + .xl\:translate-y-5 { + --transform-translate-y: 1.25rem; + } + + .xl\:translate-y-6 { + --transform-translate-y: 1.5rem; + } + + .xl\:translate-y-8 { + --transform-translate-y: 2rem; + } + + .xl\:translate-y-10 { + --transform-translate-y: 2.5rem; + } + + .xl\:translate-y-12 { + --transform-translate-y: 3rem; + } + + .xl\:translate-y-16 { + --transform-translate-y: 4rem; + } + + .xl\:translate-y-20 { + --transform-translate-y: 5rem; + } + + .xl\:translate-y-24 { + --transform-translate-y: 6rem; + } + + .xl\:translate-y-32 { + --transform-translate-y: 8rem; + } + + .xl\:translate-y-40 { + --transform-translate-y: 10rem; + } + + .xl\:translate-y-48 { + --transform-translate-y: 12rem; + } + + .xl\:translate-y-56 { + --transform-translate-y: 14rem; + } + + .xl\:translate-y-64 { + --transform-translate-y: 16rem; + } + + .xl\:translate-y-px { + --transform-translate-y: 1px; + } + + .xl\:-translate-y-1 { + --transform-translate-y: -0.25rem; + } + + .xl\:-translate-y-2 { + --transform-translate-y: -0.5rem; + } + + .xl\:-translate-y-3 { + --transform-translate-y: -0.75rem; + } + + .xl\:-translate-y-4 { + --transform-translate-y: -1rem; + } + + .xl\:-translate-y-5 { + --transform-translate-y: -1.25rem; + } + + .xl\:-translate-y-6 { + --transform-translate-y: -1.5rem; + } + + .xl\:-translate-y-8 { + --transform-translate-y: -2rem; + } + + .xl\:-translate-y-10 { + --transform-translate-y: -2.5rem; + } + + .xl\:-translate-y-12 { + --transform-translate-y: -3rem; + } + + .xl\:-translate-y-16 { + --transform-translate-y: -4rem; + } + + .xl\:-translate-y-20 { + --transform-translate-y: -5rem; + } + + .xl\:-translate-y-24 { + --transform-translate-y: -6rem; + } + + .xl\:-translate-y-32 { + --transform-translate-y: -8rem; + } + + .xl\:-translate-y-40 { + --transform-translate-y: -10rem; + } + + .xl\:-translate-y-48 { + --transform-translate-y: -12rem; + } + + .xl\:-translate-y-56 { + --transform-translate-y: -14rem; + } + + .xl\:-translate-y-64 { + --transform-translate-y: -16rem; + } + + .xl\:-translate-y-px { + --transform-translate-y: -1px; + } + + .xl\:-translate-y-full { + --transform-translate-y: -100%; + } + + .xl\:-translate-y-1\/2 { + --transform-translate-y: -50%; + } + + .xl\:translate-y-1\/2 { + --transform-translate-y: 50%; + } + + .xl\:translate-y-full { + --transform-translate-y: 100%; + } + + .xl\:hover\:translate-x-0:hover { + --transform-translate-x: 0; + } + + .xl\:hover\:translate-x-1:hover { + --transform-translate-x: 0.25rem; + } + + .xl\:hover\:translate-x-2:hover { + --transform-translate-x: 0.5rem; + } + + .xl\:hover\:translate-x-3:hover { + --transform-translate-x: 0.75rem; + } + + .xl\:hover\:translate-x-4:hover { + --transform-translate-x: 1rem; + } + + .xl\:hover\:translate-x-5:hover { + --transform-translate-x: 1.25rem; + } + + .xl\:hover\:translate-x-6:hover { + --transform-translate-x: 1.5rem; + } + + .xl\:hover\:translate-x-8:hover { + --transform-translate-x: 2rem; + } + + .xl\:hover\:translate-x-10:hover { + --transform-translate-x: 2.5rem; + } + + .xl\:hover\:translate-x-12:hover { + --transform-translate-x: 3rem; + } + + .xl\:hover\:translate-x-16:hover { + --transform-translate-x: 4rem; + } + + .xl\:hover\:translate-x-20:hover { + --transform-translate-x: 5rem; + } + + .xl\:hover\:translate-x-24:hover { + --transform-translate-x: 6rem; + } + + .xl\:hover\:translate-x-32:hover { + --transform-translate-x: 8rem; + } + + .xl\:hover\:translate-x-40:hover { + --transform-translate-x: 10rem; + } + + .xl\:hover\:translate-x-48:hover { + --transform-translate-x: 12rem; + } + + .xl\:hover\:translate-x-56:hover { + --transform-translate-x: 14rem; + } + + .xl\:hover\:translate-x-64:hover { + --transform-translate-x: 16rem; + } + + .xl\:hover\:translate-x-px:hover { + --transform-translate-x: 1px; + } + + .xl\:hover\:-translate-x-1:hover { + --transform-translate-x: -0.25rem; + } + + .xl\:hover\:-translate-x-2:hover { + --transform-translate-x: -0.5rem; + } + + .xl\:hover\:-translate-x-3:hover { + --transform-translate-x: -0.75rem; + } + + .xl\:hover\:-translate-x-4:hover { + --transform-translate-x: -1rem; + } + + .xl\:hover\:-translate-x-5:hover { + --transform-translate-x: -1.25rem; + } + + .xl\:hover\:-translate-x-6:hover { + --transform-translate-x: -1.5rem; + } + + .xl\:hover\:-translate-x-8:hover { + --transform-translate-x: -2rem; + } + + .xl\:hover\:-translate-x-10:hover { + --transform-translate-x: -2.5rem; + } + + .xl\:hover\:-translate-x-12:hover { + --transform-translate-x: -3rem; + } + + .xl\:hover\:-translate-x-16:hover { + --transform-translate-x: -4rem; + } + + .xl\:hover\:-translate-x-20:hover { + --transform-translate-x: -5rem; + } + + .xl\:hover\:-translate-x-24:hover { + --transform-translate-x: -6rem; + } + + .xl\:hover\:-translate-x-32:hover { + --transform-translate-x: -8rem; + } + + .xl\:hover\:-translate-x-40:hover { + --transform-translate-x: -10rem; + } + + .xl\:hover\:-translate-x-48:hover { + --transform-translate-x: -12rem; + } + + .xl\:hover\:-translate-x-56:hover { + --transform-translate-x: -14rem; + } + + .xl\:hover\:-translate-x-64:hover { + --transform-translate-x: -16rem; + } + + .xl\:hover\:-translate-x-px:hover { + --transform-translate-x: -1px; + } + + .xl\:hover\:-translate-x-full:hover { + --transform-translate-x: -100%; + } + + .xl\:hover\:-translate-x-1\/2:hover { + --transform-translate-x: -50%; + } + + .xl\:hover\:translate-x-1\/2:hover { + --transform-translate-x: 50%; + } + + .xl\:hover\:translate-x-full:hover { + --transform-translate-x: 100%; + } + + .xl\:hover\:translate-y-0:hover { + --transform-translate-y: 0; + } + + .xl\:hover\:translate-y-1:hover { + --transform-translate-y: 0.25rem; + } + + .xl\:hover\:translate-y-2:hover { + --transform-translate-y: 0.5rem; + } + + .xl\:hover\:translate-y-3:hover { + --transform-translate-y: 0.75rem; + } + + .xl\:hover\:translate-y-4:hover { + --transform-translate-y: 1rem; + } + + .xl\:hover\:translate-y-5:hover { + --transform-translate-y: 1.25rem; + } + + .xl\:hover\:translate-y-6:hover { + --transform-translate-y: 1.5rem; + } + + .xl\:hover\:translate-y-8:hover { + --transform-translate-y: 2rem; + } + + .xl\:hover\:translate-y-10:hover { + --transform-translate-y: 2.5rem; + } + + .xl\:hover\:translate-y-12:hover { + --transform-translate-y: 3rem; + } + + .xl\:hover\:translate-y-16:hover { + --transform-translate-y: 4rem; + } + + .xl\:hover\:translate-y-20:hover { + --transform-translate-y: 5rem; + } + + .xl\:hover\:translate-y-24:hover { + --transform-translate-y: 6rem; + } + + .xl\:hover\:translate-y-32:hover { + --transform-translate-y: 8rem; + } + + .xl\:hover\:translate-y-40:hover { + --transform-translate-y: 10rem; + } + + .xl\:hover\:translate-y-48:hover { + --transform-translate-y: 12rem; + } + + .xl\:hover\:translate-y-56:hover { + --transform-translate-y: 14rem; + } + + .xl\:hover\:translate-y-64:hover { + --transform-translate-y: 16rem; + } + + .xl\:hover\:translate-y-px:hover { + --transform-translate-y: 1px; + } + + .xl\:hover\:-translate-y-1:hover { + --transform-translate-y: -0.25rem; + } + + .xl\:hover\:-translate-y-2:hover { + --transform-translate-y: -0.5rem; + } + + .xl\:hover\:-translate-y-3:hover { + --transform-translate-y: -0.75rem; + } + + .xl\:hover\:-translate-y-4:hover { + --transform-translate-y: -1rem; + } + + .xl\:hover\:-translate-y-5:hover { + --transform-translate-y: -1.25rem; + } + + .xl\:hover\:-translate-y-6:hover { + --transform-translate-y: -1.5rem; + } + + .xl\:hover\:-translate-y-8:hover { + --transform-translate-y: -2rem; + } + + .xl\:hover\:-translate-y-10:hover { + --transform-translate-y: -2.5rem; + } + + .xl\:hover\:-translate-y-12:hover { + --transform-translate-y: -3rem; + } + + .xl\:hover\:-translate-y-16:hover { + --transform-translate-y: -4rem; + } + + .xl\:hover\:-translate-y-20:hover { + --transform-translate-y: -5rem; + } + + .xl\:hover\:-translate-y-24:hover { + --transform-translate-y: -6rem; + } + + .xl\:hover\:-translate-y-32:hover { + --transform-translate-y: -8rem; + } + + .xl\:hover\:-translate-y-40:hover { + --transform-translate-y: -10rem; + } + + .xl\:hover\:-translate-y-48:hover { + --transform-translate-y: -12rem; + } + + .xl\:hover\:-translate-y-56:hover { + --transform-translate-y: -14rem; + } + + .xl\:hover\:-translate-y-64:hover { + --transform-translate-y: -16rem; + } + + .xl\:hover\:-translate-y-px:hover { + --transform-translate-y: -1px; + } + + .xl\:hover\:-translate-y-full:hover { + --transform-translate-y: -100%; + } + + .xl\:hover\:-translate-y-1\/2:hover { + --transform-translate-y: -50%; + } + + .xl\:hover\:translate-y-1\/2:hover { + --transform-translate-y: 50%; + } + + .xl\:hover\:translate-y-full:hover { + --transform-translate-y: 100%; + } + + .xl\:focus\:translate-x-0:focus { + --transform-translate-x: 0; + } + + .xl\:focus\:translate-x-1:focus { + --transform-translate-x: 0.25rem; + } + + .xl\:focus\:translate-x-2:focus { + --transform-translate-x: 0.5rem; + } + + .xl\:focus\:translate-x-3:focus { + --transform-translate-x: 0.75rem; + } + + .xl\:focus\:translate-x-4:focus { + --transform-translate-x: 1rem; + } + + .xl\:focus\:translate-x-5:focus { + --transform-translate-x: 1.25rem; + } + + .xl\:focus\:translate-x-6:focus { + --transform-translate-x: 1.5rem; + } + + .xl\:focus\:translate-x-8:focus { + --transform-translate-x: 2rem; + } + + .xl\:focus\:translate-x-10:focus { + --transform-translate-x: 2.5rem; + } + + .xl\:focus\:translate-x-12:focus { + --transform-translate-x: 3rem; + } + + .xl\:focus\:translate-x-16:focus { + --transform-translate-x: 4rem; + } + + .xl\:focus\:translate-x-20:focus { + --transform-translate-x: 5rem; + } + + .xl\:focus\:translate-x-24:focus { + --transform-translate-x: 6rem; + } + + .xl\:focus\:translate-x-32:focus { + --transform-translate-x: 8rem; + } + + .xl\:focus\:translate-x-40:focus { + --transform-translate-x: 10rem; + } + + .xl\:focus\:translate-x-48:focus { + --transform-translate-x: 12rem; + } + + .xl\:focus\:translate-x-56:focus { + --transform-translate-x: 14rem; + } + + .xl\:focus\:translate-x-64:focus { + --transform-translate-x: 16rem; + } + + .xl\:focus\:translate-x-px:focus { + --transform-translate-x: 1px; + } + + .xl\:focus\:-translate-x-1:focus { + --transform-translate-x: -0.25rem; + } + + .xl\:focus\:-translate-x-2:focus { + --transform-translate-x: -0.5rem; + } + + .xl\:focus\:-translate-x-3:focus { + --transform-translate-x: -0.75rem; + } + + .xl\:focus\:-translate-x-4:focus { + --transform-translate-x: -1rem; + } + + .xl\:focus\:-translate-x-5:focus { + --transform-translate-x: -1.25rem; + } + + .xl\:focus\:-translate-x-6:focus { + --transform-translate-x: -1.5rem; + } + + .xl\:focus\:-translate-x-8:focus { + --transform-translate-x: -2rem; + } + + .xl\:focus\:-translate-x-10:focus { + --transform-translate-x: -2.5rem; + } + + .xl\:focus\:-translate-x-12:focus { + --transform-translate-x: -3rem; + } + + .xl\:focus\:-translate-x-16:focus { + --transform-translate-x: -4rem; + } + + .xl\:focus\:-translate-x-20:focus { + --transform-translate-x: -5rem; + } + + .xl\:focus\:-translate-x-24:focus { + --transform-translate-x: -6rem; + } + + .xl\:focus\:-translate-x-32:focus { + --transform-translate-x: -8rem; + } + + .xl\:focus\:-translate-x-40:focus { + --transform-translate-x: -10rem; + } + + .xl\:focus\:-translate-x-48:focus { + --transform-translate-x: -12rem; + } + + .xl\:focus\:-translate-x-56:focus { + --transform-translate-x: -14rem; + } + + .xl\:focus\:-translate-x-64:focus { + --transform-translate-x: -16rem; + } + + .xl\:focus\:-translate-x-px:focus { + --transform-translate-x: -1px; + } + + .xl\:focus\:-translate-x-full:focus { + --transform-translate-x: -100%; + } + + .xl\:focus\:-translate-x-1\/2:focus { + --transform-translate-x: -50%; + } + + .xl\:focus\:translate-x-1\/2:focus { + --transform-translate-x: 50%; + } + + .xl\:focus\:translate-x-full:focus { + --transform-translate-x: 100%; + } + + .xl\:focus\:translate-y-0:focus { + --transform-translate-y: 0; + } + + .xl\:focus\:translate-y-1:focus { + --transform-translate-y: 0.25rem; + } + + .xl\:focus\:translate-y-2:focus { + --transform-translate-y: 0.5rem; + } + + .xl\:focus\:translate-y-3:focus { + --transform-translate-y: 0.75rem; + } + + .xl\:focus\:translate-y-4:focus { + --transform-translate-y: 1rem; + } + + .xl\:focus\:translate-y-5:focus { + --transform-translate-y: 1.25rem; + } + + .xl\:focus\:translate-y-6:focus { + --transform-translate-y: 1.5rem; + } + + .xl\:focus\:translate-y-8:focus { + --transform-translate-y: 2rem; + } + + .xl\:focus\:translate-y-10:focus { + --transform-translate-y: 2.5rem; + } + + .xl\:focus\:translate-y-12:focus { + --transform-translate-y: 3rem; + } + + .xl\:focus\:translate-y-16:focus { + --transform-translate-y: 4rem; + } + + .xl\:focus\:translate-y-20:focus { + --transform-translate-y: 5rem; + } + + .xl\:focus\:translate-y-24:focus { + --transform-translate-y: 6rem; + } + + .xl\:focus\:translate-y-32:focus { + --transform-translate-y: 8rem; + } + + .xl\:focus\:translate-y-40:focus { + --transform-translate-y: 10rem; + } + + .xl\:focus\:translate-y-48:focus { + --transform-translate-y: 12rem; + } + + .xl\:focus\:translate-y-56:focus { + --transform-translate-y: 14rem; + } + + .xl\:focus\:translate-y-64:focus { + --transform-translate-y: 16rem; + } + + .xl\:focus\:translate-y-px:focus { + --transform-translate-y: 1px; + } + + .xl\:focus\:-translate-y-1:focus { + --transform-translate-y: -0.25rem; + } + + .xl\:focus\:-translate-y-2:focus { + --transform-translate-y: -0.5rem; + } + + .xl\:focus\:-translate-y-3:focus { + --transform-translate-y: -0.75rem; + } + + .xl\:focus\:-translate-y-4:focus { + --transform-translate-y: -1rem; + } + + .xl\:focus\:-translate-y-5:focus { + --transform-translate-y: -1.25rem; + } + + .xl\:focus\:-translate-y-6:focus { + --transform-translate-y: -1.5rem; + } + + .xl\:focus\:-translate-y-8:focus { + --transform-translate-y: -2rem; + } + + .xl\:focus\:-translate-y-10:focus { + --transform-translate-y: -2.5rem; + } + + .xl\:focus\:-translate-y-12:focus { + --transform-translate-y: -3rem; + } + + .xl\:focus\:-translate-y-16:focus { + --transform-translate-y: -4rem; + } + + .xl\:focus\:-translate-y-20:focus { + --transform-translate-y: -5rem; + } + + .xl\:focus\:-translate-y-24:focus { + --transform-translate-y: -6rem; + } + + .xl\:focus\:-translate-y-32:focus { + --transform-translate-y: -8rem; + } + + .xl\:focus\:-translate-y-40:focus { + --transform-translate-y: -10rem; + } + + .xl\:focus\:-translate-y-48:focus { + --transform-translate-y: -12rem; + } + + .xl\:focus\:-translate-y-56:focus { + --transform-translate-y: -14rem; + } + + .xl\:focus\:-translate-y-64:focus { + --transform-translate-y: -16rem; + } + + .xl\:focus\:-translate-y-px:focus { + --transform-translate-y: -1px; + } + + .xl\:focus\:-translate-y-full:focus { + --transform-translate-y: -100%; + } + + .xl\:focus\:-translate-y-1\/2:focus { + --transform-translate-y: -50%; + } + + .xl\:focus\:translate-y-1\/2:focus { + --transform-translate-y: 50%; + } + + .xl\:focus\:translate-y-full:focus { + --transform-translate-y: 100%; + } + + .xl\:skew-x-0 { + --transform-skew-x: 0; + } + + .xl\:skew-x-3 { + --transform-skew-x: 3deg; + } + + .xl\:skew-x-6 { + --transform-skew-x: 6deg; + } + + .xl\:skew-x-12 { + --transform-skew-x: 12deg; + } + + .xl\:-skew-x-12 { + --transform-skew-x: -12deg; + } + + .xl\:-skew-x-6 { + --transform-skew-x: -6deg; + } + + .xl\:-skew-x-3 { + --transform-skew-x: -3deg; + } + + .xl\:skew-y-0 { + --transform-skew-y: 0; + } + + .xl\:skew-y-3 { + --transform-skew-y: 3deg; + } + + .xl\:skew-y-6 { + --transform-skew-y: 6deg; + } + + .xl\:skew-y-12 { + --transform-skew-y: 12deg; + } + + .xl\:-skew-y-12 { + --transform-skew-y: -12deg; + } + + .xl\:-skew-y-6 { + --transform-skew-y: -6deg; + } + + .xl\:-skew-y-3 { + --transform-skew-y: -3deg; + } + + .xl\:hover\:skew-x-0:hover { + --transform-skew-x: 0; + } + + .xl\:hover\:skew-x-3:hover { + --transform-skew-x: 3deg; + } + + .xl\:hover\:skew-x-6:hover { + --transform-skew-x: 6deg; + } + + .xl\:hover\:skew-x-12:hover { + --transform-skew-x: 12deg; + } + + .xl\:hover\:-skew-x-12:hover { + --transform-skew-x: -12deg; + } + + .xl\:hover\:-skew-x-6:hover { + --transform-skew-x: -6deg; + } + + .xl\:hover\:-skew-x-3:hover { + --transform-skew-x: -3deg; + } + + .xl\:hover\:skew-y-0:hover { + --transform-skew-y: 0; + } + + .xl\:hover\:skew-y-3:hover { + --transform-skew-y: 3deg; + } + + .xl\:hover\:skew-y-6:hover { + --transform-skew-y: 6deg; + } + + .xl\:hover\:skew-y-12:hover { + --transform-skew-y: 12deg; + } + + .xl\:hover\:-skew-y-12:hover { + --transform-skew-y: -12deg; + } + + .xl\:hover\:-skew-y-6:hover { + --transform-skew-y: -6deg; + } + + .xl\:hover\:-skew-y-3:hover { + --transform-skew-y: -3deg; + } + + .xl\:focus\:skew-x-0:focus { + --transform-skew-x: 0; + } + + .xl\:focus\:skew-x-3:focus { + --transform-skew-x: 3deg; + } + + .xl\:focus\:skew-x-6:focus { + --transform-skew-x: 6deg; + } + + .xl\:focus\:skew-x-12:focus { + --transform-skew-x: 12deg; + } + + .xl\:focus\:-skew-x-12:focus { + --transform-skew-x: -12deg; + } + + .xl\:focus\:-skew-x-6:focus { + --transform-skew-x: -6deg; + } + + .xl\:focus\:-skew-x-3:focus { + --transform-skew-x: -3deg; + } + + .xl\:focus\:skew-y-0:focus { + --transform-skew-y: 0; + } + + .xl\:focus\:skew-y-3:focus { + --transform-skew-y: 3deg; + } + + .xl\:focus\:skew-y-6:focus { + --transform-skew-y: 6deg; + } + + .xl\:focus\:skew-y-12:focus { + --transform-skew-y: 12deg; + } + + .xl\:focus\:-skew-y-12:focus { + --transform-skew-y: -12deg; + } + + .xl\:focus\:-skew-y-6:focus { + --transform-skew-y: -6deg; + } + + .xl\:focus\:-skew-y-3:focus { + --transform-skew-y: -3deg; + } + + .xl\:transition-none { + transition-property: none; + } + + .xl\:transition-all { + transition-property: all; + } + + .xl\:transition { + transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform; + } + + .xl\:transition-colors { + transition-property: background-color, border-color, color, fill, stroke; + } + + .xl\:transition-opacity { + transition-property: opacity; + } + + .xl\:transition-shadow { + transition-property: box-shadow; + } + + .xl\:transition-transform { + transition-property: transform; + } + + .xl\:ease-linear { + transition-timing-function: linear; + } + + .xl\:ease-in { + transition-timing-function: cubic-bezier(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; + } +} diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 00000000..6cb7b942 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,233 @@ +const defaultTheme = require('tailwindcss/defaultTheme') +const plugin = require('tailwindcss/plugin') +const Color = require('color') + +module.exports = { + purge: { + content: [ + 'public/**/*.html', + 'app/templates/**/*.html', + 'static/**/*.js', + ], + // Safelist classes used dynamically in Alpine.js expressions + safelist: [ + 'bg-orange-600', + 'bg-green-600', + 'bg-red-600', + 'hover:bg-orange-700', + 'hover:bg-green-700', + 'hover:bg-red-700', + ], + }, + theme: { + themeVariants: ['dark'], + customForms: (theme) => ({ + default: { + 'input, textarea': { + '&::placeholder': { + color: theme('colors.gray.400'), + }, + }, + }, + }), + colors: { + transparent: 'transparent', + white: '#ffffff', + black: '#000000', + gray: { + '50': '#f9fafb', + '100': '#f4f5f7', + '200': '#e5e7eb', + '300': '#d5d6d7', + '400': '#9e9e9e', + '500': '#707275', + '600': '#4c4f52', + '700': '#24262d', + '800': '#1a1c23', + '900': '#121317', + // default values from Tailwind UI palette + // '300': '#d2d6dc', + // '400': '#9fa6b2', + // '500': '#6b7280', + // '600': '#4b5563', + // '700': '#374151', + // '800': '#252f3f', + // '900': '#161e2e', + }, + 'cool-gray': { + '50': '#fbfdfe', + '100': '#f1f5f9', + '200': '#e2e8f0', + '300': '#cfd8e3', + '400': '#97a6ba', + '500': '#64748b', + '600': '#475569', + '700': '#364152', + '800': '#27303f', + '900': '#1a202e', + }, + red: { + '50': '#fdf2f2', + '100': '#fde8e8', + '200': '#fbd5d5', + '300': '#f8b4b4', + '400': '#f98080', + '500': '#f05252', + '600': '#e02424', + '700': '#c81e1e', + '800': '#9b1c1c', + '900': '#771d1d', + }, + orange: { + '50': '#fff8f1', + '100': '#feecdc', + '200': '#fcd9bd', + '300': '#fdba8c', + '400': '#ff8a4c', + '500': '#ff5a1f', + '600': '#d03801', + '700': '#b43403', + '800': '#8a2c0d', + '900': '#771d1d', + }, + yellow: { + '50': '#fdfdea', + '100': '#fdf6b2', + '200': '#fce96a', + '300': '#faca15', + '400': '#e3a008', + '500': '#c27803', + '600': '#9f580a', + '700': '#8e4b10', + '800': '#723b13', + '900': '#633112', + }, + green: { + '50': '#f3faf7', + '100': '#def7ec', + '200': '#bcf0da', + '300': '#84e1bc', + '400': '#31c48d', + '500': '#0e9f6e', + '600': '#057a55', + '700': '#046c4e', + '800': '#03543f', + '900': '#014737', + }, + teal: { + '50': '#edfafa', + '100': '#d5f5f6', + '200': '#afecef', + '300': '#7edce2', + '400': '#16bdca', + '500': '#0694a2', + '600': '#047481', + '700': '#036672', + '800': '#05505c', + '900': '#014451', + }, + blue: { + '50': '#ebf5ff', + '100': '#e1effe', + '200': '#c3ddfd', + '300': '#a4cafe', + '400': '#76a9fa', + '500': '#3f83f8', + '600': '#1c64f2', + '700': '#1a56db', + '800': '#1e429f', + '900': '#233876', + }, + indigo: { + '50': '#f0f5ff', + '100': '#e5edff', + '200': '#cddbfe', + '300': '#b4c6fc', + '400': '#8da2fb', + '500': '#6875f5', + '600': '#5850ec', + '700': '#5145cd', + '800': '#42389d', + '900': '#362f78', + }, + purple: { + '50': '#f6f5ff', + '100': '#edebfe', + '200': '#dcd7fe', + '300': '#cabffd', + '400': '#ac94fa', + '500': '#9061f9', + '600': '#7e3af2', + '700': '#6c2bd9', + '800': '#5521b5', + '900': '#4a1d96', + }, + pink: { + '50': '#fdf2f8', + '100': '#fce8f3', + '200': '#fad1e8', + '300': '#f8b4d9', + '400': '#f17eb8', + '500': '#e74694', + '600': '#d61f69', + '700': '#bf125d', + '800': '#99154b', + '900': '#751a3d', + }, + }, + extend: { + maxHeight: { + '0': '0', + xl: '36rem', + }, + fontFamily: { + sans: ['Inter', ...defaultTheme.fontFamily.sans], + }, + }, + }, + variants: { + backgroundColor: [ + 'hover', + 'focus', + 'active', + 'odd', + 'dark', + 'dark:hover', + 'dark:focus', + 'dark:active', + 'dark:odd', + ], + display: ['responsive', 'dark'], + textColor: [ + 'focus-within', + 'hover', + 'active', + 'dark', + 'dark:focus-within', + 'dark:hover', + 'dark:active', + ], + placeholderColor: ['focus', 'dark', 'dark:focus'], + borderColor: ['focus', 'hover', 'dark', 'dark:focus', 'dark:hover'], + divideColor: ['dark'], + boxShadow: ['focus', 'dark:focus'], + }, + plugins: [ + require('tailwindcss-multi-theme'), + require('@tailwindcss/custom-forms'), + plugin(({ addUtilities, e, theme, variants }) => { + const newUtilities = {} + Object.entries(theme('colors')).map(([name, value]) => { + if (name === 'transparent' || name === 'current') return + const color = value[300] ? value[300] : value + const hsla = Color(color).alpha(0.45).hsl().string() + + newUtilities[`.shadow-outline-${name}`] = { + 'box-shadow': `0 0 0 3px ${hsla}`, + } + }) + + addUtilities(newUtilities, variants('boxShadow')) + }), + ], +}