From 6628eb00ca7c8563ffbf429b55789dd7b8972948 Mon Sep 17 00:00:00 2001 From: Robin Malfait Date: Wed, 5 May 2021 15:23:32 +0200 Subject: [PATCH] Improve `matchUtilities` API and make it work with the AOT engine (#4232) * implement matchUtilities2 * ensure animation names without keyframes are not prefixed * remove matchBase * call addUtilities for each group individually * WIP: Write plugins using matchUtilities2 * MORE * Fix arbitrary value support for fontSize * Fixes, update fixtures * Rebuild fixtures * Don't generate `divide` class with no modifier * Fixes, rebuild fixtures * Rename matchUtilities2 to matchUtilities * Delete bad tests * Remove temp files GROSS * Clean stuff up * Support no return in matchUtilities Co-authored-by: Adam Wathan --- src/jit/lib/generateRules.js | 7 +- src/jit/lib/setupContext.js | 69 +- src/plugins/animation.js | 79 +- src/plugins/backdropBlur.js | 46 +- src/plugins/backdropBrightness.js | 46 +- src/plugins/backdropContrast.js | 48 +- src/plugins/backdropGrayscale.js | 46 +- src/plugins/backdropHueRotate.js | 48 +- src/plugins/backdropInvert.js | 48 +- src/plugins/backdropOpacity.js | 48 +- src/plugins/backdropSaturate.js | 48 +- src/plugins/backdropSepia.js | 48 +- src/plugins/backgroundColor.js | 57 +- src/plugins/blur.js | 44 +- src/plugins/borderColor.js | 61 +- src/plugins/boxShadow.js | 72 +- src/plugins/brightness.js | 46 +- src/plugins/contrast.js | 42 +- src/plugins/divideColor.js | 65 +- src/plugins/divideOpacity.js | 42 +- src/plugins/divideWidth.js | 84 +- src/plugins/fill.js | 40 +- src/plugins/fontSize.js | 84 +- src/plugins/gradientColorStops.js | 118 +- src/plugins/grayscale.js | 46 +- src/plugins/hueRotate.js | 46 +- src/plugins/inset.js | 149 +- src/plugins/invert.js | 46 +- src/plugins/outline.js | 46 +- src/plugins/placeholderColor.js | 53 +- src/plugins/placeholderOpacity.js | 46 +- src/plugins/ringColor.js | 64 +- src/plugins/ringOffsetColor.js | 45 +- src/plugins/ringWidth.js | 120 +- src/plugins/saturate.js | 44 +- src/plugins/sepia.js | 42 +- src/plugins/space.js | 82 +- src/plugins/stroke.js | 40 +- src/plugins/textColor.js | 59 +- src/plugins/transitionProperty.js | 65 +- src/util/createUtilityPlugin.js | 89 +- src/util/pluginUtils.js | 25 +- src/util/processPlugins.js | 29 +- tests/fixtures/tailwind-output-flagged.css | 35636 ++++++++-------- tests/fixtures/tailwind-output-important.css | 35636 ++++++++-------- .../tailwind-output-no-color-opacity.css | 35636 ++++++++-------- tests/fixtures/tailwind-output.css | 35636 ++++++++-------- tests/jit/arbitrary-values.test.css | 9 + tests/jit/arbitrary-values.test.html | 3 + tests/jit/prefix.test.css | 13 +- tests/jit/prefix.test.html | 2 + tests/jit/prefix.test.js | 10 +- tests/plugins/animation.test.js | 14 +- tests/plugins/backgroundColor.test.js | 28 - tests/plugins/borderColor.test.js | 28 - tests/plugins/boxShadow.test.js | 79 - tests/plugins/divideColor.test.js | 28 - tests/plugins/divideWidth.test.js | 74 - tests/plugins/fill.test.js | 28 - tests/plugins/fontSize.test.js | 77 +- tests/plugins/letterSpacing.test.js | 53 - tests/plugins/placeholderColor.test.js | 28 - tests/plugins/ringColor.test.js | 29 - tests/plugins/ringOffsetColor.test.js | 28 - tests/plugins/ringWidth.test.js | 149 - tests/plugins/space.test.js | 96 - tests/plugins/stroke.test.js | 28 - tests/plugins/textColor.test.js | 28 - tests/plugins/zIndex.test.js | 57 - tests/processPlugins.test.js | 16 +- 70 files changed, 72355 insertions(+), 73566 deletions(-) delete mode 100644 tests/plugins/backgroundColor.test.js delete mode 100644 tests/plugins/borderColor.test.js delete mode 100644 tests/plugins/boxShadow.test.js delete mode 100644 tests/plugins/divideColor.test.js delete mode 100644 tests/plugins/divideWidth.test.js delete mode 100644 tests/plugins/fill.test.js delete mode 100644 tests/plugins/letterSpacing.test.js delete mode 100644 tests/plugins/placeholderColor.test.js delete mode 100644 tests/plugins/ringColor.test.js delete mode 100644 tests/plugins/ringOffsetColor.test.js delete mode 100644 tests/plugins/ringWidth.test.js delete mode 100644 tests/plugins/space.test.js delete mode 100644 tests/plugins/stroke.test.js delete mode 100644 tests/plugins/textColor.test.js delete mode 100644 tests/plugins/zIndex.test.js diff --git a/src/jit/lib/generateRules.js b/src/jit/lib/generateRules.js index 43bfd6c67e26..79b701ab34a1 100644 --- a/src/jit/lib/generateRules.js +++ b/src/jit/lib/generateRules.js @@ -215,17 +215,12 @@ function* resolveMatches(candidate, context) { // } for (let matchedPlugins of resolveMatchedPlugins(classCandidate, context)) { - let pluginHelpers = { - candidate: classCandidate, - theme: context.tailwindConfig.theme, - } - let matches = [] let [plugins, modifier] = matchedPlugins for (let [sort, plugin] of plugins) { if (typeof plugin === 'function') { - for (let ruleSet of [].concat(plugin(modifier, pluginHelpers))) { + for (let ruleSet of [].concat(plugin(modifier))) { let [rules, options] = parseRules(ruleSet, context.postCssNodeCache) for (let rule of rules) { matches.push([{ ...sort, options: { ...sort.options, ...options } }, rule]) diff --git a/src/jit/lib/setupContext.js b/src/jit/lib/setupContext.js index f8bf1c614058..5b7bd2601606 100644 --- a/src/jit/lib/setupContext.js +++ b/src/jit/lib/setupContext.js @@ -22,6 +22,9 @@ import corePlugins from '../corePlugins' import isPlainObject from '../../util/isPlainObject' import escapeClassName from '../../util/escapeClassName' +import nameClass from '../../util/nameClass' +import { coerceValue } from '../../util/pluginUtils' + import * as sharedState from './sharedState' let contextMap = sharedState.contextMap @@ -513,36 +516,7 @@ function buildPluginApi(tailwindConfig, context, { variantList, variantMap, offs .push([{ sort: offset, layer: 'utilities', options }, rule]) } }, - matchBase: function (base) { - let offset = offsets.base++ - - for (let identifier in base) { - let prefixedIdentifier = prefixIdentifier(identifier, options) - let rule = base[identifier] - - let withOffsets = [{ sort: offset, layer: 'base' }, rule] - - if (!context.candidateRuleMap.has(prefixedIdentifier)) { - context.candidateRuleMap.set(prefixedIdentifier, []) - } - - context.candidateRuleMap.get(prefixedIdentifier).push(withOffsets) - } - }, matchUtilities: function (utilities, options) { - // TODO: Redesign this API to work like this so it's more end-user friendly - // matchUtilities({ - // animate: (value, { includeRules }) => { - // let { name: animationName } = parseAnimationValue(value) - - // if (keyframes[animationName] !== undefined) { - // includeRules(keyframes[animationName]) - // } - - // return { animation: value } - // }, - // }, { values: [...], variants: [lol], ...otherStuff }) - let defaultOptions = { variants: [], respectPrefix: true, @@ -558,7 +532,32 @@ function buildPluginApi(tailwindConfig, context, { variantList, variantMap, offs let prefixedIdentifier = prefixIdentifier(identifier, options) let rule = utilities[identifier] - let withOffsets = [{ sort: offset, layer: 'utilities', options }, rule] + function wrapped(modifier) { + let { type = 'any' } = options + let value = coerceValue(type, modifier, options.values) + + if (value === undefined) { + return [] + } + + let includedRules = [] + let ruleSets = [] + .concat( + rule(value, { + includeRules(rules) { + includedRules.push(...rules) + }, + }) + ) + .filter(Boolean) + .map((declaration) => ({ + [nameClass(identifier, modifier)]: declaration, + })) + + return [...includedRules, ...ruleSets] + } + + let withOffsets = [{ sort: offset, layer: 'utilities', options }, wrapped] if (!context.candidateRuleMap.has(prefixedIdentifier)) { context.candidateRuleMap.set(prefixedIdentifier, []) @@ -567,16 +566,6 @@ function buildPluginApi(tailwindConfig, context, { variantList, variantMap, offs context.candidateRuleMap.get(prefixedIdentifier).push(withOffsets) } }, - // --- - jit: { - e: escapeClassName, - config: tailwindConfig, - theme: tailwindConfig.theme, - addVariant(variantName, applyVariant, options = {}) { - insertInto(variantList, variantName, options) - variantMap.set(variantName, applyVariant) - }, - }, } } diff --git a/src/plugins/animation.js b/src/plugins/animation.js index 64f47f7f7ea1..40cc10168985 100644 --- a/src/plugins/animation.js +++ b/src/plugins/animation.js @@ -1,60 +1,41 @@ -import _ from 'lodash' import parseAnimationValue from '../util/parseAnimationValue' -import nameClass from '../util/nameClass' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants, prefix }) { - if (config('mode') === 'jit') { - let keyframes = Object.fromEntries( - Object.entries(theme('keyframes')).map(([key, value]) => { - return [ - key, - [ - { - [`@keyframes ${key}`]: value, - }, - { respectVariants: false }, - ], - ] - }) - ) + return function ({ matchUtilities, theme, variants, prefix }) { + let prefixName = (name) => prefix(`.${name}`).slice(1) + let keyframes = Object.fromEntries( + Object.entries(theme('keyframes')).map(([key, value]) => { + return [ + key, + [ + { + [`@keyframes ${prefixName(key)}`]: value, + }, + { respectVariants: false }, + ], + ] + }) + ) - matchUtilities({ - animate: (modifier, { theme }) => { - let value = theme.animation[modifier] + matchUtilities( + { + animate: (value, { includeRules }) => { + let { name: animationName } = parseAnimationValue(value) - if (value === undefined) { - return [] + if (keyframes[animationName] !== undefined) { + includeRules(keyframes[animationName], { respectImportant: false }) } - let { name: animationName } = parseAnimationValue(value) + if (animationName === undefined || keyframes[animationName] === undefined) { + return { animation: value } + } - return [ - keyframes[animationName], - { [nameClass('animate', modifier)]: { animation: value } }, - ].filter(Boolean) + return { + animation: value.replace(animationName, prefixName(animationName)), + } }, - }) - } else { - const prefixName = (name) => prefix(`.${name}`).slice(1) - const keyframesConfig = theme('keyframes') - const keyframesStyles = _.mapKeys( - keyframesConfig, - (_keyframes, name) => `@keyframes ${prefixName(name)}` - ) - - addUtilities(keyframesStyles, { respectImportant: false }) - - const animationConfig = theme('animation') - const utilities = _.mapValues( - _.mapKeys(animationConfig, (_animation, suffix) => nameClass('animate', suffix)), - (animation) => { - const { name } = parseAnimationValue(animation) - if (name === undefined || keyframesConfig[name] === undefined) return { animation } - return { animation: animation.replace(name, prefixName(name)) } - } - ) - addUtilities(utilities, variants('animation')) - } + }, + { values: theme('animation'), variants: variants('animation') } + ) } } diff --git a/src/plugins/backdropBlur.js b/src/plugins/backdropBlur.js index 690a6c3c94d6..992ef9b618c2 100644 --- a/src/plugins/backdropBlur.js +++ b/src/plugins/backdropBlur.js @@ -1,38 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'backdrop-blur': (modifier, { theme }) => { - let value = asValue(modifier, theme.backdropBlur) - - if (value === undefined) { - return [] - } - - return { - [nameClass('backdrop-blur', modifier)]: { '--tw-backdrop-blur': `blur(${value})` }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'backdrop-blur': (value) => { + return { '--tw-backdrop-blur': `blur(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('backdropBlur'), (value, modifier) => { - return [ - nameClass('backdrop-blur', modifier), - { - '--tw-backdrop-blur': Array.isArray(value) - ? value.map((v) => `blur(${v})`).join(' ') - : `blur(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('backdopBlur')) - } + }, + { + values: theme('backdropBlur'), + variants: variants('backdropBlur'), + type: 'any', + } + ) } } diff --git a/src/plugins/backdropBrightness.js b/src/plugins/backdropBrightness.js index 2ba1628dba79..f85ce257c6dc 100644 --- a/src/plugins/backdropBrightness.js +++ b/src/plugins/backdropBrightness.js @@ -1,40 +1,18 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'backdrop-brightness': (modifier, { theme }) => { - let value = asValue(modifier, theme.backdropBrightness) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'backdrop-brightness': (value) => { return { - [nameClass('backdrop-brightness', modifier)]: { - '--tw-backdrop-brightness': `brightness(${value})`, - }, + '--tw-backdrop-brightness': `brightness(${value})`, } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('backdropBrightness'), (value, modifier) => { - return [ - nameClass('backdrop-brightness', modifier), - { - '--tw-backdrop-brightness': Array.isArray(value) - ? value.map((v) => `brightness(${v})`).join(' ') - : `brightness(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('backdropBrightness')) - } + }, + { + values: theme('backdropBrightness'), + variants: variants('backdropBrightness'), + type: 'any', + } + ) } } diff --git a/src/plugins/backdropContrast.js b/src/plugins/backdropContrast.js index ab5c54013e45..8d72dee1be24 100644 --- a/src/plugins/backdropContrast.js +++ b/src/plugins/backdropContrast.js @@ -1,40 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'backdrop-contrast': (modifier, { theme }) => { - let value = asValue(modifier, theme.backdropContrast) - - if (value === undefined) { - return [] - } - - return { - [nameClass('backdrop-contrast', modifier)]: { - '--tw-backdrop-contrast': `contrast(${value})`, - }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'backdrop-contrast': (value) => { + return { '--tw-backdrop-contrast': `contrast(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('backdropContrast'), (value, modifier) => { - return [ - nameClass('backdrop-contrast', modifier), - { - '--tw-backdrop-contrast': Array.isArray(value) - ? value.map((v) => `contrast(${v})`).join(' ') - : `contrast(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('backdropContrast')) - } + }, + { + values: theme('backdropContrast'), + variants: variants('backdropContrast'), + type: 'any', + } + ) } } diff --git a/src/plugins/backdropGrayscale.js b/src/plugins/backdropGrayscale.js index 193bf313db2c..e0369dbd5fbc 100644 --- a/src/plugins/backdropGrayscale.js +++ b/src/plugins/backdropGrayscale.js @@ -1,40 +1,18 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'backdrop-grayscale': (modifier, { theme }) => { - let value = asValue(modifier, theme.backdropGrayscale) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'backdrop-grayscale': (value) => { return { - [nameClass('backdrop-grayscale', modifier)]: { - '--tw-backdrop-grayscale': `grayscale(${value})`, - }, + '--tw-backdrop-grayscale': `grayscale(${value})`, } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('backdropGrayscale'), (value, modifier) => { - return [ - nameClass('backdrop-grayscale', modifier), - { - '--tw-backdrop-grayscale': Array.isArray(value) - ? value.map((v) => `grayscale(${v})`).join(' ') - : `grayscale(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('backdropGrayscale')) - } + }, + { + values: theme('backdropGrayscale'), + variants: variants('backdropGrayscale'), + type: 'any', + } + ) } } diff --git a/src/plugins/backdropHueRotate.js b/src/plugins/backdropHueRotate.js index 8c804f999cfb..3b76a917ebb7 100644 --- a/src/plugins/backdropHueRotate.js +++ b/src/plugins/backdropHueRotate.js @@ -1,40 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'backdrop-hue-rotate': (modifier, { theme }) => { - let value = asValue(modifier, theme.backdropHueRotate) - - if (value === undefined) { - return [] - } - - return { - [nameClass('backdrop-hue-rotate', modifier)]: { - '--tw-backdrop-hue-rotate': `hue-rotate(${value})`, - }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'backdrop-hue-rotate': (value) => { + return { '--tw-backdrop-hue-rotate': `hue-rotate(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('backdropHueRotate'), (value, modifier) => { - return [ - nameClass('backdrop-hue-rotate', modifier), - { - '--tw-backdrop-hue-rotate': Array.isArray(value) - ? value.map((v) => `hue-rotate(${v})`).join(' ') - : `hue-rotate(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('backdropHueRotate')) - } + }, + { + values: theme('backdropHueRotate'), + variants: variants('backdropHueRotate'), + type: 'any', + } + ) } } diff --git a/src/plugins/backdropInvert.js b/src/plugins/backdropInvert.js index 51e892a0189e..9f6c59d5c8e5 100644 --- a/src/plugins/backdropInvert.js +++ b/src/plugins/backdropInvert.js @@ -1,40 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'backdrop-invert': (modifier, { theme }) => { - let value = asValue(modifier, theme.backdropInvert) - - if (value === undefined) { - return [] - } - - return { - [nameClass('backdrop-invert', modifier)]: { - '--tw-backdrop-invert': `invert(${value})`, - }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'backdrop-invert': (value) => { + return { '--tw-backdrop-invert': `invert(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('backdropInvert'), (value, modifier) => { - return [ - nameClass('backdrop-invert', modifier), - { - '--tw-backdrop-invert': Array.isArray(value) - ? value.map((v) => `invert(${v})`).join(' ') - : `invert(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('backdropInvert')) - } + }, + { + values: theme('backdropInvert'), + variants: variants('backdropInvert'), + type: 'any', + } + ) } } diff --git a/src/plugins/backdropOpacity.js b/src/plugins/backdropOpacity.js index c61629b6a491..2fb364f1bc26 100644 --- a/src/plugins/backdropOpacity.js +++ b/src/plugins/backdropOpacity.js @@ -1,40 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'backdrop-opacity': (modifier, { theme }) => { - let value = asValue(modifier, theme.backdropOpacity) - - if (value === undefined) { - return [] - } - - return { - [nameClass('backdrop-opacity', modifier)]: { - '--tw-backdrop-opacity': `opacity(${value})`, - }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'backdrop-opacity': (value) => { + return { '--tw-backdrop-opacity': `opacity(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('backdropOpacity'), (value, modifier) => { - return [ - nameClass('backdrop-opacity', modifier), - { - '--tw-backdrop-opacity': Array.isArray(value) - ? value.map((v) => `opacity(${v})`).join(' ') - : `opacity(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('backdropOpacity')) - } + }, + { + values: theme('backdropOpacity'), + variants: variants('backdropOpacity'), + type: 'any', + } + ) } } diff --git a/src/plugins/backdropSaturate.js b/src/plugins/backdropSaturate.js index 2d3130ca603e..29094a2a88f6 100644 --- a/src/plugins/backdropSaturate.js +++ b/src/plugins/backdropSaturate.js @@ -1,40 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'backdrop-saturate': (modifier, { theme }) => { - let value = asValue(modifier, theme.backdropSaturate) - - if (value === undefined) { - return [] - } - - return { - [nameClass('backdrop-saturate', modifier)]: { - '--tw-backdrop-saturate': `saturate(${value})`, - }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'backdrop-saturate': (value) => { + return { '--tw-backdrop-saturate': `saturate(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('backdropSaturate'), (value, modifier) => { - return [ - nameClass('backdrop-saturate', modifier), - { - '--tw-backdrop-saturate': Array.isArray(value) - ? value.map((v) => `saturate(${v})`).join(' ') - : `saturate(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('backdropSaturate')) - } + }, + { + values: theme('backdropSaturate'), + variants: variants('backdropSaturate'), + type: 'any', + } + ) } } diff --git a/src/plugins/backdropSepia.js b/src/plugins/backdropSepia.js index 9085ded64df3..b80de4a694e1 100644 --- a/src/plugins/backdropSepia.js +++ b/src/plugins/backdropSepia.js @@ -1,40 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'backdrop-sepia': (modifier, { theme }) => { - let value = asValue(modifier, theme.backdropSepia) - - if (value === undefined) { - return [] - } - - return { - [nameClass('backdrop-sepia', modifier)]: { - '--tw-backdrop-sepia': `sepia(${value})`, - }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'backdrop-sepia': (value) => { + return { '--tw-backdrop-sepia': `sepia(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('backdropSepia'), (value, modifier) => { - return [ - nameClass('backdrop-sepia', modifier), - { - '--tw-backdrop-sepia': Array.isArray(value) - ? value.map((v) => `sepia(${v})`).join(' ') - : `sepia(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('backdropSepia')) - } + }, + { + values: theme('backdropSepia'), + variants: variants('backdropSepia'), + type: 'any', + } + ) } } diff --git a/src/plugins/backgroundColor.js b/src/plugins/backgroundColor.js index ec420a2e2fd6..3ee4ea48487e 100644 --- a/src/plugins/backgroundColor.js +++ b/src/plugins/backgroundColor.js @@ -1,62 +1,29 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' import withAlphaVariable from '../util/withAlphaVariable' -import toColorValue from '../util/toColorValue' -import nameClass from '../util/nameClass' -import { asColor } from '../util/pluginUtils' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { - if (config('mode') === 'jit') { - let colorPalette = flattenColorPalette(theme('backgroundColor')) - - matchUtilities({ - bg: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants, corePlugins }) { + matchUtilities( + { + bg: (value) => { if (!corePlugins('backgroundOpacity')) { return { - [nameClass('bg', modifier)]: { - 'background-color': value, - }, + 'background-color': value, } } - return { - [nameClass('bg', modifier)]: withAlphaVariable({ - color: value, - property: 'background-color', - variable: '--tw-bg-opacity', - }), - } - }, - }) - } else { - const colors = flattenColorPalette(theme('backgroundColor')) - - const getProperties = (value) => { - if (corePlugins('backgroundOpacity')) { return withAlphaVariable({ color: value, property: 'background-color', variable: '--tw-bg-opacity', }) - } - - return { 'background-color': toColorValue(value) } + }, + }, + { + values: flattenColorPalette(theme('backgroundColor')), + variants: variants('backgroundColor'), + type: 'color', } - - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [nameClass('bg', modifier), getProperties(value)] - }) - ) - - addUtilities(utilities, variants('backgroundColor')) - } + ) } } diff --git a/src/plugins/blur.js b/src/plugins/blur.js index 0faabe2118e8..841fb646ab6a 100644 --- a/src/plugins/blur.js +++ b/src/plugins/blur.js @@ -1,36 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - blur: (modifier, { theme }) => { - let value = asValue(modifier, theme.blur) - - if (value === undefined) { - return [] - } - - return { [nameClass('blur', modifier)]: { '--tw-blur': `blur(${value})` } } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + blur: (value) => { + return { '--tw-blur': `blur(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('blur'), (value, modifier) => { - return [ - nameClass('blur', modifier), - { - '--tw-blur': Array.isArray(value) - ? value.map((v) => `blur(${v})`).join(' ') - : `blur(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('blur')) - } + }, + { + values: theme('blur'), + variants: variants('blur'), + type: 'any', + } + ) } } diff --git a/src/plugins/borderColor.js b/src/plugins/borderColor.js index a8251c4edf81..39bb2a83f54b 100644 --- a/src/plugins/borderColor.js +++ b/src/plugins/borderColor.js @@ -1,66 +1,29 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import toColorValue from '../util/toColorValue' import withAlphaVariable from '../util/withAlphaVariable' -import nameClass from '../util/nameClass' -import { asColor } from '../util/pluginUtils' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { - if (config('mode') === 'jit') { - let colorPalette = flattenColorPalette(theme('borderColor')) - - matchUtilities({ - border: (modifier) => { - if (modifier === 'DEFAULT') { - return [] - } - - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants, corePlugins }) { + matchUtilities( + { + border: (value) => { if (!corePlugins('borderOpacity')) { return { - [nameClass('border', modifier)]: { - 'border-color': value, - }, + 'border-color': value, } } - return { - [nameClass('border', modifier)]: withAlphaVariable({ - color: value, - property: 'border-color', - variable: '--tw-border-opacity', - }), - } - }, - }) - } else { - const colors = flattenColorPalette(theme('borderColor')) - - const getProperties = (value) => { - if (corePlugins('borderOpacity')) { return withAlphaVariable({ color: value, property: 'border-color', variable: '--tw-border-opacity', }) - } - - return { 'border-color': toColorValue(value) } + }, + }, + { + values: (({ DEFAULT: _, ...colors }) => colors)(flattenColorPalette(theme('borderColor'))), + variants: variants('borderColor'), + type: 'color', } - - const utilities = _.fromPairs( - _.map(_.omit(colors, 'DEFAULT'), (value, modifier) => { - return [nameClass('border', modifier), getProperties(value)] - }) - ) - - addUtilities(utilities, variants('borderColor')) - } + ) } } diff --git a/src/plugins/boxShadow.js b/src/plugins/boxShadow.js index 5391e1ccbbc7..a5295dddeae7 100644 --- a/src/plugins/boxShadow.js +++ b/src/plugins/boxShadow.js @@ -1,6 +1,4 @@ -import _ from 'lodash' import transformThemeValue from '../util/transformThemeValue' -import nameClass from '../util/nameClass' let transformValue = transformThemeValue('boxShadow') let shadowReset = { @@ -8,60 +6,36 @@ let shadowReset = { '--tw-shadow': '0 0 #0000', }, } +let defaultBoxShadow = [ + `var(--tw-ring-offset-shadow, 0 0 #0000)`, + `var(--tw-ring-shadow, 0 0 #0000)`, + `var(--tw-shadow)`, +].join(', ') export default function () { return function ({ config, matchUtilities, addBase, addUtilities, theme, variants }) { if (config('mode') === 'jit') { addBase(shadowReset) - matchUtilities({ - shadow: (modifier, { theme }) => { - let value = transformValue(theme.boxShadow[modifier]) - - if (value === undefined) { - return [] - } - - return [ - { - [nameClass('shadow', modifier)]: { - '--tw-shadow': value === 'none' ? '0 0 #0000' : value, - 'box-shadow': [ - `var(--tw-ring-offset-shadow, 0 0 #0000)`, - `var(--tw-ring-shadow, 0 0 #0000)`, - `var(--tw-shadow)`, - ].join(', '), - }, - }, - ] - }, - }) } else { - addUtilities( - { - '*': { - '--tw-shadow': '0 0 #0000', - }, - }, - { respectImportant: false } - ) + addUtilities(shadowReset, { respectImportant: false }) + } - const utilities = _.fromPairs( - _.map(theme('boxShadow'), (value, modifier) => { - return [ - nameClass('shadow', modifier), - { - '--tw-shadow': value === 'none' ? '0 0 #0000' : value, - 'box-shadow': [ - `var(--tw-ring-offset-shadow, 0 0 #0000)`, - `var(--tw-ring-shadow, 0 0 #0000)`, - `var(--tw-shadow)`, - ].join(', '), - }, - ] - }) - ) + matchUtilities( + { + shadow: (value) => { + value = transformValue(value) - addUtilities(utilities, variants('boxShadow')) - } + return { + '--tw-shadow': value === 'none' ? '0 0 #0000' : value, + 'box-shadow': defaultBoxShadow, + } + }, + }, + { + values: theme('boxShadow'), + variants: variants('boxShadow'), + type: 'lookup', + } + ) } } diff --git a/src/plugins/brightness.js b/src/plugins/brightness.js index dc7af61de27d..12842a766ec9 100644 --- a/src/plugins/brightness.js +++ b/src/plugins/brightness.js @@ -1,38 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - brightness: (modifier, { theme }) => { - let value = asValue(modifier, theme.brightness) - - if (value === undefined) { - return [] - } - - return { - [nameClass('brightness', modifier)]: { '--tw-brightness': `brightness(${value})` }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + brightness: (value) => { + return { '--tw-brightness': `brightness(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('brightness'), (value, modifier) => { - return [ - nameClass('brightness', modifier), - { - '--tw-brightness': Array.isArray(value) - ? value.map((v) => `brightness(${v})`).join(' ') - : `brightness(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('brightness')) - } + }, + { + values: theme('brightness'), + variants: variants('brightness'), + type: 'any', + } + ) } } diff --git a/src/plugins/contrast.js b/src/plugins/contrast.js index bb5503ba2989..d8fbaa4b07af 100644 --- a/src/plugins/contrast.js +++ b/src/plugins/contrast.js @@ -1,38 +1,12 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - contrast: (modifier, { theme }) => { - let value = asValue(modifier, theme.contrast) - - if (value === undefined) { - return [] - } - - return { - [nameClass('contrast', modifier)]: { '--tw-contrast': `contrast(${value})` }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + contrast: (value) => { + return { '--tw-contrast': `contrast(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('contrast'), (value, modifier) => { - return [ - nameClass('contrast', modifier), - { - '--tw-contrast': Array.isArray(value) - ? value.map((v) => `contrast(${v})`).join(' ') - : `contrast(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('contrast')) - } + }, + { values: theme('contrast'), variants: variants('contrast'), type: 'any' } + ) } } diff --git a/src/plugins/divideColor.js b/src/plugins/divideColor.js index 1e90968dc34a..07f20f016696 100644 --- a/src/plugins/divideColor.js +++ b/src/plugins/divideColor.js @@ -1,72 +1,33 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import toColorValue from '../util/toColorValue' import withAlphaVariable from '../util/withAlphaVariable' -import nameClass from '../util/nameClass' -import { asColor } from '../util/pluginUtils' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { - if (config('mode') === 'jit') { - let colorPalette = flattenColorPalette(theme('divideColor')) - - matchUtilities({ - divide: (modifier) => { - if (modifier === 'DEFAULT') { - return [] - } - - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants, corePlugins }) { + matchUtilities( + { + divide: (value) => { if (!corePlugins('divideOpacity')) { return { - [`${nameClass('divide', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + ['& > :not([hidden]) ~ :not([hidden])']: { 'border-color': value, }, } } return { - [`${nameClass( - 'divide', - modifier - )} > :not([hidden]) ~ :not([hidden])`]: withAlphaVariable({ - color: colorPalette[modifier], + ['& > :not([hidden]) ~ :not([hidden])']: withAlphaVariable({ + color: value, property: 'border-color', variable: '--tw-divide-opacity', }), } }, - }) - } else { - const colors = flattenColorPalette(theme('divideColor')) - - const getProperties = (value) => { - if (corePlugins('divideOpacity')) { - return withAlphaVariable({ - color: value, - property: 'border-color', - variable: '--tw-divide-opacity', - }) - } - - return { 'border-color': toColorValue(value) } + }, + { + values: (({ DEFAULT: _, ...colors }) => colors)(flattenColorPalette(theme('divideColor'))), + variants: variants('divideColor'), + type: 'color', } - - const utilities = _.fromPairs( - _.map(_.omit(colors, 'DEFAULT'), (value, modifier) => { - return [ - `${nameClass('divide', modifier)} > :not([hidden]) ~ :not([hidden])`, - getProperties(value), - ] - }) - ) - - addUtilities(utilities, variants('divideColor')) - } + ) } } diff --git a/src/plugins/divideOpacity.js b/src/plugins/divideOpacity.js index 3f247794821b..94c41e56234e 100644 --- a/src/plugins/divideOpacity.js +++ b/src/plugins/divideOpacity.js @@ -1,38 +1,20 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'divide-opacity': (modifier, { theme }) => { - let value = asValue(modifier, theme.divideOpacity) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'divide-opacity': (value) => { return { - [`${nameClass('divide-opacity', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + [`& > :not([hidden]) ~ :not([hidden])`]: { '--tw-divide-opacity': value, }, } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('divideOpacity'), (value, modifier) => { - return [ - `${nameClass('divide-opacity', modifier)} > :not([hidden]) ~ :not([hidden])`, - { - '--tw-divide-opacity': value, - }, - ] - }) - ) - - addUtilities(utilities, variants('divideOpacity')) - } + }, + { + values: theme('divideOpacity'), + variants: variants('divideOpacity'), + type: 'any', + } + ) } } diff --git a/src/plugins/divideWidth.js b/src/plugins/divideWidth.js index 05a1f42e3607..27b1bd05733a 100644 --- a/src/plugins/divideWidth.js +++ b/src/plugins/divideWidth.js @@ -1,91 +1,47 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asLength } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'divide-x': (modifier, { theme }) => { - let value = asLength(modifier, theme['divideWidth']) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, addUtilities, theme, variants }) { + matchUtilities( + { + 'divide-x': (value) => { value = value === '0' ? '0px' : value return { - [`${nameClass('divide-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '& > :not([hidden]) ~ :not([hidden])': { '--tw-divide-x-reverse': '0', 'border-right-width': `calc(${value} * var(--tw-divide-x-reverse))`, 'border-left-width': `calc(${value} * calc(1 - var(--tw-divide-x-reverse)))`, }, } }, - 'divide-y': (modifier, { theme }) => { - let value = asLength(modifier, theme['divideWidth']) - - if (value === undefined) { - return [] - } - + 'divide-y': (value) => { value = value === '0' ? '0px' : value return { - [`${nameClass('divide-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '& > :not([hidden]) ~ :not([hidden])': { '--tw-divide-y-reverse': '0', 'border-top-width': `calc(${value} * calc(1 - var(--tw-divide-y-reverse)))`, 'border-bottom-width': `calc(${value} * var(--tw-divide-y-reverse))`, }, } }, - }) - - addUtilities({ + }, + { + values: theme('divideWidth'), + variants: variants('divideWidth'), + type: 'length', + } + ) + + addUtilities( + { '.divide-y-reverse > :not([hidden]) ~ :not([hidden])': { '--tw-divide-y-reverse': '1', }, '.divide-x-reverse > :not([hidden]) ~ :not([hidden])': { '--tw-divide-x-reverse': '1', }, - }) - } else { - const generators = [ - (_size, modifier) => { - const size = _size === '0' ? '0px' : _size - return { - [`${nameClass('divide-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-divide-y-reverse': '0', - 'border-top-width': `calc(${size} * calc(1 - var(--tw-divide-y-reverse)))`, - 'border-bottom-width': `calc(${size} * var(--tw-divide-y-reverse))`, - }, - [`${nameClass('divide-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-divide-x-reverse': '0', - 'border-right-width': `calc(${size} * var(--tw-divide-x-reverse))`, - 'border-left-width': `calc(${size} * calc(1 - var(--tw-divide-x-reverse)))`, - }, - } - }, - ] - - const utilities = _.flatMap(generators, (generator) => { - return [ - ..._.flatMap(theme('divideWidth'), (value, modifier) => { - return generator(value, modifier) - }), - { - '.divide-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-y-reverse': '1', - }, - '.divide-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-x-reverse': '1', - }, - }, - ] - }) - - addUtilities(utilities, variants('divideWidth')) - } + }, + variants('divideWidth') + ) } } diff --git a/src/plugins/fill.js b/src/plugins/fill.js index a31353de6b8c..311524f9d968 100644 --- a/src/plugins/fill.js +++ b/src/plugins/fill.js @@ -1,35 +1,19 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' import toColorValue from '../util/toColorValue' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - let colorPalette = flattenColorPalette(theme('fill')) - - matchUtilities({ - fill: (modifier) => { - let value = asValue(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - return { [nameClass('fill', modifier)]: { fill: toColorValue(value) } } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + fill: (value) => { + return { fill: toColorValue(value) } }, - }) - } else { - const colors = flattenColorPalette(theme('fill')) - - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [nameClass('fill', modifier), { fill: toColorValue(value) }] - }) - ) - - addUtilities(utilities, variants('fill')) - } + }, + { + values: flattenColorPalette(theme('fill')), + variants: variants('fill'), + type: 'any', + } + ) } } diff --git a/src/plugins/fontSize.js b/src/plugins/fontSize.js index 24c5218b192a..9686d5a9b467 100644 --- a/src/plugins/fontSize.js +++ b/src/plugins/fontSize.js @@ -1,81 +1,27 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asLength } from '../util/pluginUtils' import isPlainObject from '../util/isPlainObject' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - text: (modifier, { theme }) => { - let value = theme.fontSize[modifier] - - if (value === undefined) { - value = asLength(modifier, {}) - - return value === undefined - ? [] - : { - [nameClass('text', modifier)]: { - 'font-size': value, - }, - } - } - + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + text: (value) => { let [fontSize, options] = Array.isArray(value) ? value : [value] let { lineHeight, letterSpacing } = isPlainObject(options) ? options - : { - lineHeight: options, - } + : { lineHeight: options } return { - [nameClass('text', modifier)]: { - 'font-size': fontSize, - ...(lineHeight === undefined - ? {} - : { - 'line-height': lineHeight, - }), - ...(letterSpacing === undefined - ? {} - : { - 'letter-spacing': letterSpacing, - }), - }, + 'font-size': fontSize, + ...(lineHeight === undefined ? {} : { 'line-height': lineHeight }), + ...(letterSpacing === undefined ? {} : { 'letter-spacing': letterSpacing }), } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('fontSize'), (value, modifier) => { - const [fontSize, options] = Array.isArray(value) ? value : [value] - const { lineHeight, letterSpacing } = _.isPlainObject(options) - ? options - : { - lineHeight: options, - } - - return [ - nameClass('text', modifier), - { - 'font-size': fontSize, - ...(lineHeight === undefined - ? {} - : { - 'line-height': lineHeight, - }), - ...(letterSpacing === undefined - ? {} - : { - 'letter-spacing': letterSpacing, - }), - }, - ] - }) - ) - - addUtilities(utilities, variants('fontSize')) - } + }, + { + values: theme('fontSize'), + variants: variants('fontSize'), + type: 'length', + } + ) } } diff --git a/src/plugins/gradientColorStops.js b/src/plugins/gradientColorStops.js index 6938d3464f97..38d7d39a767d 100644 --- a/src/plugins/gradientColorStops.js +++ b/src/plugins/gradientColorStops.js @@ -1,110 +1,54 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' import toColorValue from '../util/toColorValue' import { withAlphaValue } from '../util/withAlphaVariable' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' function transparentTo(value) { return withAlphaValue(value, 0, 'rgba(255, 255, 255, 0)') } export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - let colorPalette = flattenColorPalette(theme('gradientColorStops')) - - if (config('mode') === 'jit') { - matchUtilities({ - from: (modifier) => { - let value = asValue(modifier, colorPalette) - - if (value === undefined) { - return [] - } + return function ({ matchUtilities, theme, variants }) { + let options = { + values: flattenColorPalette(theme('gradientColorStops')), + variants: variants('gradientColorStops'), + type: 'any', + } + matchUtilities( + { + from: (value) => { let transparentToValue = transparentTo(value) return { - [nameClass('from', modifier)]: { - '--tw-gradient-from': toColorValue(value, 'from'), - '--tw-gradient-stops': `var(--tw-gradient-from), var(--tw-gradient-to, ${transparentToValue})`, - }, + '--tw-gradient-from': toColorValue(value, 'from'), + '--tw-gradient-stops': `var(--tw-gradient-from), var(--tw-gradient-to, ${transparentToValue})`, } }, - }) - matchUtilities({ - via: (modifier) => { - let value = asValue(modifier, colorPalette) - - if (value === undefined) { - return [] - } - + }, + options + ) + matchUtilities( + { + via: (value) => { let transparentToValue = transparentTo(value) return { - [nameClass('via', modifier)]: { - '--tw-gradient-stops': `var(--tw-gradient-from), ${toColorValue( - value, - 'via' - )}, var(--tw-gradient-to, ${transparentToValue})`, - }, + '--tw-gradient-stops': `var(--tw-gradient-from), ${toColorValue( + value, + 'via' + )}, var(--tw-gradient-to, ${transparentToValue})`, } }, - }) - matchUtilities({ - to: (modifier) => { - let value = asValue(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - return { - [nameClass('to', modifier)]: { - '--tw-gradient-to': toColorValue(value, 'to'), - }, - } + }, + options + ) + matchUtilities( + { + to: (value) => { + return { '--tw-gradient-to': toColorValue(value, 'to') } }, - }) - } else { - const colors = colorPalette - - const utilities = _(colors) - .map((value, modifier) => { - const transparentToValue = transparentTo(value) - - return [ - [ - nameClass('from', modifier), - { - '--tw-gradient-from': toColorValue(value, 'from'), - '--tw-gradient-stops': `var(--tw-gradient-from), var(--tw-gradient-to, ${transparentToValue})`, - }, - ], - [ - nameClass('via', modifier), - { - '--tw-gradient-stops': `var(--tw-gradient-from), ${toColorValue( - value, - 'via' - )}, var(--tw-gradient-to, ${transparentToValue})`, - }, - ], - [ - nameClass('to', modifier), - { - '--tw-gradient-to': toColorValue(value, 'to'), - }, - ], - ] - }) - .unzip() - .flatten() - .fromPairs() - .value() - - addUtilities(utilities, variants('gradientColorStops')) - } + }, + options + ) } } diff --git a/src/plugins/grayscale.js b/src/plugins/grayscale.js index 10f7e896e75a..fda7fa265a98 100644 --- a/src/plugins/grayscale.js +++ b/src/plugins/grayscale.js @@ -1,38 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - grayscale: (modifier, { theme }) => { - let value = asValue(modifier, theme.grayscale) - - if (value === undefined) { - return [] - } - - return { - [nameClass('grayscale', modifier)]: { '--tw-grayscale': `grayscale(${value})` }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + grayscale: (value) => { + return { '--tw-grayscale': `grayscale(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('grayscale'), (value, modifier) => { - return [ - nameClass('grayscale', modifier), - { - '--tw-grayscale': Array.isArray(value) - ? value.map((v) => `grayscale(${v})`).join(' ') - : `grayscale(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('grayscale')) - } + }, + { + values: theme('grayscale'), + variants: variants('grayscale'), + type: 'any', + } + ) } } diff --git a/src/plugins/hueRotate.js b/src/plugins/hueRotate.js index 1be4193e062a..52b1995d9598 100644 --- a/src/plugins/hueRotate.js +++ b/src/plugins/hueRotate.js @@ -1,38 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'hue-rotate': (modifier, { theme }) => { - let value = asValue(modifier, theme.hueRotate) - - if (value === undefined) { - return [] - } - - return { - [nameClass('hue-rotate', modifier)]: { '--tw-hue-rotate': `hue-rotate(${value})` }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'hue-rotate': (value) => { + return { '--tw-hue-rotate': `hue-rotate(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('hueRotate'), (value, modifier) => { - return [ - nameClass('hue-rotate', modifier), - { - '--tw-hue-rotate': Array.isArray(value) - ? value.map((v) => `hue-rotate(${v})`).join(' ') - : `hue-rotate(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('hueRotate')) - } + }, + { + values: theme('hueRotate'), + variants: variants('hueRotate'), + type: 'any', + } + ) } } diff --git a/src/plugins/inset.js b/src/plugins/inset.js index 2ae1653ec647..95cc41aed335 100644 --- a/src/plugins/inset.js +++ b/src/plugins/inset.js @@ -1,123 +1,48 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - inset: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } + return function ({ matchUtilities, theme, variants }) { + let options = { + values: theme('inset'), + variants: variants('inset'), + type: 'any', + } - return { - [nameClass('inset', modifier)]: { - top: value, - right: value, - bottom: value, - left: value, - }, - } + matchUtilities( + { + inset: (value) => { + return { top: value, right: value, bottom: value, left: value } }, - }) - matchUtilities({ - 'inset-x': (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('inset-x', modifier)]: { left: value, right: value }, - } + }, + options + ) + + matchUtilities( + { + 'inset-x': (value) => { + return { left: value, right: value } }, - 'inset-y': (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { - [nameClass('inset-y', modifier)]: { top: value, bottom: value }, - } + 'inset-y': (value) => { + return { top: value, bottom: value } }, - }) - matchUtilities({ - top: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('top', modifier)]: { top: value } } + }, + options + ) + + matchUtilities( + { + top: (value) => { + return { top: value } }, - right: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('right', modifier)]: { right: value } } + right: (value) => { + return { right: value } }, - bottom: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('bottom', modifier)]: { bottom: value } } + bottom: (value) => { + return { bottom: value } }, - left: (modifier, { theme }) => { - let value = asValue(modifier, theme['inset']) - - if (value === undefined) { - return [] - } - - return { [nameClass('left', modifier)]: { left: value } } + left: (value) => { + return { left: value } }, - }) - } else { - const generators = [ - (size, modifier) => ({ - [nameClass('inset', modifier)]: { - top: `${size}`, - right: `${size}`, - bottom: `${size}`, - left: `${size}`, - }, - }), - (size, modifier) => ({ - [nameClass('inset-y', modifier)]: { - top: `${size}`, - bottom: `${size}`, - }, - [nameClass('inset-x', modifier)]: { - right: `${size}`, - left: `${size}`, - }, - }), - (size, modifier) => ({ - [nameClass('top', modifier)]: { top: `${size}` }, - [nameClass('right', modifier)]: { right: `${size}` }, - [nameClass('bottom', modifier)]: { bottom: `${size}` }, - [nameClass('left', modifier)]: { left: `${size}` }, - }), - ] - - const utilities = _.flatMap(generators, (generator) => { - return _.flatMap(theme('inset'), generator) - }) - - addUtilities(utilities, variants('inset')) - } + }, + options + ) } } diff --git a/src/plugins/invert.js b/src/plugins/invert.js index 7821cfe3df23..3a5f38629d92 100644 --- a/src/plugins/invert.js +++ b/src/plugins/invert.js @@ -1,38 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - invert: (modifier, { theme }) => { - let value = asValue(modifier, theme.invert) - - if (value === undefined) { - return [] - } - - return { - [nameClass('invert', modifier)]: { '--tw-invert': `invert(${value})` }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + invert: (value) => { + return { '--tw-invert': `invert(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('invert'), (value, modifier) => { - return [ - nameClass('invert', modifier), - { - '--tw-invert': Array.isArray(value) - ? value.map((v) => `invert(${v})`).join(' ') - : `invert(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('invert')) - } + }, + { + values: theme('invert'), + variants: variants('invert'), + type: 'any', + } + ) } } diff --git a/src/plugins/outline.js b/src/plugins/outline.js index 42d002b600f4..86a1ca002c1c 100644 --- a/src/plugins/outline.js +++ b/src/plugins/outline.js @@ -1,44 +1,14 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - outline: (modifier, { theme }) => { - let value = asValue(modifier, theme.outline) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + outline: (value) => { let [outline, outlineOffset = '0'] = Array.isArray(value) ? value : [value] - return { - [nameClass('outline', modifier)]: { - outline, - 'outline-offset': outlineOffset, - }, - } + return { outline, 'outline-offset': outlineOffset } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('outline'), (value, modifier) => { - const [outline, outlineOffset = '0'] = Array.isArray(value) ? value : [value] - - return [ - nameClass('outline', modifier), - { - outline, - outlineOffset, - }, - ] - }) - ) - - addUtilities(utilities, variants('outline')) - } + }, + { values: theme('outline'), variants: variants('outline'), type: 'any' } + ) } } diff --git a/src/plugins/placeholderColor.js b/src/plugins/placeholderColor.js index 957d1085f58f..66e6e27a5152 100644 --- a/src/plugins/placeholderColor.js +++ b/src/plugins/placeholderColor.js @@ -1,62 +1,33 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import toColorValue from '../util/toColorValue' import withAlphaVariable from '../util/withAlphaVariable' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { - if (config('mode') === 'jit') { - let colorPalette = flattenColorPalette(theme('placeholderColor')) - - matchUtilities({ - placeholder: (modifier) => { - let value = asValue(modifier, colorPalette) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants, corePlugins }) { + matchUtilities( + { + placeholder: (value) => { if (!corePlugins('placeholderOpacity')) { return { - [`${nameClass('placeholder', modifier)}::placeholder`]: { + '&::placeholder': { color: value, }, } } return { - [`${nameClass('placeholder', modifier)}::placeholder`]: withAlphaVariable({ + '&::placeholder': withAlphaVariable({ color: value, property: 'color', variable: '--tw-placeholder-opacity', }), } }, - }) - } else { - const colors = flattenColorPalette(theme('placeholderColor')) - - const getProperties = (value) => { - if (corePlugins('placeholderOpacity')) { - return withAlphaVariable({ - color: value, - property: 'color', - variable: '--tw-placeholder-opacity', - }) - } - - return { color: toColorValue(value) } + }, + { + values: flattenColorPalette(theme('placeholderColor')), + variants: variants('placeholderColor'), + type: 'any', } - - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [`${nameClass('placeholder', modifier)}::placeholder`, getProperties(value)] - }) - ) - - addUtilities(utilities, variants('placeholderColor')) - } + ) } } diff --git a/src/plugins/placeholderOpacity.js b/src/plugins/placeholderOpacity.js index d78c58f5c93a..544afadee678 100644 --- a/src/plugins/placeholderOpacity.js +++ b/src/plugins/placeholderOpacity.js @@ -1,38 +1,16 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'placeholder-opacity': (modifier, { theme }) => { - let value = asValue(modifier, theme.placeholderOpacity) - - if (value === undefined) { - return [] - } - - return { - [`${nameClass('placeholder-opacity', modifier)}::placeholder`]: { - '--tw-placeholder-opacity': value, - }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'placeholder-opacity': (value) => { + return { ['&::placeholder']: { '--tw-placeholder-opacity': value } } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('placeholderOpacity'), (value, modifier) => { - return [ - `${nameClass('placeholder-opacity', modifier)}::placeholder`, - { - '--tw-placeholder-opacity': value, - }, - ] - }) - ) - - addUtilities(utilities, variants('placeholderOpacity')) - } + }, + { + values: theme('placeholderOpacity'), + variants: variants('placeholderOpacity'), + type: 'any', + } + ) } } diff --git a/src/plugins/ringColor.js b/src/plugins/ringColor.js index cc18c54c9735..0150761d7e67 100644 --- a/src/plugins/ringColor.js +++ b/src/plugins/ringColor.js @@ -1,53 +1,27 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' import withAlphaVariable from '../util/withAlphaVariable' -import nameClass from '../util/nameClass' -import { asColor } from '../util/pluginUtils' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - let colorPalette = flattenColorPalette(theme('ringColor')) - - matchUtilities({ - ring: (modifier) => { - if (modifier === 'DEFAULT') { - return [] - } - - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - - return { - [nameClass('ring', modifier)]: withAlphaVariable({ - color: value, - property: '--tw-ring-color', - variable: '--tw-ring-opacity', - }), - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + ring: (value) => { + return withAlphaVariable({ + color: value, + property: '--tw-ring-color', + variable: '--tw-ring-opacity', + }) }, - }) - } else { - const colors = flattenColorPalette(theme('ringColor')) - - const getProperties = (value) => { - return withAlphaVariable({ - color: value, - property: '--tw-ring-color', - variable: '--tw-ring-opacity', - }) + }, + { + values: Object.fromEntries( + Object.entries(flattenColorPalette(theme('ringColor'))).filter( + ([modifier]) => modifier !== 'DEFAULT' + ) + ), + variants: variants('ringColor'), + type: 'color', } - - const utilities = _.fromPairs( - _.map(_.omit(colors, 'DEFAULT'), (value, modifier) => { - return [nameClass('ring', modifier), getProperties(value)] - }) - ) - - addUtilities(utilities, variants('ringColor')) - } + ) } } diff --git a/src/plugins/ringOffsetColor.js b/src/plugins/ringOffsetColor.js index 86f73291df9b..4213a1dda9c9 100644 --- a/src/plugins/ringOffsetColor.js +++ b/src/plugins/ringOffsetColor.js @@ -1,42 +1,21 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' import toColorValue from '../util/toColorValue' -import nameClass from '../util/nameClass' -import { asColor } from '../util/pluginUtils' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - let colorPalette = flattenColorPalette(theme('ringOffsetColor')) - - matchUtilities({ - 'ring-offset': (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + 'ring-offset': (value) => { return { - [nameClass('ring-offset', modifier)]: { - '--tw-ring-offset-color': toColorValue(value), - }, + '--tw-ring-offset-color': toColorValue(value), } }, - }) - } else { - const colors = flattenColorPalette(theme('ringOffsetColor')) - const utilities = _.fromPairs( - _.map(_.omit(colors, 'DEFAULT'), (value, modifier) => { - return [ - nameClass('ring-offset', modifier), - { - '--tw-ring-offset-color': toColorValue(value), - }, - ] - }) - ) - addUtilities(utilities, variants('ringOffsetColor')) - } + }, + { + values: flattenColorPalette(theme('ringOffsetColor')), + variants: variants('ringOffsetColor'), + type: 'color', + } + ) } } diff --git a/src/plugins/ringWidth.js b/src/plugins/ringWidth.js index d50079deb5d7..03f6078d7f7a 100644 --- a/src/plugins/ringWidth.js +++ b/src/plugins/ringWidth.js @@ -1,102 +1,52 @@ -import _ from 'lodash' import { withAlphaValue } from '../util/withAlphaVariable' -import nameClass from '../util/nameClass' -import { asLength } from '../util/pluginUtils' export default function () { return function ({ config, matchUtilities, addBase, addUtilities, theme, variants }) { - const ringOpacityDefault = theme('ringOpacity.DEFAULT', '0.5') - const ringColorDefault = withAlphaValue( + let ringOpacityDefault = theme('ringOpacity.DEFAULT', '0.5') + let ringColorDefault = withAlphaValue( theme('ringColor.DEFAULT'), ringOpacityDefault, `rgba(147, 197, 253, ${ringOpacityDefault})` ) - if (config('mode') === 'jit') { - let ringReset = { - '*': { - '--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-ring-offset-width': theme('ringOffsetWidth.DEFAULT', '0px'), - '--tw-ring-offset-color': theme('ringOffsetColor.DEFAULT', '#fff'), - '--tw-ring-color': ringColorDefault, - '--tw-ring-offset-shadow': '0 0 #0000', - '--tw-ring-shadow': '0 0 #0000', - }, - } + let ringReset = { + '*': { + '--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', + '--tw-ring-offset-width': theme('ringOffsetWidth.DEFAULT', '0px'), + '--tw-ring-offset-color': theme('ringOffsetColor.DEFAULT', '#fff'), + '--tw-ring-color': ringColorDefault, + '--tw-ring-offset-shadow': '0 0 #0000', + '--tw-ring-shadow': '0 0 #0000', + }, + } + if (config('mode') === 'jit') { addBase(ringReset) + } else { + addUtilities(ringReset, { respectImportant: false }) + } - matchUtilities({ - ring: (modifier, { theme }) => { - let value = asLength(modifier, theme['ringWidth']) - - if (value === undefined) { - return [] + matchUtilities( + { + ring: (value) => { + return { + '--tw-ring-offset-shadow': `var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)`, + '--tw-ring-shadow': `var(--tw-ring-inset) 0 0 0 calc(${value} + var(--tw-ring-offset-width)) var(--tw-ring-color)`, + 'box-shadow': [ + `var(--tw-ring-offset-shadow)`, + `var(--tw-ring-shadow)`, + `var(--tw-shadow, 0 0 #0000)`, + ].join(', '), } - - return [ - { - [nameClass('ring', modifier)]: { - '--tw-ring-offset-shadow': `var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)`, - '--tw-ring-shadow': `var(--tw-ring-inset) 0 0 0 calc(${value} + var(--tw-ring-offset-width)) var(--tw-ring-color)`, - 'box-shadow': [ - `var(--tw-ring-offset-shadow)`, - `var(--tw-ring-shadow)`, - `var(--tw-shadow, 0 0 #0000)`, - ].join(', '), - }, - }, - ] - }, - }) - - addUtilities({ - '.ring-inset': { - '--tw-ring-inset': 'inset', - }, - }) - } else { - addUtilities( - { - '*': { - '--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-ring-offset-width': theme('ringOffsetWidth.DEFAULT', '0px'), - '--tw-ring-offset-color': theme('ringOffsetColor.DEFAULT', '#fff'), - '--tw-ring-color': ringColorDefault, - '--tw-ring-offset-shadow': '0 0 #0000', - '--tw-ring-shadow': '0 0 #0000', - }, }, - { respectImportant: false } - ) + }, + { + values: theme('ringWidth'), + variants: variants('ringWidth'), + type: 'length', + } + ) - const utilities = _.fromPairs( - _.map(theme('ringWidth'), (value, modifier) => { - return [ - nameClass('ring', modifier), - { - '--tw-ring-offset-shadow': `var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)`, - '--tw-ring-shadow': `var(--tw-ring-inset) 0 0 0 calc(${value} + var(--tw-ring-offset-width)) var(--tw-ring-color)`, - 'box-shadow': [ - `var(--tw-ring-offset-shadow)`, - `var(--tw-ring-shadow)`, - `var(--tw-shadow, 0 0 #0000)`, - ].join(', '), - }, - ] - }) - ) - addUtilities( - [ - utilities, - { - '.ring-inset': { - '--tw-ring-inset': 'inset', - }, - }, - ], - variants('ringWidth') - ) - } + addUtilities({ '.ring-inset': { '--tw-ring-inset': 'inset' } }, variants('ringWidth')) } } diff --git a/src/plugins/saturate.js b/src/plugins/saturate.js index 00220771f1ba..29db0c1e6c32 100644 --- a/src/plugins/saturate.js +++ b/src/plugins/saturate.js @@ -1,38 +1,18 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - saturate: (modifier, { theme }) => { - let value = asValue(modifier, theme.saturate) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + saturate: (value) => { return { - [nameClass('saturate', modifier)]: { '--tw-saturate': `saturate(${value})` }, + '--tw-saturate': `saturate(${value})`, } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('saturate'), (value, modifier) => { - return [ - nameClass('saturate', modifier), - { - '--tw-saturate': Array.isArray(value) - ? value.map((v) => `saturate(${v})`).join(' ') - : `saturate(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('saturate')) - } + }, + { + values: theme('saturate'), + variants: variants('saturate'), + type: 'any', + } + ) } } diff --git a/src/plugins/sepia.js b/src/plugins/sepia.js index 7fa08101ed04..aa5317707203 100644 --- a/src/plugins/sepia.js +++ b/src/plugins/sepia.js @@ -1,38 +1,12 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - sepia: (modifier, { theme }) => { - let value = asValue(modifier, theme.sepia) - - if (value === undefined) { - return [] - } - - return { - [nameClass('sepia', modifier)]: { '--tw-sepia': `sepia(${value})` }, - } + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + sepia: (value) => { + return { '--tw-sepia': `sepia(${value})` } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('sepia'), (value, modifier) => { - return [ - nameClass('sepia', modifier), - { - '--tw-sepia': Array.isArray(value) - ? value.map((v) => `sepia(${v})`).join(' ') - : `sepia(${value})`, - }, - ] - }) - ) - - addUtilities(utilities, variants('sepia')) - } + }, + { values: theme('sepia'), variants: variants('sepia'), type: 'any' } + ) } } diff --git a/src/plugins/space.js b/src/plugins/space.js index 25f469ef520b..3f119a6cdf0b 100644 --- a/src/plugins/space.js +++ b/src/plugins/space.js @@ -1,89 +1,47 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - matchUtilities({ - 'space-x': (modifier, { theme }) => { - let value = asValue(modifier, theme['space']) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, addUtilities, theme, variants }) { + matchUtilities( + { + 'space-x': (value) => { value = value === '0' ? '0px' : value return { - [`${nameClass('space-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '& > :not([hidden]) ~ :not([hidden])': { '--tw-space-x-reverse': '0', 'margin-right': `calc(${value} * var(--tw-space-x-reverse))`, 'margin-left': `calc(${value} * calc(1 - var(--tw-space-x-reverse)))`, }, } }, - 'space-y': (modifier, { theme }) => { - let value = asValue(modifier, theme['space']) - - if (value === undefined) { - return [] - } - + 'space-y': (value) => { value = value === '0' ? '0px' : value return { - [`${nameClass('space-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { + '& > :not([hidden]) ~ :not([hidden])': { '--tw-space-y-reverse': '0', 'margin-top': `calc(${value} * calc(1 - var(--tw-space-y-reverse)))`, 'margin-bottom': `calc(${value} * var(--tw-space-y-reverse))`, }, } }, - }) - - addUtilities({ + }, + { + values: theme('space'), + variants: variants('space'), + type: 'any', + } + ) + + addUtilities( + { '.space-y-reverse > :not([hidden]) ~ :not([hidden])': { '--tw-space-y-reverse': '1', }, '.space-x-reverse > :not([hidden]) ~ :not([hidden])': { '--tw-space-x-reverse': '1', }, - }) - } else { - const generators = [ - (_size, modifier) => { - const size = _size === '0' ? '0px' : _size - return { - [`${nameClass('space-y', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-space-y-reverse': '0', - 'margin-top': `calc(${size} * calc(1 - var(--tw-space-y-reverse)))`, - 'margin-bottom': `calc(${size} * var(--tw-space-y-reverse))`, - }, - [`${nameClass('space-x', modifier)} > :not([hidden]) ~ :not([hidden])`]: { - '--tw-space-x-reverse': '0', - 'margin-right': `calc(${size} * var(--tw-space-x-reverse))`, - 'margin-left': `calc(${size} * calc(1 - var(--tw-space-x-reverse)))`, - }, - } - }, - ] - - const utilities = _.flatMap(generators, (generator) => { - return [ - ..._.flatMap(theme('space'), generator), - { - '.space-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '1', - }, - '.space-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '1', - }, - }, - ] - }) - - addUtilities(utilities, variants('space')) - } + }, + variants('space') + ) } } diff --git a/src/plugins/stroke.js b/src/plugins/stroke.js index b015b7602d24..3fb1ea9ce329 100644 --- a/src/plugins/stroke.js +++ b/src/plugins/stroke.js @@ -1,35 +1,21 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' import toColorValue from '../util/toColorValue' -import nameClass from '../util/nameClass' -import { asColor } from '../util/pluginUtils' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - if (config('mode') === 'jit') { - let colorPalette = flattenColorPalette(theme('stroke')) - - matchUtilities({ - stroke: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] + return function ({ matchUtilities, theme, variants }) { + matchUtilities( + { + stroke: (value) => { + return { + stroke: toColorValue(value), } - - return { [nameClass('stroke', modifier)]: { stroke: toColorValue(value) } } }, - }) - } else { - const colors = flattenColorPalette(theme('stroke')) - - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [nameClass('stroke', modifier), { stroke: toColorValue(value) }] - }) - ) - - addUtilities(utilities, variants('stroke')) - } + }, + { + values: flattenColorPalette(theme('stroke')), + variants: variants('stroke'), + type: 'color', + } + ) } } diff --git a/src/plugins/textColor.js b/src/plugins/textColor.js index db249d2009e6..a9b110109466 100644 --- a/src/plugins/textColor.js +++ b/src/plugins/textColor.js @@ -1,62 +1,27 @@ -import _ from 'lodash' import flattenColorPalette from '../util/flattenColorPalette' -import toColorValue from '../util/toColorValue' import withAlphaVariable from '../util/withAlphaVariable' -import nameClass from '../util/nameClass' -import { asColor } from '../util/pluginUtils' export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants, corePlugins }) { - if (config('mode') === 'jit') { - let colorPalette = flattenColorPalette(theme('textColor')) - - matchUtilities({ - text: (modifier) => { - let value = asColor(modifier, colorPalette) - - if (value === undefined) { - return [] - } - + return function ({ matchUtilities, theme, variants, corePlugins }) { + matchUtilities( + { + text: (value) => { if (!corePlugins('textOpacity')) { - return { - [nameClass('text', modifier)]: { - color: value, - }, - } + return { color: value } } - return { - [nameClass('text', modifier)]: withAlphaVariable({ - color: value, - property: 'color', - variable: '--tw-text-opacity', - }), - } - }, - }) - } else { - const colors = flattenColorPalette(theme('textColor')) - - const getProperties = (value) => { - if (corePlugins('textOpacity')) { return withAlphaVariable({ color: value, property: 'color', variable: '--tw-text-opacity', }) - } - - return { color: toColorValue(value) } + }, + }, + { + values: flattenColorPalette(theme('textColor')), + variants: variants('textColor'), + type: 'color', } - - const utilities = _.fromPairs( - _.map(colors, (value, modifier) => { - return [nameClass('text', modifier), getProperties(value)] - }) - ) - - addUtilities(utilities, variants('textColor')) - } + ) } } diff --git a/src/plugins/transitionProperty.js b/src/plugins/transitionProperty.js index d67109beea16..7aa84df89393 100644 --- a/src/plugins/transitionProperty.js +++ b/src/plugins/transitionProperty.js @@ -1,52 +1,27 @@ -import _ from 'lodash' -import nameClass from '../util/nameClass' - export default function () { - return function ({ config, matchUtilities, addUtilities, theme, variants }) { - const defaultTimingFunction = theme('transitionTimingFunction.DEFAULT') - const defaultDuration = theme('transitionDuration.DEFAULT') - - if (config('mode') === 'jit') { - matchUtilities({ - transition: (modifier, { theme }) => { - let value = theme.transitionProperty[modifier] - - if (value === undefined) { - return [] - } + return function ({ matchUtilities, theme, variants }) { + let defaultTimingFunction = theme('transitionTimingFunction.DEFAULT') + let defaultDuration = theme('transitionDuration.DEFAULT') + matchUtilities( + { + transition: (value) => { return { - [nameClass('transition', modifier)]: { - 'transition-property': value, - ...(value === 'none' - ? {} - : { - 'transition-timing-function': defaultTimingFunction, - 'transition-duration': defaultDuration, - }), - }, + 'transition-property': value, + ...(value === 'none' + ? {} + : { + 'transition-timing-function': defaultTimingFunction, + 'transition-duration': defaultDuration, + }), } }, - }) - } else { - const utilities = _.fromPairs( - _.map(theme('transitionProperty'), (value, modifier) => { - return [ - nameClass('transition', modifier), - { - 'transition-property': value, - ...(value === 'none' - ? {} - : { - 'transition-timing-function': defaultTimingFunction, - 'transition-duration': defaultDuration, - }), - }, - ] - }) - ) - - addUtilities(utilities, variants('transitionProperty')) - } + }, + { + values: theme('transitionProperty'), + variants: variants('transitionProperty'), + type: 'lookup', + } + ) } } diff --git a/src/util/createUtilityPlugin.js b/src/util/createUtilityPlugin.js index e5098edfaa48..1364ec6ae002 100644 --- a/src/util/createUtilityPlugin.js +++ b/src/util/createUtilityPlugin.js @@ -1,65 +1,46 @@ -import fromPairs from 'lodash/fromPairs' -import toPairs from 'lodash/toPairs' -import castArray from 'lodash/castArray' import transformThemeValue from './transformThemeValue' -import nameClass from '../util/nameClass' -import { asValue } from '../util/pluginUtils' +import { asValue, asList, asColor, asAngle, asLength, asLookupValue } from '../util/pluginUtils' + +let asMap = new Map([ + [asValue, 'any'], + [asList, 'list'], + [asColor, 'color'], + [asAngle, 'angle'], + [asLength, 'length'], + [asLookupValue, 'lookup'], +]) export default function createUtilityPlugin( themeKey, utilityVariations = [[themeKey, [themeKey]]], { filterDefault = false, resolveArbitraryValue = asValue } = {} ) { - const transformValue = transformThemeValue(themeKey) - return function ({ config, matchUtilities, addUtilities, variants, theme }) { - if (config('mode') === 'jit') { - for (let utilityVariation of utilityVariations) { - let group = Array.isArray(utilityVariation[0]) ? utilityVariation : [utilityVariation] - - matchUtilities( - group.reduce((obj, [classPrefix, properties]) => { - return Object.assign(obj, { - [classPrefix]: (modifier, { theme }) => { - let value = resolveArbitraryValue(modifier, theme[themeKey]) - - if (value === undefined) { - return [] - } - - return { - [nameClass(classPrefix, modifier)]: properties.reduce( - (obj, name) => Object.assign(obj, { [name]: transformValue(value) }), - {} - ), - } - }, - }) - }, {}) - ) - } - } else { - const pairs = toPairs(theme(themeKey)) - const utilities = utilityVariations.flatMap((utilityVariation) => { - let group = Array.isArray(utilityVariation[0]) ? utilityVariation : [utilityVariation] - return group.map(([classPrefix, properties]) => { - return fromPairs( - pairs - .filter(([key]) => { - return filterDefault ? key !== 'DEFAULT' : true - }) - .map(([key, value]) => { - return [ - nameClass(classPrefix, key), - fromPairs( - castArray(properties).map((property) => [property, transformValue(value)]) - ), - ] - }) - ) - }) - }) + let transformValue = transformThemeValue(themeKey) + return function ({ matchUtilities, variants, theme }) { + for (let utilityVariation of utilityVariations) { + let group = Array.isArray(utilityVariation[0]) ? utilityVariation : [utilityVariation] - return addUtilities(utilities, variants(themeKey)) + matchUtilities( + group.reduce((obj, [classPrefix, properties]) => { + return Object.assign(obj, { + [classPrefix]: (value) => { + return properties.reduce( + (obj, name) => Object.assign(obj, { [name]: transformValue(value) }), + {} + ) + }, + }) + }, {}), + { + values: filterDefault + ? Object.fromEntries( + Object.entries(theme(themeKey)).filter(([modifier]) => modifier !== 'DEFAULT') + ) + : theme(themeKey), + variants: variants(themeKey), + type: asMap.get(resolveArbitraryValue) ?? 'any', + } + ) } } } diff --git a/src/util/pluginUtils.js b/src/util/pluginUtils.js index a754e750db22..3b246b173ebb 100644 --- a/src/util/pluginUtils.js +++ b/src/util/pluginUtils.js @@ -137,18 +137,6 @@ export function asUnit(modifier, units, lookup = {}) { }) } -export function createSimpleStaticUtilityPlugin(styles) { - return function ({ matchUtilities }) { - matchUtilities( - Object.entries(styles).reduce((newStyles, [selector, rules]) => { - let result = { [selector]: rules } - newStyles[selector.slice(1)] = [result] - return newStyles - }, {}) - ) - } -} - export function asList(modifier, lookup = {}) { return asValue(modifier, lookup, { transform: (value) => { @@ -206,3 +194,16 @@ export function asLength(modifier, lookup = {}) { export function asLookupValue(modifier, lookup = {}) { return lookup[modifier] } + +let typeMap = { + any: asValue, + list: asList, + color: asColor, + angle: asAngle, + length: asLength, + lookup: asLookupValue, +} + +export function coerceValue(type, modifier, values) { + return typeMap[type](modifier, values) +} diff --git a/src/util/processPlugins.js b/src/util/processPlugins.js index cc2f9d33a8ba..b11613c6b542 100644 --- a/src/util/processPlugins.js +++ b/src/util/processPlugins.js @@ -9,6 +9,7 @@ import prefixSelector from '../util/prefixSelector' import wrapWithVariants from '../util/wrapWithVariants' import cloneNodes from '../util/cloneNodes' import transformThemeValue from './transformThemeValue' +import nameClass from '../util/nameClass' function parseStyles(styles) { if (!Array.isArray(styles)) { @@ -42,7 +43,11 @@ export default function (plugins, config) { } function addUtilities(utilities, options) { - const defaultOptions = { variants: [], respectPrefix: true, respectImportant: true } + const defaultOptions = { + variants: [], + respectPrefix: true, + respectImportant: true, + } options = Array.isArray(options) ? Object.assign({}, defaultOptions, { variants: options }) @@ -106,10 +111,24 @@ export default function (plugins, config) { matchUtilities: (matches, { values, variants, respectPrefix, respectImportant }) => { let modifierValues = Object.entries(values) - let result = Object.values(matches).flatMap((utilityFunction) => { - return modifierValues.map(([modifier, value]) => { - return utilityFunction(modifier, { value }) - }) + let result = Object.entries(matches).flatMap(([name, utilityFunction]) => { + return modifierValues + .map(([modifier, value]) => { + let declarations = utilityFunction(value, { + includeRules(rules, options) { + addUtilities(rules, options) + }, + }) + + if (!declarations) { + return null + } + + return { + [nameClass(name, modifier)]: declarations, + } + }) + .filter(Boolean) }) addUtilities(result, { variants, respectPrefix, respectImportant }) diff --git a/tests/fixtures/tailwind-output-flagged.css b/tests/fixtures/tailwind-output-flagged.css index 5c234b57f7f5..e718a71c36ba 100644 --- a/tests/fixtures/tailwind-output-flagged.css +++ b/tests/fixtures/tailwind-output-flagged.css @@ -1273,14 +1273,434 @@ video { left: -100%; } -.inset-y-0 { - top: 0px; - bottom: 0px; -} - .inset-x-0 { + left: 0px; right: 0px; +} + +.inset-x-1 { + left: 0.25rem; + right: 0.25rem; +} + +.inset-x-2 { + left: 0.5rem; + right: 0.5rem; +} + +.inset-x-3 { + left: 0.75rem; + right: 0.75rem; +} + +.inset-x-4 { + left: 1rem; + right: 1rem; +} + +.inset-x-5 { + left: 1.25rem; + right: 1.25rem; +} + +.inset-x-6 { + left: 1.5rem; + right: 1.5rem; +} + +.inset-x-7 { + left: 1.75rem; + right: 1.75rem; +} + +.inset-x-8 { + left: 2rem; + right: 2rem; +} + +.inset-x-9 { + left: 2.25rem; + right: 2.25rem; +} + +.inset-x-10 { + left: 2.5rem; + right: 2.5rem; +} + +.inset-x-11 { + left: 2.75rem; + right: 2.75rem; +} + +.inset-x-12 { + left: 3rem; + right: 3rem; +} + +.inset-x-14 { + left: 3.5rem; + right: 3.5rem; +} + +.inset-x-16 { + left: 4rem; + right: 4rem; +} + +.inset-x-20 { + left: 5rem; + right: 5rem; +} + +.inset-x-24 { + left: 6rem; + right: 6rem; +} + +.inset-x-28 { + left: 7rem; + right: 7rem; +} + +.inset-x-32 { + left: 8rem; + right: 8rem; +} + +.inset-x-36 { + left: 9rem; + right: 9rem; +} + +.inset-x-40 { + left: 10rem; + right: 10rem; +} + +.inset-x-44 { + left: 11rem; + right: 11rem; +} + +.inset-x-48 { + left: 12rem; + right: 12rem; +} + +.inset-x-52 { + left: 13rem; + right: 13rem; +} + +.inset-x-56 { + left: 14rem; + right: 14rem; +} + +.inset-x-60 { + left: 15rem; + right: 15rem; +} + +.inset-x-64 { + left: 16rem; + right: 16rem; +} + +.inset-x-72 { + left: 18rem; + right: 18rem; +} + +.inset-x-80 { + left: 20rem; + right: 20rem; +} + +.inset-x-96 { + left: 24rem; + right: 24rem; +} + +.inset-x-auto { + left: auto; + right: auto; +} + +.inset-x-px { + left: 1px; + right: 1px; +} + +.inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; +} + +.inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; +} + +.inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; +} + +.inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; +} + +.-inset-x-0 { left: 0px; + right: 0px; +} + +.-inset-x-1 { + left: -0.25rem; + right: -0.25rem; +} + +.-inset-x-2 { + left: -0.5rem; + right: -0.5rem; +} + +.-inset-x-3 { + left: -0.75rem; + right: -0.75rem; +} + +.-inset-x-4 { + left: -1rem; + right: -1rem; +} + +.-inset-x-5 { + left: -1.25rem; + right: -1.25rem; +} + +.-inset-x-6 { + left: -1.5rem; + right: -1.5rem; +} + +.-inset-x-7 { + left: -1.75rem; + right: -1.75rem; +} + +.-inset-x-8 { + left: -2rem; + right: -2rem; +} + +.-inset-x-9 { + left: -2.25rem; + right: -2.25rem; +} + +.-inset-x-10 { + left: -2.5rem; + right: -2.5rem; +} + +.-inset-x-11 { + left: -2.75rem; + right: -2.75rem; +} + +.-inset-x-12 { + left: -3rem; + right: -3rem; +} + +.-inset-x-14 { + left: -3.5rem; + right: -3.5rem; +} + +.-inset-x-16 { + left: -4rem; + right: -4rem; +} + +.-inset-x-20 { + left: -5rem; + right: -5rem; +} + +.-inset-x-24 { + left: -6rem; + right: -6rem; +} + +.-inset-x-28 { + left: -7rem; + right: -7rem; +} + +.-inset-x-32 { + left: -8rem; + right: -8rem; +} + +.-inset-x-36 { + left: -9rem; + right: -9rem; +} + +.-inset-x-40 { + left: -10rem; + right: -10rem; +} + +.-inset-x-44 { + left: -11rem; + right: -11rem; +} + +.-inset-x-48 { + left: -12rem; + right: -12rem; +} + +.-inset-x-52 { + left: -13rem; + right: -13rem; +} + +.-inset-x-56 { + left: -14rem; + right: -14rem; +} + +.-inset-x-60 { + left: -15rem; + right: -15rem; +} + +.-inset-x-64 { + left: -16rem; + right: -16rem; +} + +.-inset-x-72 { + left: -18rem; + right: -18rem; +} + +.-inset-x-80 { + left: -20rem; + right: -20rem; +} + +.-inset-x-96 { + left: -24rem; + right: -24rem; +} + +.-inset-x-px { + left: -1px; + right: -1px; +} + +.-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; +} + +.-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; +} + +.-inset-x-2\.5 { + left: -0.625rem; + right: -0.625rem; +} + +.-inset-x-3\.5 { + left: -0.875rem; + right: -0.875rem; +} + +.inset-x-1\/2 { + left: 50%; + right: 50%; +} + +.inset-x-1\/3 { + left: 33.333333%; + right: 33.333333%; +} + +.inset-x-2\/3 { + left: 66.666667%; + right: 66.666667%; +} + +.inset-x-1\/4 { + left: 25%; + right: 25%; +} + +.inset-x-2\/4 { + left: 50%; + right: 50%; +} + +.inset-x-3\/4 { + left: 75%; + right: 75%; +} + +.inset-x-full { + left: 100%; + right: 100%; +} + +.-inset-x-1\/2 { + left: -50%; + right: -50%; +} + +.-inset-x-1\/3 { + left: -33.333333%; + right: -33.333333%; +} + +.-inset-x-2\/3 { + left: -66.666667%; + right: -66.666667%; +} + +.-inset-x-1\/4 { + left: -25%; + right: -25%; +} + +.-inset-x-2\/4 { + left: -50%; + right: -50%; +} + +.-inset-x-3\/4 { + left: -75%; + right: -75%; +} + +.-inset-x-full { + left: -100%; + right: -100%; +} + +.inset-y-0 { + top: 0px; + bottom: 0px; } .inset-y-1 { @@ -1288,2195 +1708,1775 @@ video { bottom: 0.25rem; } -.inset-x-1 { - right: 0.25rem; - left: 0.25rem; -} - .inset-y-2 { top: 0.5rem; bottom: 0.5rem; } -.inset-x-2 { - right: 0.5rem; - left: 0.5rem; -} - .inset-y-3 { top: 0.75rem; bottom: 0.75rem; } -.inset-x-3 { - right: 0.75rem; - left: 0.75rem; -} - .inset-y-4 { top: 1rem; bottom: 1rem; } -.inset-x-4 { - right: 1rem; - left: 1rem; -} - .inset-y-5 { top: 1.25rem; bottom: 1.25rem; } -.inset-x-5 { - right: 1.25rem; - left: 1.25rem; -} - .inset-y-6 { top: 1.5rem; bottom: 1.5rem; } -.inset-x-6 { - right: 1.5rem; - left: 1.5rem; -} - .inset-y-7 { top: 1.75rem; bottom: 1.75rem; } -.inset-x-7 { - right: 1.75rem; - left: 1.75rem; -} - .inset-y-8 { top: 2rem; bottom: 2rem; } -.inset-x-8 { - right: 2rem; - left: 2rem; -} - .inset-y-9 { top: 2.25rem; bottom: 2.25rem; } -.inset-x-9 { - right: 2.25rem; - left: 2.25rem; -} - .inset-y-10 { top: 2.5rem; bottom: 2.5rem; } -.inset-x-10 { - right: 2.5rem; - left: 2.5rem; -} - .inset-y-11 { top: 2.75rem; bottom: 2.75rem; } -.inset-x-11 { - right: 2.75rem; - left: 2.75rem; -} - .inset-y-12 { top: 3rem; bottom: 3rem; } -.inset-x-12 { - right: 3rem; - left: 3rem; -} - .inset-y-14 { top: 3.5rem; bottom: 3.5rem; } -.inset-x-14 { - right: 3.5rem; - left: 3.5rem; -} - .inset-y-16 { top: 4rem; bottom: 4rem; } -.inset-x-16 { - right: 4rem; - left: 4rem; -} - .inset-y-20 { top: 5rem; bottom: 5rem; } -.inset-x-20 { - right: 5rem; - left: 5rem; -} - .inset-y-24 { top: 6rem; bottom: 6rem; } -.inset-x-24 { - right: 6rem; - left: 6rem; -} - .inset-y-28 { top: 7rem; bottom: 7rem; } -.inset-x-28 { - right: 7rem; - left: 7rem; -} - .inset-y-32 { top: 8rem; bottom: 8rem; } -.inset-x-32 { - right: 8rem; - left: 8rem; -} - .inset-y-36 { top: 9rem; bottom: 9rem; } -.inset-x-36 { - right: 9rem; - left: 9rem; -} - .inset-y-40 { top: 10rem; bottom: 10rem; } -.inset-x-40 { - right: 10rem; - left: 10rem; -} - .inset-y-44 { top: 11rem; bottom: 11rem; } -.inset-x-44 { - right: 11rem; - left: 11rem; -} - .inset-y-48 { top: 12rem; bottom: 12rem; } -.inset-x-48 { - right: 12rem; - left: 12rem; -} - .inset-y-52 { top: 13rem; bottom: 13rem; } -.inset-x-52 { - right: 13rem; - left: 13rem; -} - .inset-y-56 { top: 14rem; bottom: 14rem; } -.inset-x-56 { - right: 14rem; - left: 14rem; -} - .inset-y-60 { top: 15rem; bottom: 15rem; } -.inset-x-60 { - right: 15rem; - left: 15rem; -} - .inset-y-64 { top: 16rem; bottom: 16rem; } -.inset-x-64 { - right: 16rem; - left: 16rem; -} - .inset-y-72 { top: 18rem; bottom: 18rem; } -.inset-x-72 { - right: 18rem; - left: 18rem; -} - .inset-y-80 { top: 20rem; bottom: 20rem; } -.inset-x-80 { - right: 20rem; - left: 20rem; -} - .inset-y-96 { top: 24rem; bottom: 24rem; } -.inset-x-96 { - right: 24rem; - left: 24rem; -} - .inset-y-auto { top: auto; bottom: auto; } -.inset-x-auto { - right: auto; - left: auto; -} - .inset-y-px { top: 1px; bottom: 1px; } -.inset-x-px { - right: 1px; - left: 1px; -} - .inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } -.inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; -} - .inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } -.inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; -} - .inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } -.inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; -} - .inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } -.inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; -} - .-inset-y-0 { top: 0px; bottom: 0px; } -.-inset-x-0 { - right: 0px; - left: 0px; -} - .-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } -.-inset-x-1 { - right: -0.25rem; - left: -0.25rem; -} - .-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } -.-inset-x-2 { - right: -0.5rem; - left: -0.5rem; -} - .-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } -.-inset-x-3 { - right: -0.75rem; - left: -0.75rem; -} - .-inset-y-4 { top: -1rem; bottom: -1rem; } -.-inset-x-4 { - right: -1rem; - left: -1rem; -} - .-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } -.-inset-x-5 { - right: -1.25rem; - left: -1.25rem; -} - .-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } -.-inset-x-6 { - right: -1.5rem; - left: -1.5rem; -} - .-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } -.-inset-x-7 { - right: -1.75rem; - left: -1.75rem; -} - .-inset-y-8 { top: -2rem; bottom: -2rem; } -.-inset-x-8 { - right: -2rem; - left: -2rem; -} - .-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } -.-inset-x-9 { - right: -2.25rem; - left: -2.25rem; -} - .-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } -.-inset-x-10 { - right: -2.5rem; - left: -2.5rem; -} - .-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } -.-inset-x-11 { - right: -2.75rem; - left: -2.75rem; -} - .-inset-y-12 { top: -3rem; bottom: -3rem; } -.-inset-x-12 { - right: -3rem; - left: -3rem; -} - .-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } -.-inset-x-14 { - right: -3.5rem; - left: -3.5rem; -} - .-inset-y-16 { top: -4rem; bottom: -4rem; } -.-inset-x-16 { - right: -4rem; - left: -4rem; -} - .-inset-y-20 { top: -5rem; bottom: -5rem; } -.-inset-x-20 { - right: -5rem; - left: -5rem; -} - .-inset-y-24 { top: -6rem; bottom: -6rem; } -.-inset-x-24 { - right: -6rem; - left: -6rem; -} - .-inset-y-28 { top: -7rem; bottom: -7rem; } -.-inset-x-28 { - right: -7rem; - left: -7rem; -} - .-inset-y-32 { top: -8rem; bottom: -8rem; } -.-inset-x-32 { - right: -8rem; - left: -8rem; -} - .-inset-y-36 { top: -9rem; bottom: -9rem; } -.-inset-x-36 { - right: -9rem; - left: -9rem; -} - .-inset-y-40 { top: -10rem; bottom: -10rem; } -.-inset-x-40 { - right: -10rem; - left: -10rem; -} - .-inset-y-44 { top: -11rem; bottom: -11rem; } -.-inset-x-44 { - right: -11rem; - left: -11rem; -} - .-inset-y-48 { top: -12rem; bottom: -12rem; } -.-inset-x-48 { - right: -12rem; - left: -12rem; -} - .-inset-y-52 { top: -13rem; bottom: -13rem; } -.-inset-x-52 { - right: -13rem; - left: -13rem; -} - .-inset-y-56 { top: -14rem; bottom: -14rem; } -.-inset-x-56 { - right: -14rem; - left: -14rem; -} - .-inset-y-60 { top: -15rem; bottom: -15rem; } -.-inset-x-60 { - right: -15rem; - left: -15rem; -} - .-inset-y-64 { top: -16rem; bottom: -16rem; } -.-inset-x-64 { - right: -16rem; - left: -16rem; -} - .-inset-y-72 { top: -18rem; bottom: -18rem; } -.-inset-x-72 { - right: -18rem; - left: -18rem; -} - .-inset-y-80 { top: -20rem; bottom: -20rem; } -.-inset-x-80 { - right: -20rem; - left: -20rem; -} - .-inset-y-96 { top: -24rem; bottom: -24rem; } -.-inset-x-96 { - right: -24rem; - left: -24rem; -} - .-inset-y-px { top: -1px; bottom: -1px; } -.-inset-x-px { - right: -1px; - left: -1px; -} - .-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } -.-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; -} - .-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } -.-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; -} - .-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } -.-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; -} - .-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } -.-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; -} - .inset-y-1\/2 { top: 50%; bottom: 50%; } -.inset-x-1\/2 { - right: 50%; - left: 50%; -} - .inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } -.inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; -} - .inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } -.inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; -} - .inset-y-1\/4 { top: 25%; bottom: 25%; } -.inset-x-1\/4 { - right: 25%; - left: 25%; -} - .inset-y-2\/4 { top: 50%; bottom: 50%; } -.inset-x-2\/4 { - right: 50%; - left: 50%; -} - .inset-y-3\/4 { top: 75%; bottom: 75%; } -.inset-x-3\/4 { - right: 75%; - left: 75%; -} - .inset-y-full { top: 100%; bottom: 100%; } -.inset-x-full { - right: 100%; - left: 100%; -} - .-inset-y-1\/2 { top: -50%; bottom: -50%; } -.-inset-x-1\/2 { - right: -50%; - left: -50%; -} - .-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } -.-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; -} - .-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } -.-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; -} - .-inset-y-1\/4 { top: -25%; bottom: -25%; } -.-inset-x-1\/4 { - right: -25%; - left: -25%; -} - .-inset-y-2\/4 { top: -50%; bottom: -50%; } -.-inset-x-2\/4 { - right: -50%; - left: -50%; -} - .-inset-y-3\/4 { top: -75%; bottom: -75%; } -.-inset-x-3\/4 { - right: -75%; - left: -75%; -} - .-inset-y-full { top: -100%; bottom: -100%; } -.-inset-x-full { - right: -100%; - left: -100%; -} - .top-0 { top: 0px; } -.right-0 { - right: 0px; +.top-1 { + top: 0.25rem; } -.bottom-0 { - bottom: 0px; +.top-2 { + top: 0.5rem; } -.left-0 { - left: 0px; +.top-3 { + top: 0.75rem; } -.top-1 { - top: 0.25rem; +.top-4 { + top: 1rem; } -.right-1 { - right: 0.25rem; +.top-5 { + top: 1.25rem; } -.bottom-1 { - bottom: 0.25rem; +.top-6 { + top: 1.5rem; } -.left-1 { - left: 0.25rem; +.top-7 { + top: 1.75rem; } -.top-2 { - top: 0.5rem; +.top-8 { + top: 2rem; } -.right-2 { - right: 0.5rem; +.top-9 { + top: 2.25rem; } -.bottom-2 { - bottom: 0.5rem; +.top-10 { + top: 2.5rem; } -.left-2 { - left: 0.5rem; +.top-11 { + top: 2.75rem; } -.top-3 { - top: 0.75rem; +.top-12 { + top: 3rem; } -.right-3 { - right: 0.75rem; +.top-14 { + top: 3.5rem; } -.bottom-3 { - bottom: 0.75rem; +.top-16 { + top: 4rem; } -.left-3 { - left: 0.75rem; +.top-20 { + top: 5rem; } -.top-4 { - top: 1rem; +.top-24 { + top: 6rem; } -.right-4 { - right: 1rem; +.top-28 { + top: 7rem; } -.bottom-4 { - bottom: 1rem; +.top-32 { + top: 8rem; } -.left-4 { - left: 1rem; +.top-36 { + top: 9rem; } -.top-5 { - top: 1.25rem; +.top-40 { + top: 10rem; } -.right-5 { - right: 1.25rem; +.top-44 { + top: 11rem; } -.bottom-5 { - bottom: 1.25rem; +.top-48 { + top: 12rem; } -.left-5 { - left: 1.25rem; +.top-52 { + top: 13rem; } -.top-6 { - top: 1.5rem; +.top-56 { + top: 14rem; } -.right-6 { - right: 1.5rem; +.top-60 { + top: 15rem; } -.bottom-6 { - bottom: 1.5rem; +.top-64 { + top: 16rem; } -.left-6 { - left: 1.5rem; +.top-72 { + top: 18rem; } -.top-7 { - top: 1.75rem; +.top-80 { + top: 20rem; } -.right-7 { - right: 1.75rem; +.top-96 { + top: 24rem; } -.bottom-7 { - bottom: 1.75rem; +.top-auto { + top: auto; } -.left-7 { - left: 1.75rem; +.top-px { + top: 1px; } -.top-8 { - top: 2rem; +.top-0\.5 { + top: 0.125rem; } -.right-8 { - right: 2rem; +.top-1\.5 { + top: 0.375rem; } -.bottom-8 { - bottom: 2rem; +.top-2\.5 { + top: 0.625rem; } -.left-8 { - left: 2rem; +.top-3\.5 { + top: 0.875rem; } -.top-9 { - top: 2.25rem; +.-top-0 { + top: 0px; } -.right-9 { - right: 2.25rem; +.-top-1 { + top: -0.25rem; } -.bottom-9 { - bottom: 2.25rem; +.-top-2 { + top: -0.5rem; } -.left-9 { - left: 2.25rem; +.-top-3 { + top: -0.75rem; } -.top-10 { - top: 2.5rem; +.-top-4 { + top: -1rem; } -.right-10 { - right: 2.5rem; +.-top-5 { + top: -1.25rem; } -.bottom-10 { - bottom: 2.5rem; +.-top-6 { + top: -1.5rem; } -.left-10 { - left: 2.5rem; +.-top-7 { + top: -1.75rem; } -.top-11 { - top: 2.75rem; +.-top-8 { + top: -2rem; } -.right-11 { - right: 2.75rem; +.-top-9 { + top: -2.25rem; } -.bottom-11 { - bottom: 2.75rem; +.-top-10 { + top: -2.5rem; } -.left-11 { - left: 2.75rem; +.-top-11 { + top: -2.75rem; } -.top-12 { - top: 3rem; +.-top-12 { + top: -3rem; } -.right-12 { - right: 3rem; +.-top-14 { + top: -3.5rem; } -.bottom-12 { - bottom: 3rem; +.-top-16 { + top: -4rem; } -.left-12 { - left: 3rem; +.-top-20 { + top: -5rem; } -.top-14 { - top: 3.5rem; +.-top-24 { + top: -6rem; } -.right-14 { - right: 3.5rem; +.-top-28 { + top: -7rem; } -.bottom-14 { - bottom: 3.5rem; +.-top-32 { + top: -8rem; } -.left-14 { - left: 3.5rem; +.-top-36 { + top: -9rem; } -.top-16 { - top: 4rem; +.-top-40 { + top: -10rem; } -.right-16 { - right: 4rem; +.-top-44 { + top: -11rem; } -.bottom-16 { - bottom: 4rem; +.-top-48 { + top: -12rem; } -.left-16 { - left: 4rem; +.-top-52 { + top: -13rem; } -.top-20 { - top: 5rem; +.-top-56 { + top: -14rem; } -.right-20 { - right: 5rem; +.-top-60 { + top: -15rem; } -.bottom-20 { - bottom: 5rem; +.-top-64 { + top: -16rem; } -.left-20 { - left: 5rem; +.-top-72 { + top: -18rem; } -.top-24 { - top: 6rem; +.-top-80 { + top: -20rem; } -.right-24 { - right: 6rem; +.-top-96 { + top: -24rem; } -.bottom-24 { - bottom: 6rem; +.-top-px { + top: -1px; } -.left-24 { - left: 6rem; +.-top-0\.5 { + top: -0.125rem; } -.top-28 { - top: 7rem; +.-top-1\.5 { + top: -0.375rem; } -.right-28 { - right: 7rem; +.-top-2\.5 { + top: -0.625rem; } -.bottom-28 { - bottom: 7rem; +.-top-3\.5 { + top: -0.875rem; } -.left-28 { - left: 7rem; +.top-1\/2 { + top: 50%; } -.top-32 { - top: 8rem; +.top-1\/3 { + top: 33.333333%; } -.right-32 { - right: 8rem; +.top-2\/3 { + top: 66.666667%; } -.bottom-32 { - bottom: 8rem; +.top-1\/4 { + top: 25%; } -.left-32 { - left: 8rem; +.top-2\/4 { + top: 50%; } -.top-36 { - top: 9rem; +.top-3\/4 { + top: 75%; } -.right-36 { - right: 9rem; +.top-full { + top: 100%; } -.bottom-36 { - bottom: 9rem; +.-top-1\/2 { + top: -50%; } -.left-36 { - left: 9rem; +.-top-1\/3 { + top: -33.333333%; } -.top-40 { - top: 10rem; +.-top-2\/3 { + top: -66.666667%; } -.right-40 { - right: 10rem; +.-top-1\/4 { + top: -25%; } -.bottom-40 { - bottom: 10rem; +.-top-2\/4 { + top: -50%; } -.left-40 { - left: 10rem; +.-top-3\/4 { + top: -75%; } -.top-44 { - top: 11rem; +.-top-full { + top: -100%; } -.right-44 { - right: 11rem; +.right-0 { + right: 0px; } -.bottom-44 { - bottom: 11rem; +.right-1 { + right: 0.25rem; } -.left-44 { - left: 11rem; +.right-2 { + right: 0.5rem; } -.top-48 { - top: 12rem; +.right-3 { + right: 0.75rem; } -.right-48 { - right: 12rem; +.right-4 { + right: 1rem; } -.bottom-48 { - bottom: 12rem; +.right-5 { + right: 1.25rem; } -.left-48 { - left: 12rem; +.right-6 { + right: 1.5rem; } -.top-52 { - top: 13rem; +.right-7 { + right: 1.75rem; } -.right-52 { - right: 13rem; +.right-8 { + right: 2rem; } -.bottom-52 { - bottom: 13rem; +.right-9 { + right: 2.25rem; } -.left-52 { - left: 13rem; +.right-10 { + right: 2.5rem; } -.top-56 { - top: 14rem; +.right-11 { + right: 2.75rem; } -.right-56 { - right: 14rem; +.right-12 { + right: 3rem; } -.bottom-56 { - bottom: 14rem; +.right-14 { + right: 3.5rem; } -.left-56 { - left: 14rem; +.right-16 { + right: 4rem; } -.top-60 { - top: 15rem; +.right-20 { + right: 5rem; } -.right-60 { - right: 15rem; +.right-24 { + right: 6rem; } -.bottom-60 { - bottom: 15rem; +.right-28 { + right: 7rem; } -.left-60 { - left: 15rem; +.right-32 { + right: 8rem; } -.top-64 { - top: 16rem; +.right-36 { + right: 9rem; } -.right-64 { - right: 16rem; +.right-40 { + right: 10rem; } -.bottom-64 { - bottom: 16rem; +.right-44 { + right: 11rem; } -.left-64 { - left: 16rem; +.right-48 { + right: 12rem; } -.top-72 { - top: 18rem; +.right-52 { + right: 13rem; } -.right-72 { - right: 18rem; +.right-56 { + right: 14rem; } -.bottom-72 { - bottom: 18rem; +.right-60 { + right: 15rem; } -.left-72 { - left: 18rem; +.right-64 { + right: 16rem; } -.top-80 { - top: 20rem; +.right-72 { + right: 18rem; } .right-80 { right: 20rem; } -.bottom-80 { - bottom: 20rem; +.right-96 { + right: 24rem; } -.left-80 { - left: 20rem; +.right-auto { + right: auto; } -.top-96 { - top: 24rem; +.right-px { + right: 1px; } -.right-96 { - right: 24rem; +.right-0\.5 { + right: 0.125rem; } -.bottom-96 { - bottom: 24rem; +.right-1\.5 { + right: 0.375rem; } -.left-96 { - left: 24rem; +.right-2\.5 { + right: 0.625rem; } -.top-auto { - top: auto; +.right-3\.5 { + right: 0.875rem; } -.right-auto { - right: auto; +.-right-0 { + right: 0px; } -.bottom-auto { - bottom: auto; +.-right-1 { + right: -0.25rem; } -.left-auto { - left: auto; +.-right-2 { + right: -0.5rem; } -.top-px { - top: 1px; +.-right-3 { + right: -0.75rem; } -.right-px { - right: 1px; +.-right-4 { + right: -1rem; } -.bottom-px { - bottom: 1px; +.-right-5 { + right: -1.25rem; } -.left-px { - left: 1px; +.-right-6 { + right: -1.5rem; } -.top-0\.5 { - top: 0.125rem; +.-right-7 { + right: -1.75rem; } -.right-0\.5 { - right: 0.125rem; +.-right-8 { + right: -2rem; } -.bottom-0\.5 { - bottom: 0.125rem; +.-right-9 { + right: -2.25rem; } -.left-0\.5 { - left: 0.125rem; +.-right-10 { + right: -2.5rem; } -.top-1\.5 { - top: 0.375rem; +.-right-11 { + right: -2.75rem; } -.right-1\.5 { - right: 0.375rem; +.-right-12 { + right: -3rem; } -.bottom-1\.5 { - bottom: 0.375rem; +.-right-14 { + right: -3.5rem; } -.left-1\.5 { - left: 0.375rem; +.-right-16 { + right: -4rem; } -.top-2\.5 { - top: 0.625rem; +.-right-20 { + right: -5rem; } -.right-2\.5 { - right: 0.625rem; +.-right-24 { + right: -6rem; } -.bottom-2\.5 { - bottom: 0.625rem; +.-right-28 { + right: -7rem; } -.left-2\.5 { - left: 0.625rem; +.-right-32 { + right: -8rem; } -.top-3\.5 { - top: 0.875rem; +.-right-36 { + right: -9rem; } -.right-3\.5 { - right: 0.875rem; +.-right-40 { + right: -10rem; } -.bottom-3\.5 { - bottom: 0.875rem; +.-right-44 { + right: -11rem; } -.left-3\.5 { - left: 0.875rem; +.-right-48 { + right: -12rem; } -.-top-0 { - top: 0px; +.-right-52 { + right: -13rem; } -.-right-0 { - right: 0px; +.-right-56 { + right: -14rem; } -.-bottom-0 { - bottom: 0px; +.-right-60 { + right: -15rem; } -.-left-0 { - left: 0px; +.-right-64 { + right: -16rem; } -.-top-1 { - top: -0.25rem; +.-right-72 { + right: -18rem; } -.-right-1 { - right: -0.25rem; +.-right-80 { + right: -20rem; } -.-bottom-1 { - bottom: -0.25rem; +.-right-96 { + right: -24rem; } -.-left-1 { - left: -0.25rem; +.-right-px { + right: -1px; } -.-top-2 { - top: -0.5rem; +.-right-0\.5 { + right: -0.125rem; } -.-right-2 { - right: -0.5rem; +.-right-1\.5 { + right: -0.375rem; } -.-bottom-2 { - bottom: -0.5rem; +.-right-2\.5 { + right: -0.625rem; } -.-left-2 { - left: -0.5rem; +.-right-3\.5 { + right: -0.875rem; } -.-top-3 { - top: -0.75rem; +.right-1\/2 { + right: 50%; } -.-right-3 { - right: -0.75rem; +.right-1\/3 { + right: 33.333333%; } -.-bottom-3 { - bottom: -0.75rem; +.right-2\/3 { + right: 66.666667%; } -.-left-3 { - left: -0.75rem; +.right-1\/4 { + right: 25%; } -.-top-4 { - top: -1rem; +.right-2\/4 { + right: 50%; } -.-right-4 { - right: -1rem; +.right-3\/4 { + right: 75%; } -.-bottom-4 { - bottom: -1rem; +.right-full { + right: 100%; } -.-left-4 { - left: -1rem; +.-right-1\/2 { + right: -50%; } -.-top-5 { - top: -1.25rem; +.-right-1\/3 { + right: -33.333333%; } -.-right-5 { - right: -1.25rem; +.-right-2\/3 { + right: -66.666667%; } -.-bottom-5 { - bottom: -1.25rem; +.-right-1\/4 { + right: -25%; } -.-left-5 { - left: -1.25rem; +.-right-2\/4 { + right: -50%; } -.-top-6 { - top: -1.5rem; +.-right-3\/4 { + right: -75%; } -.-right-6 { - right: -1.5rem; +.-right-full { + right: -100%; } -.-bottom-6 { - bottom: -1.5rem; +.bottom-0 { + bottom: 0px; } -.-left-6 { - left: -1.5rem; +.bottom-1 { + bottom: 0.25rem; } -.-top-7 { - top: -1.75rem; +.bottom-2 { + bottom: 0.5rem; } -.-right-7 { - right: -1.75rem; +.bottom-3 { + bottom: 0.75rem; } -.-bottom-7 { - bottom: -1.75rem; +.bottom-4 { + bottom: 1rem; } -.-left-7 { - left: -1.75rem; +.bottom-5 { + bottom: 1.25rem; } -.-top-8 { - top: -2rem; +.bottom-6 { + bottom: 1.5rem; } -.-right-8 { - right: -2rem; +.bottom-7 { + bottom: 1.75rem; } -.-bottom-8 { - bottom: -2rem; +.bottom-8 { + bottom: 2rem; } -.-left-8 { - left: -2rem; +.bottom-9 { + bottom: 2.25rem; } -.-top-9 { - top: -2.25rem; +.bottom-10 { + bottom: 2.5rem; } -.-right-9 { - right: -2.25rem; +.bottom-11 { + bottom: 2.75rem; } -.-bottom-9 { - bottom: -2.25rem; +.bottom-12 { + bottom: 3rem; } -.-left-9 { - left: -2.25rem; +.bottom-14 { + bottom: 3.5rem; } -.-top-10 { - top: -2.5rem; +.bottom-16 { + bottom: 4rem; } -.-right-10 { - right: -2.5rem; +.bottom-20 { + bottom: 5rem; } -.-bottom-10 { - bottom: -2.5rem; +.bottom-24 { + bottom: 6rem; } -.-left-10 { - left: -2.5rem; +.bottom-28 { + bottom: 7rem; } -.-top-11 { - top: -2.75rem; +.bottom-32 { + bottom: 8rem; } -.-right-11 { - right: -2.75rem; +.bottom-36 { + bottom: 9rem; } -.-bottom-11 { - bottom: -2.75rem; +.bottom-40 { + bottom: 10rem; } -.-left-11 { - left: -2.75rem; +.bottom-44 { + bottom: 11rem; } -.-top-12 { - top: -3rem; +.bottom-48 { + bottom: 12rem; } -.-right-12 { - right: -3rem; +.bottom-52 { + bottom: 13rem; } -.-bottom-12 { - bottom: -3rem; +.bottom-56 { + bottom: 14rem; } -.-left-12 { - left: -3rem; +.bottom-60 { + bottom: 15rem; } -.-top-14 { - top: -3.5rem; +.bottom-64 { + bottom: 16rem; } -.-right-14 { - right: -3.5rem; +.bottom-72 { + bottom: 18rem; } -.-bottom-14 { - bottom: -3.5rem; +.bottom-80 { + bottom: 20rem; } -.-left-14 { - left: -3.5rem; +.bottom-96 { + bottom: 24rem; } -.-top-16 { - top: -4rem; +.bottom-auto { + bottom: auto; } -.-right-16 { - right: -4rem; +.bottom-px { + bottom: 1px; } -.-bottom-16 { - bottom: -4rem; +.bottom-0\.5 { + bottom: 0.125rem; } -.-left-16 { - left: -4rem; +.bottom-1\.5 { + bottom: 0.375rem; } -.-top-20 { - top: -5rem; +.bottom-2\.5 { + bottom: 0.625rem; } -.-right-20 { - right: -5rem; +.bottom-3\.5 { + bottom: 0.875rem; } -.-bottom-20 { - bottom: -5rem; +.-bottom-0 { + bottom: 0px; } -.-left-20 { - left: -5rem; +.-bottom-1 { + bottom: -0.25rem; } -.-top-24 { - top: -6rem; +.-bottom-2 { + bottom: -0.5rem; } -.-right-24 { - right: -6rem; +.-bottom-3 { + bottom: -0.75rem; } -.-bottom-24 { - bottom: -6rem; +.-bottom-4 { + bottom: -1rem; } -.-left-24 { - left: -6rem; +.-bottom-5 { + bottom: -1.25rem; } -.-top-28 { - top: -7rem; +.-bottom-6 { + bottom: -1.5rem; } -.-right-28 { - right: -7rem; +.-bottom-7 { + bottom: -1.75rem; } -.-bottom-28 { - bottom: -7rem; +.-bottom-8 { + bottom: -2rem; } -.-left-28 { - left: -7rem; +.-bottom-9 { + bottom: -2.25rem; } -.-top-32 { - top: -8rem; +.-bottom-10 { + bottom: -2.5rem; } -.-right-32 { - right: -8rem; +.-bottom-11 { + bottom: -2.75rem; } -.-bottom-32 { - bottom: -8rem; +.-bottom-12 { + bottom: -3rem; } -.-left-32 { - left: -8rem; +.-bottom-14 { + bottom: -3.5rem; } -.-top-36 { - top: -9rem; +.-bottom-16 { + bottom: -4rem; } -.-right-36 { - right: -9rem; +.-bottom-20 { + bottom: -5rem; } -.-bottom-36 { - bottom: -9rem; +.-bottom-24 { + bottom: -6rem; } -.-left-36 { - left: -9rem; +.-bottom-28 { + bottom: -7rem; } -.-top-40 { - top: -10rem; +.-bottom-32 { + bottom: -8rem; } -.-right-40 { - right: -10rem; +.-bottom-36 { + bottom: -9rem; } .-bottom-40 { bottom: -10rem; } -.-left-40 { - left: -10rem; +.-bottom-44 { + bottom: -11rem; } -.-top-44 { - top: -11rem; +.-bottom-48 { + bottom: -12rem; } -.-right-44 { - right: -11rem; +.-bottom-52 { + bottom: -13rem; } -.-bottom-44 { - bottom: -11rem; +.-bottom-56 { + bottom: -14rem; } -.-left-44 { - left: -11rem; +.-bottom-60 { + bottom: -15rem; } -.-top-48 { - top: -12rem; +.-bottom-64 { + bottom: -16rem; } -.-right-48 { - right: -12rem; +.-bottom-72 { + bottom: -18rem; } -.-bottom-48 { - bottom: -12rem; +.-bottom-80 { + bottom: -20rem; } -.-left-48 { - left: -12rem; +.-bottom-96 { + bottom: -24rem; } -.-top-52 { - top: -13rem; +.-bottom-px { + bottom: -1px; } -.-right-52 { - right: -13rem; +.-bottom-0\.5 { + bottom: -0.125rem; } -.-bottom-52 { - bottom: -13rem; +.-bottom-1\.5 { + bottom: -0.375rem; } -.-left-52 { - left: -13rem; +.-bottom-2\.5 { + bottom: -0.625rem; } -.-top-56 { - top: -14rem; +.-bottom-3\.5 { + bottom: -0.875rem; } -.-right-56 { - right: -14rem; +.bottom-1\/2 { + bottom: 50%; } -.-bottom-56 { - bottom: -14rem; +.bottom-1\/3 { + bottom: 33.333333%; } -.-left-56 { - left: -14rem; +.bottom-2\/3 { + bottom: 66.666667%; } -.-top-60 { - top: -15rem; +.bottom-1\/4 { + bottom: 25%; } -.-right-60 { - right: -15rem; +.bottom-2\/4 { + bottom: 50%; } -.-bottom-60 { - bottom: -15rem; +.bottom-3\/4 { + bottom: 75%; } -.-left-60 { - left: -15rem; +.bottom-full { + bottom: 100%; } -.-top-64 { - top: -16rem; +.-bottom-1\/2 { + bottom: -50%; } -.-right-64 { - right: -16rem; +.-bottom-1\/3 { + bottom: -33.333333%; } -.-bottom-64 { - bottom: -16rem; +.-bottom-2\/3 { + bottom: -66.666667%; } -.-left-64 { - left: -16rem; +.-bottom-1\/4 { + bottom: -25%; } -.-top-72 { - top: -18rem; +.-bottom-2\/4 { + bottom: -50%; } -.-right-72 { - right: -18rem; +.-bottom-3\/4 { + bottom: -75%; } -.-bottom-72 { - bottom: -18rem; +.-bottom-full { + bottom: -100%; } -.-left-72 { - left: -18rem; +.left-0 { + left: 0px; } -.-top-80 { - top: -20rem; +.left-1 { + left: 0.25rem; } -.-right-80 { - right: -20rem; +.left-2 { + left: 0.5rem; } -.-bottom-80 { - bottom: -20rem; +.left-3 { + left: 0.75rem; } -.-left-80 { - left: -20rem; +.left-4 { + left: 1rem; } -.-top-96 { - top: -24rem; +.left-5 { + left: 1.25rem; } -.-right-96 { - right: -24rem; +.left-6 { + left: 1.5rem; } -.-bottom-96 { - bottom: -24rem; +.left-7 { + left: 1.75rem; } -.-left-96 { - left: -24rem; +.left-8 { + left: 2rem; } -.-top-px { - top: -1px; +.left-9 { + left: 2.25rem; } -.-right-px { - right: -1px; +.left-10 { + left: 2.5rem; } -.-bottom-px { - bottom: -1px; +.left-11 { + left: 2.75rem; } -.-left-px { - left: -1px; +.left-12 { + left: 3rem; } -.-top-0\.5 { - top: -0.125rem; +.left-14 { + left: 3.5rem; } -.-right-0\.5 { - right: -0.125rem; +.left-16 { + left: 4rem; } -.-bottom-0\.5 { - bottom: -0.125rem; +.left-20 { + left: 5rem; } -.-left-0\.5 { - left: -0.125rem; +.left-24 { + left: 6rem; } -.-top-1\.5 { - top: -0.375rem; +.left-28 { + left: 7rem; } -.-right-1\.5 { - right: -0.375rem; +.left-32 { + left: 8rem; } -.-bottom-1\.5 { - bottom: -0.375rem; +.left-36 { + left: 9rem; } -.-left-1\.5 { - left: -0.375rem; +.left-40 { + left: 10rem; } -.-top-2\.5 { - top: -0.625rem; +.left-44 { + left: 11rem; } -.-right-2\.5 { - right: -0.625rem; +.left-48 { + left: 12rem; } -.-bottom-2\.5 { - bottom: -0.625rem; +.left-52 { + left: 13rem; } -.-left-2\.5 { - left: -0.625rem; +.left-56 { + left: 14rem; } -.-top-3\.5 { - top: -0.875rem; +.left-60 { + left: 15rem; } -.-right-3\.5 { - right: -0.875rem; +.left-64 { + left: 16rem; } -.-bottom-3\.5 { - bottom: -0.875rem; +.left-72 { + left: 18rem; } -.-left-3\.5 { - left: -0.875rem; +.left-80 { + left: 20rem; } -.top-1\/2 { - top: 50%; +.left-96 { + left: 24rem; } -.right-1\/2 { - right: 50%; +.left-auto { + left: auto; } -.bottom-1\/2 { - bottom: 50%; +.left-px { + left: 1px; } -.left-1\/2 { - left: 50%; +.left-0\.5 { + left: 0.125rem; } -.top-1\/3 { - top: 33.333333%; +.left-1\.5 { + left: 0.375rem; } -.right-1\/3 { - right: 33.333333%; +.left-2\.5 { + left: 0.625rem; } -.bottom-1\/3 { - bottom: 33.333333%; +.left-3\.5 { + left: 0.875rem; } -.left-1\/3 { - left: 33.333333%; +.-left-0 { + left: 0px; } -.top-2\/3 { - top: 66.666667%; +.-left-1 { + left: -0.25rem; } -.right-2\/3 { - right: 66.666667%; +.-left-2 { + left: -0.5rem; } -.bottom-2\/3 { - bottom: 66.666667%; +.-left-3 { + left: -0.75rem; } -.left-2\/3 { - left: 66.666667%; +.-left-4 { + left: -1rem; } -.top-1\/4 { - top: 25%; +.-left-5 { + left: -1.25rem; } -.right-1\/4 { - right: 25%; +.-left-6 { + left: -1.5rem; } -.bottom-1\/4 { - bottom: 25%; +.-left-7 { + left: -1.75rem; } -.left-1\/4 { - left: 25%; +.-left-8 { + left: -2rem; } -.top-2\/4 { - top: 50%; +.-left-9 { + left: -2.25rem; } -.right-2\/4 { - right: 50%; +.-left-10 { + left: -2.5rem; } -.bottom-2\/4 { - bottom: 50%; +.-left-11 { + left: -2.75rem; } -.left-2\/4 { - left: 50%; +.-left-12 { + left: -3rem; } -.top-3\/4 { - top: 75%; +.-left-14 { + left: -3.5rem; } -.right-3\/4 { - right: 75%; +.-left-16 { + left: -4rem; } -.bottom-3\/4 { - bottom: 75%; +.-left-20 { + left: -5rem; } -.left-3\/4 { - left: 75%; +.-left-24 { + left: -6rem; } -.top-full { - top: 100%; +.-left-28 { + left: -7rem; } -.right-full { - right: 100%; +.-left-32 { + left: -8rem; } -.bottom-full { - bottom: 100%; +.-left-36 { + left: -9rem; } -.left-full { - left: 100%; +.-left-40 { + left: -10rem; } -.-top-1\/2 { - top: -50%; +.-left-44 { + left: -11rem; } -.-right-1\/2 { - right: -50%; +.-left-48 { + left: -12rem; } -.-bottom-1\/2 { - bottom: -50%; +.-left-52 { + left: -13rem; } -.-left-1\/2 { - left: -50%; +.-left-56 { + left: -14rem; } -.-top-1\/3 { - top: -33.333333%; +.-left-60 { + left: -15rem; } -.-right-1\/3 { - right: -33.333333%; +.-left-64 { + left: -16rem; } -.-bottom-1\/3 { - bottom: -33.333333%; +.-left-72 { + left: -18rem; } -.-left-1\/3 { - left: -33.333333%; +.-left-80 { + left: -20rem; } -.-top-2\/3 { - top: -66.666667%; +.-left-96 { + left: -24rem; } -.-right-2\/3 { - right: -66.666667%; +.-left-px { + left: -1px; } -.-bottom-2\/3 { - bottom: -66.666667%; +.-left-0\.5 { + left: -0.125rem; } -.-left-2\/3 { - left: -66.666667%; +.-left-1\.5 { + left: -0.375rem; } -.-top-1\/4 { - top: -25%; +.-left-2\.5 { + left: -0.625rem; } -.-right-1\/4 { - right: -25%; +.-left-3\.5 { + left: -0.875rem; } -.-bottom-1\/4 { - bottom: -25%; +.left-1\/2 { + left: 50%; } -.-left-1\/4 { - left: -25%; +.left-1\/3 { + left: 33.333333%; } -.-top-2\/4 { - top: -50%; +.left-2\/3 { + left: 66.666667%; } -.-right-2\/4 { - right: -50%; +.left-1\/4 { + left: 25%; } -.-bottom-2\/4 { - bottom: -50%; +.left-2\/4 { + left: 50%; } -.-left-2\/4 { - left: -50%; +.left-3\/4 { + left: 75%; } -.-top-3\/4 { - top: -75%; +.left-full { + left: 100%; } -.-right-3\/4 { - right: -75%; +.-left-1\/2 { + left: -50%; } -.-bottom-3\/4 { - bottom: -75%; +.-left-1\/3 { + left: -33.333333%; } -.-left-3\/4 { - left: -75%; +.-left-2\/3 { + left: -66.666667%; } -.-top-full { - top: -100%; +.-left-1\/4 { + left: -25%; } -.-right-full { - right: -100%; +.-left-2\/4 { + left: -50%; } -.-bottom-full { - bottom: -100%; +.-left-3\/4 { + left: -75%; } .-left-full { @@ -9533,133 +9533,183 @@ video { --tw-scale-y: 1.5; } -.scale-x-0 { +.hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } -.scale-x-50 { +.hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } -.scale-x-75 { +.hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } -.scale-x-90 { +.hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } -.scale-x-95 { +.hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } -.scale-x-100 { +.hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } -.scale-x-105 { +.hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.scale-x-110 { +.hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.scale-x-125 { +.hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.scale-x-150 { +.hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.scale-y-0 { +.focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } -.scale-y-50 { +.focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } -.scale-y-75 { +.focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } -.scale-y-90 { +.focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } -.scale-y-95 { +.focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } -.scale-y-100 { +.focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } -.scale-y-105 { +.focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } -.scale-y-110 { +.focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } -.scale-y-125 { +.focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } -.scale-y-150 { +.focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } -.hover\:scale-0:hover { +.scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } -.hover\:scale-50:hover { +.scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } -.hover\:scale-75:hover { +.scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } -.hover\:scale-90:hover { +.scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } -.hover\:scale-95:hover { +.scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } -.hover\:scale-100:hover { +.scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } -.hover\:scale-105:hover { +.scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } -.hover\:scale-110:hover { +.scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } -.hover\:scale-125:hover { +.scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } -.hover\:scale-150:hover { +.scale-x-150 { --tw-scale-x: 1.5; +} + +.scale-y-0 { + --tw-scale-y: 0; +} + +.scale-y-50 { + --tw-scale-y: .5; +} + +.scale-y-75 { + --tw-scale-y: .75; +} + +.scale-y-90 { + --tw-scale-y: .9; +} + +.scale-y-95 { + --tw-scale-y: .95; +} + +.scale-y-100 { + --tw-scale-y: 1; +} + +.scale-y-105 { + --tw-scale-y: 1.05; +} + +.scale-y-110 { + --tw-scale-y: 1.1; +} + +.scale-y-125 { + --tw-scale-y: 1.25; +} + +.scale-y-150 { --tw-scale-y: 1.5; } @@ -9743,56 +9793,6 @@ video { --tw-scale-y: 1.5; } -.focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; -} - -.focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; -} - -.focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; -} - -.focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; -} - -.focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; -} - -.focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; -} - -.focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; -} - -.focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; -} - -.focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; -} - -.focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; -} - .focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -10716,436 +10716,640 @@ video { row-gap: 0.875rem; } -.space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); -} - .space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } -.space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); -} - .space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); -} - .space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); -} - .space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); -} - .space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); -} - .space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); -} - .space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); -} - .space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); -} - .space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); -} - .space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); -} - .space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); -} - .space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); -} - .space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); -} - .space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); -} - .space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); -} - .space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); -} - .space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); -} - .space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); -} - .space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); -} - .space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); -} - .space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); -} - .space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); -} - .space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); -} - .space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); -} - .space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); -} - .space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); -} - .space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); -} - .space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); -} - .space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); -} - .space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); -} - .space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } -.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); -} - .space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); -} - .space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); -} - .space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); -} - .space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } -.-space-y-0 > :not([hidden]) ~ :not([hidden]) { +.-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } -.-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); +} + +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} + +.space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); +} + +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); +} + +.space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); +} + +.space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); +} + +.space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); +} + +.space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); +} + +.space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); +} + +.space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); +} + +.space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); +} + +.space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); +} + +.space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); +} + +.space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); +} + +.space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); +} + +.space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); +} + +.space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); +} + +.space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); +} + +.space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); +} + +.space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); +} + +.space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); +} + +.space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); +} + +.space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); +} + +.space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); +} + +.space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); +} + +.space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); +} + +.space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); +} + +.space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); +} + +.space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); +} + +.space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); +} + +.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); +} + +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); +} + +.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); +} + +.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); +} + +.-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -11154,408 +11358,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } -.-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } -.-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } -.-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } -.-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } -.-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } -.-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } -.-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } -.-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } -.-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } -.-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } -.-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } -.-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } -.-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } -.-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } -.-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } -.-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } -.-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } -.-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } -.-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } -.-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } -.-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } -.-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } -.-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } -.-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } -.-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } -.-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } -.-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } -.-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } -.-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } -.-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } -.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } -.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } -.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } -.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); -} - .space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -11564,66 +11564,66 @@ video { --tw-space-x-reverse: 1; } -.divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); -} - .divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); -} - .divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); -} - .divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); -} - .divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); -} - .divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } +.divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); +} + +.divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); +} + +.divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); +} + +.divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); +} + +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); +} + .divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -18037,2188 +18037,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); -} - -.via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); -} - -.via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); -} - -.via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); -} - -.via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); -} - -.via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); -} - -.via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); -} - -.via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); -} - -.via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); -} - -.via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); -} - -.via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); -} - -.via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); -} - -.via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); -} - -.via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); -} - -.via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); -} - -.via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); -} - -.via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); -} - -.via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); -} - -.via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); -} - -.via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); -} - -.via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); -} - -.via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); -} - -.via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); -} - -.via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); -} - -.via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); -} - -.via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); -} - -.via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); -} - -.via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); -} - -.via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); -} - -.via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); -} - -.via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); -} - -.via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); -} - -.via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); -} - -.via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); -} - -.via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); -} - -.via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); -} - -.via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); -} - -.via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); -} - -.via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); -} - -.via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); -} - -.via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); -} - -.via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); -} - -.via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); -} - -.via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); -} - -.via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); -} - -.via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); -} - -.via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); -} - -.via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); -} - -.via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); -} - -.via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); -} - -.via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); -} - -.via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); -} - -.via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); -} - -.via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); -} - -.via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); -} - -.via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); -} - -.via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); -} - -.via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); -} - -.via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); -} - -.via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); -} - -.via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); -} - -.via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); -} - -.via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); -} - -.via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); -} - -.via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); -} - -.via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); -} - -.via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); -} - -.via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); -} - -.via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); -} - -.via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); -} - -.via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); -} - -.via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); -} - -.via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); -} - -.via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); -} - -.via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); -} - -.via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); -} - -.via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); -} - -.via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); -} - -.via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); -} - -.via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); -} - -.via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); -} - -.via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); -} - -.via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); -} - -.via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); -} - -.to-transparent { - --tw-gradient-to: transparent; +.hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.to-current { - --tw-gradient-to: currentColor; +.hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.to-black { - --tw-gradient-to: #000; +.hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.to-white { - --tw-gradient-to: #fff; +.hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.to-gray-50 { - --tw-gradient-to: #f9fafb; +.hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.to-gray-100 { - --tw-gradient-to: #f3f4f6; +.hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.to-gray-200 { - --tw-gradient-to: #e5e7eb; +.hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.to-gray-300 { - --tw-gradient-to: #d1d5db; +.hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.to-gray-400 { - --tw-gradient-to: #9ca3af; +.hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.to-gray-500 { - --tw-gradient-to: #6b7280; +.hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.to-gray-600 { - --tw-gradient-to: #4b5563; +.hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.to-gray-700 { - --tw-gradient-to: #374151; +.hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.to-gray-800 { - --tw-gradient-to: #1f2937; +.hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.to-gray-900 { - --tw-gradient-to: #111827; +.hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.to-red-50 { - --tw-gradient-to: #fef2f2; +.hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.to-red-100 { - --tw-gradient-to: #fee2e2; +.hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.to-red-200 { - --tw-gradient-to: #fecaca; +.hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.to-red-300 { - --tw-gradient-to: #fca5a5; +.hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.to-red-400 { - --tw-gradient-to: #f87171; +.hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.to-red-500 { - --tw-gradient-to: #ef4444; +.hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.to-red-600 { - --tw-gradient-to: #dc2626; +.hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.to-red-700 { - --tw-gradient-to: #b91c1c; +.hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.to-red-800 { - --tw-gradient-to: #991b1b; +.hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.to-red-900 { - --tw-gradient-to: #7f1d1d; +.hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.to-yellow-50 { - --tw-gradient-to: #fffbeb; +.hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.to-yellow-100 { - --tw-gradient-to: #fef3c7; +.hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.to-yellow-200 { - --tw-gradient-to: #fde68a; +.hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.to-yellow-300 { - --tw-gradient-to: #fcd34d; +.hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.to-yellow-400 { - --tw-gradient-to: #fbbf24; +.hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.to-yellow-500 { - --tw-gradient-to: #f59e0b; +.hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.to-yellow-600 { - --tw-gradient-to: #d97706; +.hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.to-yellow-700 { - --tw-gradient-to: #b45309; +.hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.to-yellow-800 { - --tw-gradient-to: #92400e; +.hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.to-yellow-900 { - --tw-gradient-to: #78350f; +.hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.to-green-50 { - --tw-gradient-to: #ecfdf5; +.hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.to-green-100 { - --tw-gradient-to: #d1fae5; +.hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.to-green-200 { - --tw-gradient-to: #a7f3d0; +.hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.to-green-300 { - --tw-gradient-to: #6ee7b7; +.hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.to-green-400 { - --tw-gradient-to: #34d399; +.hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.to-green-500 { - --tw-gradient-to: #10b981; +.hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.to-green-600 { - --tw-gradient-to: #059669; +.hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.to-green-700 { - --tw-gradient-to: #047857; +.hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.to-green-800 { - --tw-gradient-to: #065f46; +.hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.to-green-900 { - --tw-gradient-to: #064e3b; +.hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.to-blue-50 { - --tw-gradient-to: #eff6ff; +.hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.to-blue-100 { - --tw-gradient-to: #dbeafe; +.hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.to-blue-200 { - --tw-gradient-to: #bfdbfe; +.hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.to-blue-300 { - --tw-gradient-to: #93c5fd; +.hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.to-blue-400 { - --tw-gradient-to: #60a5fa; +.hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.to-blue-500 { - --tw-gradient-to: #3b82f6; +.hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.to-blue-600 { - --tw-gradient-to: #2563eb; +.hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.to-blue-700 { - --tw-gradient-to: #1d4ed8; +.hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.to-blue-800 { - --tw-gradient-to: #1e40af; +.hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.to-blue-900 { - --tw-gradient-to: #1e3a8a; +.hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.to-indigo-50 { - --tw-gradient-to: #eef2ff; +.hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.to-indigo-100 { - --tw-gradient-to: #e0e7ff; +.hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.to-indigo-200 { - --tw-gradient-to: #c7d2fe; +.hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.to-indigo-300 { - --tw-gradient-to: #a5b4fc; +.hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.to-indigo-400 { - --tw-gradient-to: #818cf8; +.hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.to-indigo-500 { - --tw-gradient-to: #6366f1; +.hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.to-indigo-600 { - --tw-gradient-to: #4f46e5; +.hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.to-indigo-700 { - --tw-gradient-to: #4338ca; +.hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.to-indigo-800 { - --tw-gradient-to: #3730a3; +.hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.to-indigo-900 { - --tw-gradient-to: #312e81; +.hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.to-purple-50 { - --tw-gradient-to: #f5f3ff; +.hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.to-purple-100 { - --tw-gradient-to: #ede9fe; +.hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.to-purple-200 { - --tw-gradient-to: #ddd6fe; +.hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.to-purple-300 { - --tw-gradient-to: #c4b5fd; +.hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.to-purple-400 { - --tw-gradient-to: #a78bfa; +.hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.to-purple-500 { - --tw-gradient-to: #8b5cf6; +.hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.to-purple-600 { - --tw-gradient-to: #7c3aed; +.hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.to-purple-700 { - --tw-gradient-to: #6d28d9; +.hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.to-purple-800 { - --tw-gradient-to: #5b21b6; +.hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.to-purple-900 { - --tw-gradient-to: #4c1d95; +.hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.to-pink-50 { - --tw-gradient-to: #fdf2f8; +.hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.to-pink-100 { - --tw-gradient-to: #fce7f3; +.hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.to-pink-200 { - --tw-gradient-to: #fbcfe8; +.hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.to-pink-300 { - --tw-gradient-to: #f9a8d4; +.hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.to-pink-400 { - --tw-gradient-to: #f472b6; +.hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.to-pink-500 { - --tw-gradient-to: #ec4899; +.hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.to-pink-600 { - --tw-gradient-to: #db2777; +.hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.to-pink-700 { - --tw-gradient-to: #be185d; +.hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.to-pink-800 { - --tw-gradient-to: #9d174d; +.hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.to-pink-900 { - --tw-gradient-to: #831843; +.hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.hover\:from-transparent:hover { +.focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:from-current:hover { +.focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:from-black:hover { +.focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:from-white:hover { +.focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:from-gray-50:hover { +.focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.hover\:from-gray-100:hover { +.focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.hover\:from-gray-200:hover { +.focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.hover\:from-gray-300:hover { +.focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.hover\:from-gray-400:hover { +.focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.hover\:from-gray-500:hover { +.focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.hover\:from-gray-600:hover { +.focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.hover\:from-gray-700:hover { +.focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.hover\:from-gray-800:hover { +.focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.hover\:from-gray-900:hover { +.focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.hover\:from-red-50:hover { +.focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.hover\:from-red-100:hover { +.focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.hover\:from-red-200:hover { +.focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.hover\:from-red-300:hover { +.focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.hover\:from-red-400:hover { +.focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.hover\:from-red-500:hover { +.focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.hover\:from-red-600:hover { +.focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.hover\:from-red-700:hover { +.focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.hover\:from-red-800:hover { +.focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.hover\:from-red-900:hover { +.focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.hover\:from-yellow-50:hover { +.focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.hover\:from-yellow-100:hover { +.focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.hover\:from-yellow-200:hover { +.focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.hover\:from-yellow-300:hover { +.focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.hover\:from-yellow-400:hover { +.focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.hover\:from-yellow-500:hover { +.focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.hover\:from-yellow-600:hover { +.focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.hover\:from-yellow-700:hover { +.focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.hover\:from-yellow-800:hover { +.focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.hover\:from-yellow-900:hover { +.focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.hover\:from-green-50:hover { +.focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.hover\:from-green-100:hover { +.focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.hover\:from-green-200:hover { +.focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.hover\:from-green-300:hover { +.focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.hover\:from-green-400:hover { +.focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.hover\:from-green-500:hover { +.focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.hover\:from-green-600:hover { +.focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.hover\:from-green-700:hover { +.focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.hover\:from-green-800:hover { +.focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.hover\:from-green-900:hover { +.focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.hover\:from-blue-50:hover { +.focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.hover\:from-blue-100:hover { +.focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.hover\:from-blue-200:hover { +.focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.hover\:from-blue-300:hover { +.focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.hover\:from-blue-400:hover { +.focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.hover\:from-blue-500:hover { +.focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.hover\:from-blue-600:hover { +.focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.hover\:from-blue-700:hover { +.focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.hover\:from-blue-800:hover { +.focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.hover\:from-blue-900:hover { +.focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.hover\:from-indigo-50:hover { +.focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.hover\:from-indigo-100:hover { +.focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.hover\:from-indigo-200:hover { +.focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.hover\:from-indigo-300:hover { +.focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.hover\:from-indigo-400:hover { +.focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.hover\:from-indigo-500:hover { +.focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.hover\:from-indigo-600:hover { +.focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.hover\:from-indigo-700:hover { +.focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.hover\:from-indigo-800:hover { +.focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.hover\:from-indigo-900:hover { +.focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.hover\:from-purple-50:hover { +.focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.hover\:from-purple-100:hover { +.focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.hover\:from-purple-200:hover { +.focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.hover\:from-purple-300:hover { +.focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.hover\:from-purple-400:hover { +.focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.hover\:from-purple-500:hover { +.focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.hover\:from-purple-600:hover { +.focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.hover\:from-purple-700:hover { +.focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.hover\:from-purple-800:hover { +.focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.hover\:from-purple-900:hover { +.focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.hover\:from-pink-50:hover { +.focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.hover\:from-pink-100:hover { +.focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.hover\:from-pink-200:hover { +.focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.hover\:from-pink-300:hover { +.focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.hover\:from-pink-400:hover { +.focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.hover\:from-pink-500:hover { +.focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.hover\:from-pink-600:hover { +.focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.hover\:from-pink-700:hover { +.focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.hover\:from-pink-800:hover { +.focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.hover\:from-pink-900:hover { +.focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.hover\:via-transparent:hover { +.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:via-current:hover { +.via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:via-black:hover { +.via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:via-white:hover { +.via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:via-gray-50:hover { +.via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.hover\:via-gray-100:hover { +.via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.hover\:via-gray-200:hover { +.via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.hover\:via-gray-300:hover { +.via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.hover\:via-gray-400:hover { +.via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.hover\:via-gray-500:hover { +.via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.hover\:via-gray-600:hover { +.via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.hover\:via-gray-700:hover { +.via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.hover\:via-gray-800:hover { +.via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.hover\:via-gray-900:hover { +.via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.hover\:via-red-50:hover { +.via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.hover\:via-red-100:hover { +.via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.hover\:via-red-200:hover { +.via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.hover\:via-red-300:hover { +.via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.hover\:via-red-400:hover { +.via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.hover\:via-red-500:hover { +.via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.hover\:via-red-600:hover { +.via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.hover\:via-red-700:hover { +.via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.hover\:via-red-800:hover { +.via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.hover\:via-red-900:hover { +.via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.hover\:via-yellow-50:hover { +.via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.hover\:via-yellow-100:hover { +.via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.hover\:via-yellow-200:hover { +.via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.hover\:via-yellow-300:hover { +.via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.hover\:via-yellow-400:hover { +.via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.hover\:via-yellow-500:hover { +.via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.hover\:via-yellow-600:hover { +.via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.hover\:via-yellow-700:hover { +.via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.hover\:via-yellow-800:hover { +.via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.hover\:via-yellow-900:hover { +.via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.hover\:via-green-50:hover { +.via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.hover\:via-green-100:hover { +.via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.hover\:via-green-200:hover { +.via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.hover\:via-green-300:hover { +.via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.hover\:via-green-400:hover { +.via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.hover\:via-green-500:hover { +.via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.hover\:via-green-600:hover { +.via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.hover\:via-green-700:hover { +.via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.hover\:via-green-800:hover { +.via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.hover\:via-green-900:hover { +.via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.hover\:via-blue-50:hover { +.via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.hover\:via-blue-100:hover { +.via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.hover\:via-blue-200:hover { +.via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.hover\:via-blue-300:hover { +.via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.hover\:via-blue-400:hover { +.via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.hover\:via-blue-500:hover { +.via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.hover\:via-blue-600:hover { +.via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.hover\:via-blue-700:hover { +.via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.hover\:via-blue-800:hover { +.via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.hover\:via-blue-900:hover { +.via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.hover\:via-indigo-50:hover { +.via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.hover\:via-indigo-100:hover { +.via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.hover\:via-indigo-200:hover { +.via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.hover\:via-indigo-300:hover { +.via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.hover\:via-indigo-400:hover { +.via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.hover\:via-indigo-500:hover { +.via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.hover\:via-indigo-600:hover { +.via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.hover\:via-indigo-700:hover { +.via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.hover\:via-indigo-800:hover { +.via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.hover\:via-indigo-900:hover { +.via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.hover\:via-purple-50:hover { +.via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.hover\:via-purple-100:hover { +.via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.hover\:via-purple-200:hover { +.via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.hover\:via-purple-300:hover { +.via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.hover\:via-purple-400:hover { +.via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.hover\:via-purple-500:hover { +.via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.hover\:via-purple-600:hover { +.via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.hover\:via-purple-700:hover { +.via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.hover\:via-purple-800:hover { +.via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.hover\:via-purple-900:hover { +.via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.hover\:via-pink-50:hover { +.via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.hover\:via-pink-100:hover { +.via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.hover\:via-pink-200:hover { +.via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.hover\:via-pink-300:hover { +.via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.hover\:via-pink-400:hover { +.via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.hover\:via-pink-500:hover { +.via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.hover\:via-pink-600:hover { +.via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.hover\:via-pink-700:hover { +.via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.hover\:via-pink-800:hover { +.via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.hover\:via-pink-900:hover { +.via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.hover\:to-transparent:hover { - --tw-gradient-to: transparent; -} - -.hover\:to-current:hover { - --tw-gradient-to: currentColor; -} - -.hover\:to-black:hover { - --tw-gradient-to: #000; -} - -.hover\:to-white:hover { - --tw-gradient-to: #fff; -} - -.hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; -} - -.hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; -} - -.hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; -} - -.hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; -} - -.hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; -} - -.hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; -} - -.hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; -} - -.hover\:to-gray-700:hover { - --tw-gradient-to: #374151; -} - -.hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; -} - -.hover\:to-gray-900:hover { - --tw-gradient-to: #111827; -} - -.hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; -} - -.hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; -} - -.hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; -} - -.hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; -} - -.hover\:to-red-400:hover { - --tw-gradient-to: #f87171; -} - -.hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; -} - -.hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; -} - -.hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; -} - -.hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; -} - -.hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; -} - -.hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; -} - -.hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; -} - -.hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; -} - -.hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; -} - -.hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; -} - -.hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; -} - -.hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; -} - -.hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; -} - -.hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; -} - -.hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; -} - -.hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; -} - -.hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; -} - -.hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; -} - -.hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; -} - -.hover\:to-green-400:hover { - --tw-gradient-to: #34d399; -} - -.hover\:to-green-500:hover { - --tw-gradient-to: #10b981; -} - -.hover\:to-green-600:hover { - --tw-gradient-to: #059669; -} - -.hover\:to-green-700:hover { - --tw-gradient-to: #047857; -} - -.hover\:to-green-800:hover { - --tw-gradient-to: #065f46; -} - -.hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; -} - -.hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; -} - -.hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; -} - -.hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; -} - -.hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; -} - -.hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; -} - -.hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; -} - -.hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; -} - -.hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; -} - -.hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; -} - -.hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; -} - -.hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; -} - -.hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; -} - -.hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; -} - -.hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; -} - -.hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; -} - -.hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; -} - -.hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; -} - -.hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; -} - -.hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; -} - -.hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; -} - -.hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; -} - -.hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; -} - -.hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; -} - -.hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; -} - -.hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; -} - -.hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; -} - -.hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; -} - -.hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; -} - -.hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; -} - -.hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; -} - -.hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; -} - -.hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; -} - -.hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; -} - -.hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; -} - -.hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; -} - -.hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; -} - -.hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; -} - -.hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; -} - -.hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; -} - -.hover\:to-pink-900:hover { - --tw-gradient-to: #831843; -} - -.focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .focus\:via-transparent:focus { @@ -20557,6 +19885,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } +.to-transparent { + --tw-gradient-to: transparent; +} + +.to-current { + --tw-gradient-to: currentColor; +} + +.to-black { + --tw-gradient-to: #000; +} + +.to-white { + --tw-gradient-to: #fff; +} + +.to-gray-50 { + --tw-gradient-to: #f9fafb; +} + +.to-gray-100 { + --tw-gradient-to: #f3f4f6; +} + +.to-gray-200 { + --tw-gradient-to: #e5e7eb; +} + +.to-gray-300 { + --tw-gradient-to: #d1d5db; +} + +.to-gray-400 { + --tw-gradient-to: #9ca3af; +} + +.to-gray-500 { + --tw-gradient-to: #6b7280; +} + +.to-gray-600 { + --tw-gradient-to: #4b5563; +} + +.to-gray-700 { + --tw-gradient-to: #374151; +} + +.to-gray-800 { + --tw-gradient-to: #1f2937; +} + +.to-gray-900 { + --tw-gradient-to: #111827; +} + +.to-red-50 { + --tw-gradient-to: #fef2f2; +} + +.to-red-100 { + --tw-gradient-to: #fee2e2; +} + +.to-red-200 { + --tw-gradient-to: #fecaca; +} + +.to-red-300 { + --tw-gradient-to: #fca5a5; +} + +.to-red-400 { + --tw-gradient-to: #f87171; +} + +.to-red-500 { + --tw-gradient-to: #ef4444; +} + +.to-red-600 { + --tw-gradient-to: #dc2626; +} + +.to-red-700 { + --tw-gradient-to: #b91c1c; +} + +.to-red-800 { + --tw-gradient-to: #991b1b; +} + +.to-red-900 { + --tw-gradient-to: #7f1d1d; +} + +.to-yellow-50 { + --tw-gradient-to: #fffbeb; +} + +.to-yellow-100 { + --tw-gradient-to: #fef3c7; +} + +.to-yellow-200 { + --tw-gradient-to: #fde68a; +} + +.to-yellow-300 { + --tw-gradient-to: #fcd34d; +} + +.to-yellow-400 { + --tw-gradient-to: #fbbf24; +} + +.to-yellow-500 { + --tw-gradient-to: #f59e0b; +} + +.to-yellow-600 { + --tw-gradient-to: #d97706; +} + +.to-yellow-700 { + --tw-gradient-to: #b45309; +} + +.to-yellow-800 { + --tw-gradient-to: #92400e; +} + +.to-yellow-900 { + --tw-gradient-to: #78350f; +} + +.to-green-50 { + --tw-gradient-to: #ecfdf5; +} + +.to-green-100 { + --tw-gradient-to: #d1fae5; +} + +.to-green-200 { + --tw-gradient-to: #a7f3d0; +} + +.to-green-300 { + --tw-gradient-to: #6ee7b7; +} + +.to-green-400 { + --tw-gradient-to: #34d399; +} + +.to-green-500 { + --tw-gradient-to: #10b981; +} + +.to-green-600 { + --tw-gradient-to: #059669; +} + +.to-green-700 { + --tw-gradient-to: #047857; +} + +.to-green-800 { + --tw-gradient-to: #065f46; +} + +.to-green-900 { + --tw-gradient-to: #064e3b; +} + +.to-blue-50 { + --tw-gradient-to: #eff6ff; +} + +.to-blue-100 { + --tw-gradient-to: #dbeafe; +} + +.to-blue-200 { + --tw-gradient-to: #bfdbfe; +} + +.to-blue-300 { + --tw-gradient-to: #93c5fd; +} + +.to-blue-400 { + --tw-gradient-to: #60a5fa; +} + +.to-blue-500 { + --tw-gradient-to: #3b82f6; +} + +.to-blue-600 { + --tw-gradient-to: #2563eb; +} + +.to-blue-700 { + --tw-gradient-to: #1d4ed8; +} + +.to-blue-800 { + --tw-gradient-to: #1e40af; +} + +.to-blue-900 { + --tw-gradient-to: #1e3a8a; +} + +.to-indigo-50 { + --tw-gradient-to: #eef2ff; +} + +.to-indigo-100 { + --tw-gradient-to: #e0e7ff; +} + +.to-indigo-200 { + --tw-gradient-to: #c7d2fe; +} + +.to-indigo-300 { + --tw-gradient-to: #a5b4fc; +} + +.to-indigo-400 { + --tw-gradient-to: #818cf8; +} + +.to-indigo-500 { + --tw-gradient-to: #6366f1; +} + +.to-indigo-600 { + --tw-gradient-to: #4f46e5; +} + +.to-indigo-700 { + --tw-gradient-to: #4338ca; +} + +.to-indigo-800 { + --tw-gradient-to: #3730a3; +} + +.to-indigo-900 { + --tw-gradient-to: #312e81; +} + +.to-purple-50 { + --tw-gradient-to: #f5f3ff; +} + +.to-purple-100 { + --tw-gradient-to: #ede9fe; +} + +.to-purple-200 { + --tw-gradient-to: #ddd6fe; +} + +.to-purple-300 { + --tw-gradient-to: #c4b5fd; +} + +.to-purple-400 { + --tw-gradient-to: #a78bfa; +} + +.to-purple-500 { + --tw-gradient-to: #8b5cf6; +} + +.to-purple-600 { + --tw-gradient-to: #7c3aed; +} + +.to-purple-700 { + --tw-gradient-to: #6d28d9; +} + +.to-purple-800 { + --tw-gradient-to: #5b21b6; +} + +.to-purple-900 { + --tw-gradient-to: #4c1d95; +} + +.to-pink-50 { + --tw-gradient-to: #fdf2f8; +} + +.to-pink-100 { + --tw-gradient-to: #fce7f3; +} + +.to-pink-200 { + --tw-gradient-to: #fbcfe8; +} + +.to-pink-300 { + --tw-gradient-to: #f9a8d4; +} + +.to-pink-400 { + --tw-gradient-to: #f472b6; +} + +.to-pink-500 { + --tw-gradient-to: #ec4899; +} + +.to-pink-600 { + --tw-gradient-to: #db2777; +} + +.to-pink-700 { + --tw-gradient-to: #be185d; +} + +.to-pink-800 { + --tw-gradient-to: #9d174d; +} + +.to-pink-900 { + --tw-gradient-to: #831843; +} + +.hover\:to-transparent:hover { + --tw-gradient-to: transparent; +} + +.hover\:to-current:hover { + --tw-gradient-to: currentColor; +} + +.hover\:to-black:hover { + --tw-gradient-to: #000; +} + +.hover\:to-white:hover { + --tw-gradient-to: #fff; +} + +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; +} + +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; +} + +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; +} + +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; +} + +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; +} + +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; +} + +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; +} + +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151; +} + +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; +} + +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827; +} + +.hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; +} + +.hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; +} + +.hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; +} + +.hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; +} + +.hover\:to-red-400:hover { + --tw-gradient-to: #f87171; +} + +.hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; +} + +.hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; +} + +.hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; +} + +.hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; +} + +.hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; +} + +.hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; +} + +.hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; +} + +.hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; +} + +.hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; +} + +.hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; +} + +.hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; +} + +.hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; +} + +.hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; +} + +.hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; +} + +.hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; +} + +.hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; +} + +.hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; +} + +.hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; +} + +.hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; +} + +.hover\:to-green-400:hover { + --tw-gradient-to: #34d399; +} + +.hover\:to-green-500:hover { + --tw-gradient-to: #10b981; +} + +.hover\:to-green-600:hover { + --tw-gradient-to: #059669; +} + +.hover\:to-green-700:hover { + --tw-gradient-to: #047857; +} + +.hover\:to-green-800:hover { + --tw-gradient-to: #065f46; +} + +.hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; +} + +.hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; +} + +.hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; +} + +.hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; +} + +.hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; +} + +.hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; +} + +.hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; +} + +.hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; +} + +.hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; +} + +.hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; +} + +.hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; +} + +.hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; +} + +.hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; +} + +.hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; +} + +.hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; +} + +.hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; +} + +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; +} + +.hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; +} + +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; +} + +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; +} + +.hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; +} + +.hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; +} + +.hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; +} + +.hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; +} + +.hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; +} + +.hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; +} + +.hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; +} + +.hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; +} + +.hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; +} + +.hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; +} + +.hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; +} + +.hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; +} + +.hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; +} + +.hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; +} + +.hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; +} + +.hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; +} + +.hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; +} + +.hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; +} + +.hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; +} + +.hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; +} + +.hover\:to-pink-900:hover { + --tw-gradient-to: #831843; +} + .focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -26579,10 +26579,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.ring-inset { - --tw-ring-inset: inset; -} - .focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -26619,10 +26615,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; -} - .focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -26659,6 +26651,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } +.ring-inset { + --tw-ring-inset: inset; +} + +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; +} + .focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -30419,116 +30419,541 @@ video { left: -0.375rem; } - .sm\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .sm\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .sm\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .sm\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .sm\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .sm\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .sm\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .sm\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .sm\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .sm\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .sm\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .sm\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .sm\:inset-x-0 { + left: 0px; + right: 0px; + } + + .sm\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .sm\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .sm\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .sm\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .sm\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .sm\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .sm\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .sm\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .sm\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .sm\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .sm\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .sm\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .sm\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .sm\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .sm\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .sm\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .sm\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .sm\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .sm\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .sm\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .sm\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .sm\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .sm\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .sm\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .sm\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .sm\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .sm\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .sm\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .sm\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .sm\:inset-x-auto { + left: auto; + right: auto; + } + + .sm\:inset-x-px { + left: 1px; + right: 1px; + } + + .sm\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .sm\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .sm\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .sm\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .sm\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .sm\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .sm\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .sm\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .sm\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .sm\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .sm\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .sm\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .sm\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .sm\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .sm\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .sm\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .sm\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .sm\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .sm\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .sm\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .sm\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .sm\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .sm\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .sm\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .sm\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .sm\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .sm\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .sm\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .sm\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .sm\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .sm\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .sm\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .sm\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .sm\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .sm\:-inset-x-px { + left: -1px; + right: -1px; + } + + .sm\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .sm\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .sm\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .sm\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .sm\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .sm\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .sm\:inset-x-1\/2 { left: 50%; + right: 50%; } - .sm\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .sm\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .sm\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .sm\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .sm\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .sm\:inset-x-1\/4 { left: 25%; + right: 25%; } - .sm\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .sm\:inset-x-2\/4 { left: 50%; + right: 50%; } - .sm\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .sm\:inset-x-3\/4 { left: 75%; + right: 75%; } - .sm\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .sm\:inset-x-full { left: 100%; + right: 100%; } - .sm\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .sm\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .sm\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .sm\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .sm\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .sm\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .sm\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .sm\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .sm\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .sm\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .sm\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .sm\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .sm\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .sm\:-inset-x-full { left: -100%; + right: -100%; } .sm\:inset-y-0 { @@ -30536,2205 +30961,1780 @@ video { bottom: 0px; } - .sm\:inset-x-0 { - right: 0px; - left: 0px; - } - .sm\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .sm\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .sm\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .sm\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .sm\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .sm\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .sm\:inset-y-4 { top: 1rem; bottom: 1rem; } - .sm\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .sm\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .sm\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .sm\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .sm\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .sm\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .sm\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .sm\:inset-y-8 { top: 2rem; bottom: 2rem; } - .sm\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .sm\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .sm\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .sm\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .sm\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .sm\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .sm\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .sm\:inset-y-12 { top: 3rem; bottom: 3rem; } - .sm\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .sm\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .sm\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .sm\:inset-y-16 { top: 4rem; bottom: 4rem; } - .sm\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .sm\:inset-y-20 { top: 5rem; bottom: 5rem; } - .sm\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .sm\:inset-y-24 { top: 6rem; bottom: 6rem; } - .sm\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .sm\:inset-y-28 { top: 7rem; bottom: 7rem; } - .sm\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .sm\:inset-y-32 { top: 8rem; bottom: 8rem; } - .sm\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .sm\:inset-y-36 { top: 9rem; bottom: 9rem; } - .sm\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .sm\:inset-y-40 { top: 10rem; bottom: 10rem; } - .sm\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .sm\:inset-y-44 { top: 11rem; bottom: 11rem; } - .sm\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .sm\:inset-y-48 { top: 12rem; bottom: 12rem; } - .sm\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .sm\:inset-y-52 { top: 13rem; bottom: 13rem; } - .sm\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .sm\:inset-y-56 { top: 14rem; bottom: 14rem; } - .sm\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .sm\:inset-y-60 { top: 15rem; bottom: 15rem; } - .sm\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .sm\:inset-y-64 { top: 16rem; bottom: 16rem; } - .sm\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .sm\:inset-y-72 { top: 18rem; bottom: 18rem; } - .sm\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .sm\:inset-y-80 { top: 20rem; bottom: 20rem; } - .sm\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .sm\:inset-y-96 { top: 24rem; bottom: 24rem; } - .sm\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .sm\:inset-y-auto { top: auto; bottom: auto; } - .sm\:inset-x-auto { - right: auto; - left: auto; - } - .sm\:inset-y-px { top: 1px; bottom: 1px; } - .sm\:inset-x-px { - right: 1px; - left: 1px; - } - .sm\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .sm\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .sm\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .sm\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .sm\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .sm\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .sm\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .sm\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .sm\:-inset-y-0 { top: 0px; bottom: 0px; } - .sm\:-inset-x-0 { - right: 0px; - left: 0px; - } - .sm\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .sm\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .sm\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .sm\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .sm\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .sm\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .sm\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .sm\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .sm\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .sm\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .sm\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .sm\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .sm\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .sm\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .sm\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .sm\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .sm\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .sm\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .sm\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .sm\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .sm\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .sm\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .sm\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .sm\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .sm\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .sm\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .sm\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .sm\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .sm\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .sm\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .sm\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .sm\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .sm\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .sm\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .sm\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .sm\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .sm\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .sm\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .sm\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .sm\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .sm\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .sm\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .sm\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .sm\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .sm\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .sm\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .sm\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .sm\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .sm\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .sm\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .sm\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .sm\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .sm\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .sm\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .sm\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .sm\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .sm\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .sm\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .sm\:-inset-y-px { top: -1px; bottom: -1px; } - .sm\:-inset-x-px { - right: -1px; - left: -1px; - } - .sm\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .sm\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .sm\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .sm\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .sm\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .sm\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .sm\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .sm\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .sm\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .sm\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .sm\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .sm\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .sm\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .sm\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .sm\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .sm\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .sm\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .sm\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .sm\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .sm\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .sm\:inset-y-full { top: 100%; bottom: 100%; } - .sm\:inset-x-full { - right: 100%; - left: 100%; - } - .sm\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .sm\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .sm\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .sm\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .sm\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .sm\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .sm\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .sm\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .sm\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .sm\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .sm\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .sm\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .sm\:-inset-y-full { top: -100%; bottom: -100%; } - .sm\:-inset-x-full { - right: -100%; - left: -100%; - } - .sm\:top-0 { top: 0px; } - .sm\:right-0 { - right: 0px; + .sm\:top-1 { + top: 0.25rem; } - .sm\:bottom-0 { - bottom: 0px; + .sm\:top-2 { + top: 0.5rem; } - .sm\:left-0 { - left: 0px; + .sm\:top-3 { + top: 0.75rem; } - .sm\:top-1 { - top: 0.25rem; + .sm\:top-4 { + top: 1rem; } - .sm\:right-1 { - right: 0.25rem; + .sm\:top-5 { + top: 1.25rem; } - .sm\:bottom-1 { - bottom: 0.25rem; + .sm\:top-6 { + top: 1.5rem; } - .sm\:left-1 { - left: 0.25rem; + .sm\:top-7 { + top: 1.75rem; } - .sm\:top-2 { - top: 0.5rem; + .sm\:top-8 { + top: 2rem; } - .sm\:right-2 { - right: 0.5rem; + .sm\:top-9 { + top: 2.25rem; } - .sm\:bottom-2 { - bottom: 0.5rem; + .sm\:top-10 { + top: 2.5rem; } - .sm\:left-2 { - left: 0.5rem; + .sm\:top-11 { + top: 2.75rem; } - .sm\:top-3 { - top: 0.75rem; + .sm\:top-12 { + top: 3rem; } - .sm\:right-3 { - right: 0.75rem; + .sm\:top-14 { + top: 3.5rem; } - .sm\:bottom-3 { - bottom: 0.75rem; + .sm\:top-16 { + top: 4rem; } - .sm\:left-3 { - left: 0.75rem; + .sm\:top-20 { + top: 5rem; } - .sm\:top-4 { - top: 1rem; + .sm\:top-24 { + top: 6rem; } - .sm\:right-4 { - right: 1rem; + .sm\:top-28 { + top: 7rem; } - .sm\:bottom-4 { - bottom: 1rem; + .sm\:top-32 { + top: 8rem; } - .sm\:left-4 { - left: 1rem; + .sm\:top-36 { + top: 9rem; } - .sm\:top-5 { - top: 1.25rem; + .sm\:top-40 { + top: 10rem; } - .sm\:right-5 { - right: 1.25rem; + .sm\:top-44 { + top: 11rem; } - .sm\:bottom-5 { - bottom: 1.25rem; + .sm\:top-48 { + top: 12rem; } - .sm\:left-5 { - left: 1.25rem; + .sm\:top-52 { + top: 13rem; } - .sm\:top-6 { - top: 1.5rem; + .sm\:top-56 { + top: 14rem; } - .sm\:right-6 { - right: 1.5rem; + .sm\:top-60 { + top: 15rem; } - .sm\:bottom-6 { - bottom: 1.5rem; + .sm\:top-64 { + top: 16rem; } - .sm\:left-6 { - left: 1.5rem; + .sm\:top-72 { + top: 18rem; } - .sm\:top-7 { - top: 1.75rem; + .sm\:top-80 { + top: 20rem; } - .sm\:right-7 { - right: 1.75rem; + .sm\:top-96 { + top: 24rem; } - .sm\:bottom-7 { - bottom: 1.75rem; + .sm\:top-auto { + top: auto; } - .sm\:left-7 { - left: 1.75rem; + .sm\:top-px { + top: 1px; } - .sm\:top-8 { - top: 2rem; + .sm\:top-0\.5 { + top: 0.125rem; } - .sm\:right-8 { - right: 2rem; + .sm\:top-1\.5 { + top: 0.375rem; } - .sm\:bottom-8 { - bottom: 2rem; + .sm\:top-2\.5 { + top: 0.625rem; } - .sm\:left-8 { - left: 2rem; + .sm\:top-3\.5 { + top: 0.875rem; } - .sm\:top-9 { - top: 2.25rem; + .sm\:-top-0 { + top: 0px; } - .sm\:right-9 { - right: 2.25rem; + .sm\:-top-1 { + top: -0.25rem; } - .sm\:bottom-9 { - bottom: 2.25rem; + .sm\:-top-2 { + top: -0.5rem; } - .sm\:left-9 { - left: 2.25rem; + .sm\:-top-3 { + top: -0.75rem; } - .sm\:top-10 { - top: 2.5rem; + .sm\:-top-4 { + top: -1rem; } - .sm\:right-10 { - right: 2.5rem; + .sm\:-top-5 { + top: -1.25rem; } - .sm\:bottom-10 { - bottom: 2.5rem; + .sm\:-top-6 { + top: -1.5rem; } - .sm\:left-10 { - left: 2.5rem; + .sm\:-top-7 { + top: -1.75rem; } - .sm\:top-11 { - top: 2.75rem; + .sm\:-top-8 { + top: -2rem; } - .sm\:right-11 { - right: 2.75rem; + .sm\:-top-9 { + top: -2.25rem; } - .sm\:bottom-11 { - bottom: 2.75rem; + .sm\:-top-10 { + top: -2.5rem; } - .sm\:left-11 { - left: 2.75rem; + .sm\:-top-11 { + top: -2.75rem; } - .sm\:top-12 { - top: 3rem; + .sm\:-top-12 { + top: -3rem; } - .sm\:right-12 { - right: 3rem; + .sm\:-top-14 { + top: -3.5rem; } - .sm\:bottom-12 { - bottom: 3rem; + .sm\:-top-16 { + top: -4rem; } - .sm\:left-12 { - left: 3rem; + .sm\:-top-20 { + top: -5rem; } - .sm\:top-14 { - top: 3.5rem; + .sm\:-top-24 { + top: -6rem; } - .sm\:right-14 { - right: 3.5rem; + .sm\:-top-28 { + top: -7rem; } - .sm\:bottom-14 { - bottom: 3.5rem; + .sm\:-top-32 { + top: -8rem; } - .sm\:left-14 { - left: 3.5rem; + .sm\:-top-36 { + top: -9rem; } - .sm\:top-16 { - top: 4rem; + .sm\:-top-40 { + top: -10rem; } - .sm\:right-16 { - right: 4rem; + .sm\:-top-44 { + top: -11rem; } - .sm\:bottom-16 { - bottom: 4rem; + .sm\:-top-48 { + top: -12rem; } - .sm\:left-16 { - left: 4rem; + .sm\:-top-52 { + top: -13rem; } - .sm\:top-20 { - top: 5rem; + .sm\:-top-56 { + top: -14rem; } - .sm\:right-20 { - right: 5rem; + .sm\:-top-60 { + top: -15rem; } - .sm\:bottom-20 { - bottom: 5rem; + .sm\:-top-64 { + top: -16rem; } - .sm\:left-20 { - left: 5rem; + .sm\:-top-72 { + top: -18rem; } - .sm\:top-24 { - top: 6rem; + .sm\:-top-80 { + top: -20rem; } - .sm\:right-24 { - right: 6rem; + .sm\:-top-96 { + top: -24rem; } - .sm\:bottom-24 { - bottom: 6rem; + .sm\:-top-px { + top: -1px; } - .sm\:left-24 { - left: 6rem; + .sm\:-top-0\.5 { + top: -0.125rem; } - .sm\:top-28 { - top: 7rem; + .sm\:-top-1\.5 { + top: -0.375rem; } - .sm\:right-28 { - right: 7rem; + .sm\:-top-2\.5 { + top: -0.625rem; } - .sm\:bottom-28 { - bottom: 7rem; + .sm\:-top-3\.5 { + top: -0.875rem; } - .sm\:left-28 { - left: 7rem; + .sm\:top-1\/2 { + top: 50%; } - .sm\:top-32 { - top: 8rem; + .sm\:top-1\/3 { + top: 33.333333%; } - .sm\:right-32 { - right: 8rem; + .sm\:top-2\/3 { + top: 66.666667%; } - .sm\:bottom-32 { - bottom: 8rem; + .sm\:top-1\/4 { + top: 25%; } - .sm\:left-32 { - left: 8rem; + .sm\:top-2\/4 { + top: 50%; } - .sm\:top-36 { - top: 9rem; + .sm\:top-3\/4 { + top: 75%; } - .sm\:right-36 { - right: 9rem; + .sm\:top-full { + top: 100%; } - .sm\:bottom-36 { - bottom: 9rem; + .sm\:-top-1\/2 { + top: -50%; } - .sm\:left-36 { - left: 9rem; + .sm\:-top-1\/3 { + top: -33.333333%; } - .sm\:top-40 { - top: 10rem; + .sm\:-top-2\/3 { + top: -66.666667%; } - .sm\:right-40 { - right: 10rem; + .sm\:-top-1\/4 { + top: -25%; } - .sm\:bottom-40 { - bottom: 10rem; + .sm\:-top-2\/4 { + top: -50%; } - .sm\:left-40 { - left: 10rem; + .sm\:-top-3\/4 { + top: -75%; } - .sm\:top-44 { - top: 11rem; + .sm\:-top-full { + top: -100%; } - .sm\:right-44 { - right: 11rem; + .sm\:right-0 { + right: 0px; } - .sm\:bottom-44 { - bottom: 11rem; + .sm\:right-1 { + right: 0.25rem; } - .sm\:left-44 { - left: 11rem; + .sm\:right-2 { + right: 0.5rem; } - .sm\:top-48 { - top: 12rem; + .sm\:right-3 { + right: 0.75rem; } - .sm\:right-48 { - right: 12rem; + .sm\:right-4 { + right: 1rem; } - .sm\:bottom-48 { - bottom: 12rem; + .sm\:right-5 { + right: 1.25rem; } - .sm\:left-48 { - left: 12rem; + .sm\:right-6 { + right: 1.5rem; } - .sm\:top-52 { - top: 13rem; + .sm\:right-7 { + right: 1.75rem; } - .sm\:right-52 { - right: 13rem; + .sm\:right-8 { + right: 2rem; } - .sm\:bottom-52 { - bottom: 13rem; + .sm\:right-9 { + right: 2.25rem; } - .sm\:left-52 { - left: 13rem; + .sm\:right-10 { + right: 2.5rem; } - .sm\:top-56 { - top: 14rem; + .sm\:right-11 { + right: 2.75rem; } - .sm\:right-56 { - right: 14rem; + .sm\:right-12 { + right: 3rem; } - .sm\:bottom-56 { - bottom: 14rem; + .sm\:right-14 { + right: 3.5rem; } - .sm\:left-56 { - left: 14rem; + .sm\:right-16 { + right: 4rem; } - .sm\:top-60 { - top: 15rem; + .sm\:right-20 { + right: 5rem; } - .sm\:right-60 { - right: 15rem; + .sm\:right-24 { + right: 6rem; } - .sm\:bottom-60 { - bottom: 15rem; + .sm\:right-28 { + right: 7rem; } - .sm\:left-60 { - left: 15rem; + .sm\:right-32 { + right: 8rem; } - .sm\:top-64 { - top: 16rem; + .sm\:right-36 { + right: 9rem; } - .sm\:right-64 { - right: 16rem; + .sm\:right-40 { + right: 10rem; } - .sm\:bottom-64 { - bottom: 16rem; + .sm\:right-44 { + right: 11rem; } - .sm\:left-64 { - left: 16rem; + .sm\:right-48 { + right: 12rem; } - .sm\:top-72 { - top: 18rem; + .sm\:right-52 { + right: 13rem; } - .sm\:right-72 { - right: 18rem; + .sm\:right-56 { + right: 14rem; } - .sm\:bottom-72 { - bottom: 18rem; + .sm\:right-60 { + right: 15rem; } - .sm\:left-72 { - left: 18rem; + .sm\:right-64 { + right: 16rem; } - .sm\:top-80 { - top: 20rem; + .sm\:right-72 { + right: 18rem; } .sm\:right-80 { right: 20rem; } - .sm\:bottom-80 { - bottom: 20rem; + .sm\:right-96 { + right: 24rem; } - .sm\:left-80 { - left: 20rem; + .sm\:right-auto { + right: auto; } - .sm\:top-96 { - top: 24rem; + .sm\:right-px { + right: 1px; } - .sm\:right-96 { - right: 24rem; + .sm\:right-0\.5 { + right: 0.125rem; } - .sm\:bottom-96 { - bottom: 24rem; + .sm\:right-1\.5 { + right: 0.375rem; } - .sm\:left-96 { - left: 24rem; + .sm\:right-2\.5 { + right: 0.625rem; } - .sm\:top-auto { - top: auto; + .sm\:right-3\.5 { + right: 0.875rem; } - .sm\:right-auto { - right: auto; + .sm\:-right-0 { + right: 0px; } - .sm\:bottom-auto { - bottom: auto; + .sm\:-right-1 { + right: -0.25rem; } - .sm\:left-auto { - left: auto; + .sm\:-right-2 { + right: -0.5rem; } - .sm\:top-px { - top: 1px; + .sm\:-right-3 { + right: -0.75rem; } - .sm\:right-px { - right: 1px; + .sm\:-right-4 { + right: -1rem; } - .sm\:bottom-px { - bottom: 1px; + .sm\:-right-5 { + right: -1.25rem; } - .sm\:left-px { - left: 1px; + .sm\:-right-6 { + right: -1.5rem; } - .sm\:top-0\.5 { - top: 0.125rem; + .sm\:-right-7 { + right: -1.75rem; } - .sm\:right-0\.5 { - right: 0.125rem; + .sm\:-right-8 { + right: -2rem; } - .sm\:bottom-0\.5 { - bottom: 0.125rem; + .sm\:-right-9 { + right: -2.25rem; } - .sm\:left-0\.5 { - left: 0.125rem; + .sm\:-right-10 { + right: -2.5rem; } - .sm\:top-1\.5 { - top: 0.375rem; + .sm\:-right-11 { + right: -2.75rem; } - .sm\:right-1\.5 { - right: 0.375rem; + .sm\:-right-12 { + right: -3rem; } - .sm\:bottom-1\.5 { - bottom: 0.375rem; + .sm\:-right-14 { + right: -3.5rem; } - .sm\:left-1\.5 { - left: 0.375rem; + .sm\:-right-16 { + right: -4rem; } - .sm\:top-2\.5 { - top: 0.625rem; + .sm\:-right-20 { + right: -5rem; } - .sm\:right-2\.5 { - right: 0.625rem; + .sm\:-right-24 { + right: -6rem; } - .sm\:bottom-2\.5 { - bottom: 0.625rem; + .sm\:-right-28 { + right: -7rem; } - .sm\:left-2\.5 { - left: 0.625rem; + .sm\:-right-32 { + right: -8rem; } - .sm\:top-3\.5 { - top: 0.875rem; + .sm\:-right-36 { + right: -9rem; } - .sm\:right-3\.5 { - right: 0.875rem; + .sm\:-right-40 { + right: -10rem; } - .sm\:bottom-3\.5 { - bottom: 0.875rem; + .sm\:-right-44 { + right: -11rem; } - .sm\:left-3\.5 { - left: 0.875rem; + .sm\:-right-48 { + right: -12rem; } - .sm\:-top-0 { - top: 0px; + .sm\:-right-52 { + right: -13rem; } - .sm\:-right-0 { - right: 0px; + .sm\:-right-56 { + right: -14rem; } - .sm\:-bottom-0 { - bottom: 0px; + .sm\:-right-60 { + right: -15rem; } - .sm\:-left-0 { - left: 0px; + .sm\:-right-64 { + right: -16rem; } - .sm\:-top-1 { - top: -0.25rem; + .sm\:-right-72 { + right: -18rem; } - .sm\:-right-1 { - right: -0.25rem; + .sm\:-right-80 { + right: -20rem; } - .sm\:-bottom-1 { - bottom: -0.25rem; + .sm\:-right-96 { + right: -24rem; } - .sm\:-left-1 { - left: -0.25rem; + .sm\:-right-px { + right: -1px; } - .sm\:-top-2 { - top: -0.5rem; + .sm\:-right-0\.5 { + right: -0.125rem; } - .sm\:-right-2 { - right: -0.5rem; + .sm\:-right-1\.5 { + right: -0.375rem; } - .sm\:-bottom-2 { - bottom: -0.5rem; + .sm\:-right-2\.5 { + right: -0.625rem; } - .sm\:-left-2 { - left: -0.5rem; + .sm\:-right-3\.5 { + right: -0.875rem; } - .sm\:-top-3 { - top: -0.75rem; + .sm\:right-1\/2 { + right: 50%; } - .sm\:-right-3 { - right: -0.75rem; + .sm\:right-1\/3 { + right: 33.333333%; } - .sm\:-bottom-3 { - bottom: -0.75rem; + .sm\:right-2\/3 { + right: 66.666667%; } - .sm\:-left-3 { - left: -0.75rem; + .sm\:right-1\/4 { + right: 25%; } - .sm\:-top-4 { - top: -1rem; + .sm\:right-2\/4 { + right: 50%; } - .sm\:-right-4 { - right: -1rem; + .sm\:right-3\/4 { + right: 75%; } - .sm\:-bottom-4 { - bottom: -1rem; + .sm\:right-full { + right: 100%; } - .sm\:-left-4 { - left: -1rem; + .sm\:-right-1\/2 { + right: -50%; } - .sm\:-top-5 { - top: -1.25rem; + .sm\:-right-1\/3 { + right: -33.333333%; } - .sm\:-right-5 { - right: -1.25rem; + .sm\:-right-2\/3 { + right: -66.666667%; } - .sm\:-bottom-5 { - bottom: -1.25rem; + .sm\:-right-1\/4 { + right: -25%; } - .sm\:-left-5 { - left: -1.25rem; + .sm\:-right-2\/4 { + right: -50%; } - .sm\:-top-6 { - top: -1.5rem; + .sm\:-right-3\/4 { + right: -75%; } - .sm\:-right-6 { - right: -1.5rem; + .sm\:-right-full { + right: -100%; } - .sm\:-bottom-6 { - bottom: -1.5rem; + .sm\:bottom-0 { + bottom: 0px; } - .sm\:-left-6 { - left: -1.5rem; + .sm\:bottom-1 { + bottom: 0.25rem; } - .sm\:-top-7 { - top: -1.75rem; + .sm\:bottom-2 { + bottom: 0.5rem; } - .sm\:-right-7 { - right: -1.75rem; + .sm\:bottom-3 { + bottom: 0.75rem; } - .sm\:-bottom-7 { - bottom: -1.75rem; + .sm\:bottom-4 { + bottom: 1rem; } - .sm\:-left-7 { - left: -1.75rem; + .sm\:bottom-5 { + bottom: 1.25rem; } - .sm\:-top-8 { - top: -2rem; + .sm\:bottom-6 { + bottom: 1.5rem; } - .sm\:-right-8 { - right: -2rem; + .sm\:bottom-7 { + bottom: 1.75rem; } - .sm\:-bottom-8 { - bottom: -2rem; + .sm\:bottom-8 { + bottom: 2rem; } - .sm\:-left-8 { - left: -2rem; + .sm\:bottom-9 { + bottom: 2.25rem; } - .sm\:-top-9 { - top: -2.25rem; + .sm\:bottom-10 { + bottom: 2.5rem; } - .sm\:-right-9 { - right: -2.25rem; + .sm\:bottom-11 { + bottom: 2.75rem; } - .sm\:-bottom-9 { - bottom: -2.25rem; + .sm\:bottom-12 { + bottom: 3rem; } - .sm\:-left-9 { - left: -2.25rem; + .sm\:bottom-14 { + bottom: 3.5rem; } - .sm\:-top-10 { - top: -2.5rem; + .sm\:bottom-16 { + bottom: 4rem; } - .sm\:-right-10 { - right: -2.5rem; + .sm\:bottom-20 { + bottom: 5rem; } - .sm\:-bottom-10 { - bottom: -2.5rem; + .sm\:bottom-24 { + bottom: 6rem; } - .sm\:-left-10 { - left: -2.5rem; + .sm\:bottom-28 { + bottom: 7rem; } - .sm\:-top-11 { - top: -2.75rem; + .sm\:bottom-32 { + bottom: 8rem; } - .sm\:-right-11 { - right: -2.75rem; + .sm\:bottom-36 { + bottom: 9rem; } - .sm\:-bottom-11 { - bottom: -2.75rem; + .sm\:bottom-40 { + bottom: 10rem; } - .sm\:-left-11 { - left: -2.75rem; + .sm\:bottom-44 { + bottom: 11rem; } - .sm\:-top-12 { - top: -3rem; + .sm\:bottom-48 { + bottom: 12rem; } - .sm\:-right-12 { - right: -3rem; + .sm\:bottom-52 { + bottom: 13rem; } - .sm\:-bottom-12 { - bottom: -3rem; + .sm\:bottom-56 { + bottom: 14rem; } - .sm\:-left-12 { - left: -3rem; + .sm\:bottom-60 { + bottom: 15rem; } - .sm\:-top-14 { - top: -3.5rem; + .sm\:bottom-64 { + bottom: 16rem; } - .sm\:-right-14 { - right: -3.5rem; + .sm\:bottom-72 { + bottom: 18rem; } - .sm\:-bottom-14 { - bottom: -3.5rem; + .sm\:bottom-80 { + bottom: 20rem; } - .sm\:-left-14 { - left: -3.5rem; + .sm\:bottom-96 { + bottom: 24rem; } - .sm\:-top-16 { - top: -4rem; + .sm\:bottom-auto { + bottom: auto; } - .sm\:-right-16 { - right: -4rem; + .sm\:bottom-px { + bottom: 1px; } - .sm\:-bottom-16 { - bottom: -4rem; + .sm\:bottom-0\.5 { + bottom: 0.125rem; } - .sm\:-left-16 { - left: -4rem; + .sm\:bottom-1\.5 { + bottom: 0.375rem; } - .sm\:-top-20 { - top: -5rem; + .sm\:bottom-2\.5 { + bottom: 0.625rem; } - .sm\:-right-20 { - right: -5rem; + .sm\:bottom-3\.5 { + bottom: 0.875rem; } - .sm\:-bottom-20 { - bottom: -5rem; + .sm\:-bottom-0 { + bottom: 0px; } - .sm\:-left-20 { - left: -5rem; + .sm\:-bottom-1 { + bottom: -0.25rem; } - .sm\:-top-24 { - top: -6rem; + .sm\:-bottom-2 { + bottom: -0.5rem; } - .sm\:-right-24 { - right: -6rem; + .sm\:-bottom-3 { + bottom: -0.75rem; } - .sm\:-bottom-24 { - bottom: -6rem; + .sm\:-bottom-4 { + bottom: -1rem; } - .sm\:-left-24 { - left: -6rem; + .sm\:-bottom-5 { + bottom: -1.25rem; } - .sm\:-top-28 { - top: -7rem; + .sm\:-bottom-6 { + bottom: -1.5rem; } - .sm\:-right-28 { - right: -7rem; + .sm\:-bottom-7 { + bottom: -1.75rem; } - .sm\:-bottom-28 { - bottom: -7rem; + .sm\:-bottom-8 { + bottom: -2rem; } - .sm\:-left-28 { - left: -7rem; + .sm\:-bottom-9 { + bottom: -2.25rem; } - .sm\:-top-32 { - top: -8rem; + .sm\:-bottom-10 { + bottom: -2.5rem; } - .sm\:-right-32 { - right: -8rem; + .sm\:-bottom-11 { + bottom: -2.75rem; } - .sm\:-bottom-32 { - bottom: -8rem; + .sm\:-bottom-12 { + bottom: -3rem; } - .sm\:-left-32 { - left: -8rem; + .sm\:-bottom-14 { + bottom: -3.5rem; } - .sm\:-top-36 { - top: -9rem; + .sm\:-bottom-16 { + bottom: -4rem; } - .sm\:-right-36 { - right: -9rem; + .sm\:-bottom-20 { + bottom: -5rem; } - .sm\:-bottom-36 { - bottom: -9rem; + .sm\:-bottom-24 { + bottom: -6rem; } - .sm\:-left-36 { - left: -9rem; + .sm\:-bottom-28 { + bottom: -7rem; } - .sm\:-top-40 { - top: -10rem; + .sm\:-bottom-32 { + bottom: -8rem; } - .sm\:-right-40 { - right: -10rem; + .sm\:-bottom-36 { + bottom: -9rem; } .sm\:-bottom-40 { bottom: -10rem; } - .sm\:-left-40 { - left: -10rem; + .sm\:-bottom-44 { + bottom: -11rem; } - .sm\:-top-44 { - top: -11rem; + .sm\:-bottom-48 { + bottom: -12rem; } - .sm\:-right-44 { - right: -11rem; + .sm\:-bottom-52 { + bottom: -13rem; } - .sm\:-bottom-44 { - bottom: -11rem; + .sm\:-bottom-56 { + bottom: -14rem; } - .sm\:-left-44 { - left: -11rem; + .sm\:-bottom-60 { + bottom: -15rem; } - .sm\:-top-48 { - top: -12rem; + .sm\:-bottom-64 { + bottom: -16rem; } - .sm\:-right-48 { - right: -12rem; + .sm\:-bottom-72 { + bottom: -18rem; } - .sm\:-bottom-48 { - bottom: -12rem; + .sm\:-bottom-80 { + bottom: -20rem; } - .sm\:-left-48 { - left: -12rem; + .sm\:-bottom-96 { + bottom: -24rem; } - .sm\:-top-52 { - top: -13rem; + .sm\:-bottom-px { + bottom: -1px; } - .sm\:-right-52 { - right: -13rem; + .sm\:-bottom-0\.5 { + bottom: -0.125rem; } - .sm\:-bottom-52 { - bottom: -13rem; + .sm\:-bottom-1\.5 { + bottom: -0.375rem; } - .sm\:-left-52 { - left: -13rem; + .sm\:-bottom-2\.5 { + bottom: -0.625rem; } - .sm\:-top-56 { - top: -14rem; + .sm\:-bottom-3\.5 { + bottom: -0.875rem; } - .sm\:-right-56 { - right: -14rem; + .sm\:bottom-1\/2 { + bottom: 50%; } - .sm\:-bottom-56 { - bottom: -14rem; + .sm\:bottom-1\/3 { + bottom: 33.333333%; } - .sm\:-left-56 { - left: -14rem; + .sm\:bottom-2\/3 { + bottom: 66.666667%; } - .sm\:-top-60 { - top: -15rem; + .sm\:bottom-1\/4 { + bottom: 25%; } - .sm\:-right-60 { - right: -15rem; + .sm\:bottom-2\/4 { + bottom: 50%; } - .sm\:-bottom-60 { - bottom: -15rem; + .sm\:bottom-3\/4 { + bottom: 75%; } - .sm\:-left-60 { - left: -15rem; + .sm\:bottom-full { + bottom: 100%; } - .sm\:-top-64 { - top: -16rem; + .sm\:-bottom-1\/2 { + bottom: -50%; } - .sm\:-right-64 { - right: -16rem; + .sm\:-bottom-1\/3 { + bottom: -33.333333%; } - .sm\:-bottom-64 { - bottom: -16rem; + .sm\:-bottom-2\/3 { + bottom: -66.666667%; } - .sm\:-left-64 { - left: -16rem; + .sm\:-bottom-1\/4 { + bottom: -25%; } - .sm\:-top-72 { - top: -18rem; + .sm\:-bottom-2\/4 { + bottom: -50%; } - .sm\:-right-72 { - right: -18rem; + .sm\:-bottom-3\/4 { + bottom: -75%; } - .sm\:-bottom-72 { - bottom: -18rem; + .sm\:-bottom-full { + bottom: -100%; } - .sm\:-left-72 { - left: -18rem; + .sm\:left-0 { + left: 0px; } - .sm\:-top-80 { - top: -20rem; + .sm\:left-1 { + left: 0.25rem; } - .sm\:-right-80 { - right: -20rem; + .sm\:left-2 { + left: 0.5rem; } - .sm\:-bottom-80 { - bottom: -20rem; + .sm\:left-3 { + left: 0.75rem; } - .sm\:-left-80 { - left: -20rem; + .sm\:left-4 { + left: 1rem; } - .sm\:-top-96 { - top: -24rem; + .sm\:left-5 { + left: 1.25rem; } - .sm\:-right-96 { - right: -24rem; + .sm\:left-6 { + left: 1.5rem; } - .sm\:-bottom-96 { - bottom: -24rem; + .sm\:left-7 { + left: 1.75rem; } - .sm\:-left-96 { - left: -24rem; + .sm\:left-8 { + left: 2rem; } - .sm\:-top-px { - top: -1px; + .sm\:left-9 { + left: 2.25rem; } - .sm\:-right-px { - right: -1px; + .sm\:left-10 { + left: 2.5rem; } - .sm\:-bottom-px { - bottom: -1px; + .sm\:left-11 { + left: 2.75rem; } - .sm\:-left-px { - left: -1px; + .sm\:left-12 { + left: 3rem; } - .sm\:-top-0\.5 { - top: -0.125rem; + .sm\:left-14 { + left: 3.5rem; } - .sm\:-right-0\.5 { - right: -0.125rem; + .sm\:left-16 { + left: 4rem; } - .sm\:-bottom-0\.5 { - bottom: -0.125rem; + .sm\:left-20 { + left: 5rem; } - .sm\:-left-0\.5 { - left: -0.125rem; + .sm\:left-24 { + left: 6rem; } - .sm\:-top-1\.5 { - top: -0.375rem; + .sm\:left-28 { + left: 7rem; } - .sm\:-right-1\.5 { - right: -0.375rem; + .sm\:left-32 { + left: 8rem; } - .sm\:-bottom-1\.5 { - bottom: -0.375rem; + .sm\:left-36 { + left: 9rem; } - .sm\:-left-1\.5 { - left: -0.375rem; + .sm\:left-40 { + left: 10rem; } - .sm\:-top-2\.5 { - top: -0.625rem; + .sm\:left-44 { + left: 11rem; } - .sm\:-right-2\.5 { - right: -0.625rem; + .sm\:left-48 { + left: 12rem; } - .sm\:-bottom-2\.5 { - bottom: -0.625rem; + .sm\:left-52 { + left: 13rem; } - .sm\:-left-2\.5 { - left: -0.625rem; + .sm\:left-56 { + left: 14rem; } - .sm\:-top-3\.5 { - top: -0.875rem; + .sm\:left-60 { + left: 15rem; } - .sm\:-right-3\.5 { - right: -0.875rem; + .sm\:left-64 { + left: 16rem; } - .sm\:-bottom-3\.5 { - bottom: -0.875rem; + .sm\:left-72 { + left: 18rem; } - .sm\:-left-3\.5 { - left: -0.875rem; + .sm\:left-80 { + left: 20rem; } - .sm\:top-1\/2 { - top: 50%; + .sm\:left-96 { + left: 24rem; } - .sm\:right-1\/2 { - right: 50%; + .sm\:left-auto { + left: auto; } - .sm\:bottom-1\/2 { - bottom: 50%; + .sm\:left-px { + left: 1px; } - .sm\:left-1\/2 { - left: 50%; + .sm\:left-0\.5 { + left: 0.125rem; } - .sm\:top-1\/3 { - top: 33.333333%; + .sm\:left-1\.5 { + left: 0.375rem; } - .sm\:right-1\/3 { - right: 33.333333%; + .sm\:left-2\.5 { + left: 0.625rem; } - .sm\:bottom-1\/3 { - bottom: 33.333333%; + .sm\:left-3\.5 { + left: 0.875rem; } - .sm\:left-1\/3 { - left: 33.333333%; + .sm\:-left-0 { + left: 0px; } - .sm\:top-2\/3 { - top: 66.666667%; + .sm\:-left-1 { + left: -0.25rem; } - .sm\:right-2\/3 { - right: 66.666667%; + .sm\:-left-2 { + left: -0.5rem; } - .sm\:bottom-2\/3 { - bottom: 66.666667%; + .sm\:-left-3 { + left: -0.75rem; } - .sm\:left-2\/3 { - left: 66.666667%; + .sm\:-left-4 { + left: -1rem; } - .sm\:top-1\/4 { - top: 25%; + .sm\:-left-5 { + left: -1.25rem; } - .sm\:right-1\/4 { - right: 25%; + .sm\:-left-6 { + left: -1.5rem; } - .sm\:bottom-1\/4 { - bottom: 25%; + .sm\:-left-7 { + left: -1.75rem; } - .sm\:left-1\/4 { - left: 25%; + .sm\:-left-8 { + left: -2rem; } - .sm\:top-2\/4 { - top: 50%; + .sm\:-left-9 { + left: -2.25rem; } - .sm\:right-2\/4 { - right: 50%; + .sm\:-left-10 { + left: -2.5rem; } - .sm\:bottom-2\/4 { - bottom: 50%; + .sm\:-left-11 { + left: -2.75rem; } - .sm\:left-2\/4 { - left: 50%; + .sm\:-left-12 { + left: -3rem; } - .sm\:top-3\/4 { - top: 75%; + .sm\:-left-14 { + left: -3.5rem; } - .sm\:right-3\/4 { - right: 75%; + .sm\:-left-16 { + left: -4rem; } - .sm\:bottom-3\/4 { - bottom: 75%; + .sm\:-left-20 { + left: -5rem; } - .sm\:left-3\/4 { - left: 75%; + .sm\:-left-24 { + left: -6rem; } - .sm\:top-full { - top: 100%; + .sm\:-left-28 { + left: -7rem; } - .sm\:right-full { - right: 100%; + .sm\:-left-32 { + left: -8rem; } - .sm\:bottom-full { - bottom: 100%; + .sm\:-left-36 { + left: -9rem; } - .sm\:left-full { - left: 100%; + .sm\:-left-40 { + left: -10rem; } - .sm\:-top-1\/2 { - top: -50%; + .sm\:-left-44 { + left: -11rem; } - .sm\:-right-1\/2 { - right: -50%; + .sm\:-left-48 { + left: -12rem; } - .sm\:-bottom-1\/2 { - bottom: -50%; + .sm\:-left-52 { + left: -13rem; } - .sm\:-left-1\/2 { - left: -50%; + .sm\:-left-56 { + left: -14rem; } - .sm\:-top-1\/3 { - top: -33.333333%; + .sm\:-left-60 { + left: -15rem; } - .sm\:-right-1\/3 { - right: -33.333333%; + .sm\:-left-64 { + left: -16rem; } - .sm\:-bottom-1\/3 { - bottom: -33.333333%; + .sm\:-left-72 { + left: -18rem; } - .sm\:-left-1\/3 { - left: -33.333333%; + .sm\:-left-80 { + left: -20rem; } - .sm\:-top-2\/3 { - top: -66.666667%; + .sm\:-left-96 { + left: -24rem; } - .sm\:-right-2\/3 { - right: -66.666667%; + .sm\:-left-px { + left: -1px; } - .sm\:-bottom-2\/3 { - bottom: -66.666667%; + .sm\:-left-0\.5 { + left: -0.125rem; } - .sm\:-left-2\/3 { - left: -66.666667%; + .sm\:-left-1\.5 { + left: -0.375rem; } - .sm\:-top-1\/4 { - top: -25%; + .sm\:-left-2\.5 { + left: -0.625rem; } - .sm\:-right-1\/4 { - right: -25%; + .sm\:-left-3\.5 { + left: -0.875rem; } - .sm\:-bottom-1\/4 { - bottom: -25%; + .sm\:left-1\/2 { + left: 50%; } - .sm\:-left-1\/4 { - left: -25%; + .sm\:left-1\/3 { + left: 33.333333%; } - .sm\:-top-2\/4 { - top: -50%; + .sm\:left-2\/3 { + left: 66.666667%; } - .sm\:-right-2\/4 { - right: -50%; + .sm\:left-1\/4 { + left: 25%; } - .sm\:-bottom-2\/4 { - bottom: -50%; + .sm\:left-2\/4 { + left: 50%; } - .sm\:-left-2\/4 { - left: -50%; + .sm\:left-3\/4 { + left: 75%; } - .sm\:-top-3\/4 { - top: -75%; + .sm\:left-full { + left: 100%; } - .sm\:-right-3\/4 { - right: -75%; + .sm\:-left-1\/2 { + left: -50%; } - .sm\:-bottom-3\/4 { - bottom: -75%; + .sm\:-left-1\/3 { + left: -33.333333%; } - .sm\:-left-3\/4 { - left: -75%; + .sm\:-left-2\/3 { + left: -66.666667%; } - .sm\:-top-full { - top: -100%; + .sm\:-left-1\/4 { + left: -25%; } - .sm\:-right-full { - right: -100%; + .sm\:-left-2\/4 { + left: -50%; } - .sm\:-bottom-full { - bottom: -100%; + .sm\:-left-3\/4 { + left: -75%; } .sm\:-left-full { @@ -38791,133 +38791,183 @@ video { --tw-scale-y: 1.5; } - .sm\:scale-x-0 { + .sm\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:scale-x-50 { + .sm\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:scale-x-75 { + .sm\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:scale-x-90 { + .sm\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:scale-x-95 { + .sm\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:scale-x-100 { + .sm\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:scale-x-105 { + .sm\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:scale-x-110 { + .sm\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:scale-x-125 { + .sm\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:scale-x-150 { + .sm\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:scale-y-0 { + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .sm\:scale-y-50 { + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .sm\:scale-y-75 { + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .sm\:scale-y-90 { + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .sm\:scale-y-95 { + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .sm\:scale-y-100 { + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .sm\:scale-y-105 { + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .sm\:scale-y-110 { + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .sm\:scale-y-125 { + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .sm\:scale-y-150 { + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .sm\:hover\:scale-0:hover { + .sm\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .sm\:hover\:scale-50:hover { + .sm\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .sm\:hover\:scale-75:hover { + .sm\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .sm\:hover\:scale-90:hover { + .sm\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .sm\:hover\:scale-95:hover { + .sm\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .sm\:hover\:scale-100:hover { + .sm\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .sm\:hover\:scale-105:hover { + .sm\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .sm\:hover\:scale-110:hover { + .sm\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .sm\:hover\:scale-125:hover { + .sm\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .sm\:hover\:scale-150:hover { + .sm\:scale-x-150 { --tw-scale-x: 1.5; + } + + .sm\:scale-y-0 { + --tw-scale-y: 0; + } + + .sm\:scale-y-50 { + --tw-scale-y: .5; + } + + .sm\:scale-y-75 { + --tw-scale-y: .75; + } + + .sm\:scale-y-90 { + --tw-scale-y: .9; + } + + .sm\:scale-y-95 { + --tw-scale-y: .95; + } + + .sm\:scale-y-100 { + --tw-scale-y: 1; + } + + .sm\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .sm\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .sm\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .sm\:scale-y-150 { --tw-scale-y: 1.5; } @@ -39001,56 +39051,6 @@ video { --tw-scale-y: 1.5; } - .sm\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .sm\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .sm\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .sm\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .sm\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .sm\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .sm\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .sm\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .sm\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .sm\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .sm\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -39943,436 +39943,640 @@ video { row-gap: 0.875rem; } - .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .sm\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .sm\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .sm\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -40381,408 +40585,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -40791,66 +40791,66 @@ video { --tw-space-x-reverse: 1; } - .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -47264,2188 +47264,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .sm\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .sm\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .sm\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .sm\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .sm\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .sm\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .sm\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .sm\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .sm\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .sm\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .sm\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .sm\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .sm\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .sm\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .sm\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .sm\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .sm\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .sm\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .sm\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .sm\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .sm\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .sm\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .sm\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .sm\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .sm\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .sm\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .sm\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .sm\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .sm\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .sm\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .sm\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .sm\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .sm\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .sm\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .sm\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .sm\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .sm\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .sm\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .sm\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .sm\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .sm\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .sm\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .sm\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .sm\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .sm\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .sm\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .sm\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .sm\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .sm\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .sm\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .sm\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .sm\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .sm\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .sm\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .sm\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .sm\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .sm\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .sm\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .sm\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .sm\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .sm\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .sm\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .sm\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .sm\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .sm\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .sm\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .sm\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .sm\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .sm\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .sm\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .sm\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .sm\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .sm\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .sm\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .sm\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .sm\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .sm\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .sm\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .sm\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .sm\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .sm\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .sm\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .sm\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .sm\:to-transparent { - --tw-gradient-to: transparent; + .sm\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:to-current { - --tw-gradient-to: currentColor; + .sm\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:to-black { - --tw-gradient-to: #000; + .sm\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:to-white { - --tw-gradient-to: #fff; + .sm\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .sm\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .sm\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .sm\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .sm\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .sm\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:to-gray-500 { - --tw-gradient-to: #6b7280; + .sm\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:to-gray-600 { - --tw-gradient-to: #4b5563; + .sm\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:to-gray-700 { - --tw-gradient-to: #374151; + .sm\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:to-gray-800 { - --tw-gradient-to: #1f2937; + .sm\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:to-gray-900 { - --tw-gradient-to: #111827; + .sm\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:to-red-50 { - --tw-gradient-to: #fef2f2; + .sm\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:to-red-100 { - --tw-gradient-to: #fee2e2; + .sm\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:to-red-200 { - --tw-gradient-to: #fecaca; + .sm\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:to-red-300 { - --tw-gradient-to: #fca5a5; + .sm\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:to-red-400 { - --tw-gradient-to: #f87171; + .sm\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:to-red-500 { - --tw-gradient-to: #ef4444; + .sm\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:to-red-600 { - --tw-gradient-to: #dc2626; + .sm\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:to-red-700 { - --tw-gradient-to: #b91c1c; + .sm\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:to-red-800 { - --tw-gradient-to: #991b1b; + .sm\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .sm\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .sm\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .sm\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .sm\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .sm\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .sm\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .sm\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:to-yellow-600 { - --tw-gradient-to: #d97706; + .sm\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:to-yellow-700 { - --tw-gradient-to: #b45309; + .sm\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:to-yellow-800 { - --tw-gradient-to: #92400e; + .sm\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:to-yellow-900 { - --tw-gradient-to: #78350f; + .sm\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .sm\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:to-green-100 { - --tw-gradient-to: #d1fae5; + .sm\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .sm\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .sm\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:to-green-400 { - --tw-gradient-to: #34d399; + .sm\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:to-green-500 { - --tw-gradient-to: #10b981; + .sm\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:to-green-600 { - --tw-gradient-to: #059669; + .sm\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:to-green-700 { - --tw-gradient-to: #047857; + .sm\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:to-green-800 { - --tw-gradient-to: #065f46; + .sm\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:to-green-900 { - --tw-gradient-to: #064e3b; + .sm\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .sm\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .sm\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .sm\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .sm\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .sm\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .sm\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:to-blue-600 { - --tw-gradient-to: #2563eb; + .sm\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .sm\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:to-blue-800 { - --tw-gradient-to: #1e40af; + .sm\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .sm\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .sm\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .sm\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .sm\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .sm\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .sm\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .sm\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .sm\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .sm\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .sm\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:to-indigo-900 { - --tw-gradient-to: #312e81; + .sm\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .sm\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .sm\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .sm\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .sm\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .sm\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .sm\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .sm\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .sm\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .sm\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .sm\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .sm\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .sm\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .sm\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .sm\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:to-pink-400 { - --tw-gradient-to: #f472b6; + .sm\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:to-pink-500 { - --tw-gradient-to: #ec4899; + .sm\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:to-pink-600 { - --tw-gradient-to: #db2777; + .sm\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:to-pink-700 { - --tw-gradient-to: #be185d; + .sm\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:to-pink-800 { - --tw-gradient-to: #9d174d; + .sm\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:to-pink-900 { - --tw-gradient-to: #831843; + .sm\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:hover\:from-transparent:hover { + .sm\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:from-current:hover { + .sm\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:from-black:hover { + .sm\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:from-white:hover { + .sm\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:from-gray-50:hover { + .sm\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:hover\:from-gray-100:hover { + .sm\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:hover\:from-gray-200:hover { + .sm\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:hover\:from-gray-300:hover { + .sm\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:hover\:from-gray-400:hover { + .sm\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:hover\:from-gray-500:hover { + .sm\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:hover\:from-gray-600:hover { + .sm\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:hover\:from-gray-700:hover { + .sm\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:hover\:from-gray-800:hover { + .sm\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:hover\:from-gray-900:hover { + .sm\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:hover\:from-red-50:hover { + .sm\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:hover\:from-red-100:hover { + .sm\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:hover\:from-red-200:hover { + .sm\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:hover\:from-red-300:hover { + .sm\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:hover\:from-red-400:hover { + .sm\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:hover\:from-red-500:hover { + .sm\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:hover\:from-red-600:hover { + .sm\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:hover\:from-red-700:hover { + .sm\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:hover\:from-red-800:hover { + .sm\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:hover\:from-red-900:hover { + .sm\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:hover\:from-yellow-50:hover { + .sm\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:hover\:from-yellow-100:hover { + .sm\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:hover\:from-yellow-200:hover { + .sm\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:hover\:from-yellow-300:hover { + .sm\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:hover\:from-yellow-400:hover { + .sm\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:hover\:from-yellow-500:hover { + .sm\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:hover\:from-yellow-600:hover { + .sm\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:hover\:from-yellow-700:hover { + .sm\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:hover\:from-yellow-800:hover { + .sm\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:hover\:from-yellow-900:hover { + .sm\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:hover\:from-green-50:hover { + .sm\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:hover\:from-green-100:hover { + .sm\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:hover\:from-green-200:hover { + .sm\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:hover\:from-green-300:hover { + .sm\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:hover\:from-green-400:hover { + .sm\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:hover\:from-green-500:hover { + .sm\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:hover\:from-green-600:hover { + .sm\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:hover\:from-green-700:hover { + .sm\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:hover\:from-green-800:hover { + .sm\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:hover\:from-green-900:hover { + .sm\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:hover\:from-blue-50:hover { + .sm\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:hover\:from-blue-100:hover { + .sm\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:hover\:from-blue-200:hover { + .sm\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:hover\:from-blue-300:hover { + .sm\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:hover\:from-blue-400:hover { + .sm\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:hover\:from-blue-500:hover { + .sm\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:hover\:from-blue-600:hover { + .sm\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:hover\:from-blue-700:hover { + .sm\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:hover\:from-blue-800:hover { + .sm\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:hover\:from-blue-900:hover { + .sm\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:hover\:from-indigo-50:hover { + .sm\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:hover\:from-indigo-100:hover { + .sm\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:hover\:from-indigo-200:hover { + .sm\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:hover\:from-indigo-300:hover { + .sm\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:hover\:from-indigo-400:hover { + .sm\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:hover\:from-indigo-500:hover { + .sm\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:hover\:from-indigo-600:hover { + .sm\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:hover\:from-indigo-700:hover { + .sm\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:hover\:from-indigo-800:hover { + .sm\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:hover\:from-indigo-900:hover { + .sm\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:hover\:from-purple-50:hover { + .sm\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:hover\:from-purple-100:hover { + .sm\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:hover\:from-purple-200:hover { + .sm\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:hover\:from-purple-300:hover { + .sm\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:hover\:from-purple-400:hover { + .sm\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:hover\:from-purple-500:hover { + .sm\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:hover\:from-purple-600:hover { + .sm\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:hover\:from-purple-700:hover { + .sm\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:hover\:from-purple-800:hover { + .sm\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:hover\:from-purple-900:hover { + .sm\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:hover\:from-pink-50:hover { + .sm\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:hover\:from-pink-100:hover { + .sm\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:hover\:from-pink-200:hover { + .sm\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:hover\:from-pink-300:hover { + .sm\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:hover\:from-pink-400:hover { + .sm\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:hover\:from-pink-500:hover { + .sm\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:hover\:from-pink-600:hover { + .sm\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:hover\:from-pink-700:hover { + .sm\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:hover\:from-pink-800:hover { + .sm\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:hover\:from-pink-900:hover { + .sm\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:hover\:via-transparent:hover { + .sm\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:via-current:hover { + .sm\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:via-black:hover { + .sm\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:via-white:hover { + .sm\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:via-gray-50:hover { + .sm\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:hover\:via-gray-100:hover { + .sm\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:hover\:via-gray-200:hover { + .sm\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:hover\:via-gray-300:hover { + .sm\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:hover\:via-gray-400:hover { + .sm\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:hover\:via-gray-500:hover { + .sm\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:hover\:via-gray-600:hover { + .sm\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:hover\:via-gray-700:hover { + .sm\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:hover\:via-gray-800:hover { + .sm\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:hover\:via-gray-900:hover { + .sm\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:hover\:via-red-50:hover { + .sm\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:hover\:via-red-100:hover { + .sm\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:hover\:via-red-200:hover { + .sm\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:hover\:via-red-300:hover { + .sm\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:hover\:via-red-400:hover { + .sm\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:hover\:via-red-500:hover { + .sm\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:hover\:via-red-600:hover { + .sm\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:hover\:via-red-700:hover { + .sm\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:hover\:via-red-800:hover { + .sm\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:hover\:via-red-900:hover { + .sm\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:hover\:via-yellow-50:hover { + .sm\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:hover\:via-yellow-100:hover { + .sm\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:hover\:via-yellow-200:hover { + .sm\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:hover\:via-yellow-300:hover { + .sm\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:hover\:via-yellow-400:hover { + .sm\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:hover\:via-yellow-500:hover { + .sm\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:hover\:via-yellow-600:hover { + .sm\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:hover\:via-yellow-700:hover { + .sm\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:hover\:via-yellow-800:hover { + .sm\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:hover\:via-yellow-900:hover { + .sm\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:hover\:via-green-50:hover { + .sm\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:hover\:via-green-100:hover { + .sm\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:hover\:via-green-200:hover { + .sm\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:hover\:via-green-300:hover { + .sm\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:hover\:via-green-400:hover { + .sm\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:hover\:via-green-500:hover { + .sm\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:hover\:via-green-600:hover { + .sm\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:hover\:via-green-700:hover { + .sm\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:hover\:via-green-800:hover { + .sm\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:hover\:via-green-900:hover { + .sm\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:hover\:via-blue-50:hover { + .sm\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:hover\:via-blue-100:hover { + .sm\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:hover\:via-blue-200:hover { + .sm\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:hover\:via-blue-300:hover { + .sm\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:hover\:via-blue-400:hover { + .sm\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:hover\:via-blue-500:hover { + .sm\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:hover\:via-blue-600:hover { + .sm\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:hover\:via-blue-700:hover { + .sm\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:hover\:via-blue-800:hover { + .sm\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:hover\:via-blue-900:hover { + .sm\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:hover\:via-indigo-50:hover { + .sm\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:hover\:via-indigo-100:hover { + .sm\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:hover\:via-indigo-200:hover { + .sm\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:hover\:via-indigo-300:hover { + .sm\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:hover\:via-indigo-400:hover { + .sm\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:hover\:via-indigo-500:hover { + .sm\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:hover\:via-indigo-600:hover { + .sm\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:hover\:via-indigo-700:hover { + .sm\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:hover\:via-indigo-800:hover { + .sm\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:hover\:via-indigo-900:hover { + .sm\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:hover\:via-purple-50:hover { + .sm\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:hover\:via-purple-100:hover { + .sm\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:hover\:via-purple-200:hover { + .sm\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:hover\:via-purple-300:hover { + .sm\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:hover\:via-purple-400:hover { + .sm\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:hover\:via-purple-500:hover { + .sm\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:hover\:via-purple-600:hover { + .sm\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:hover\:via-purple-700:hover { + .sm\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:hover\:via-purple-800:hover { + .sm\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:hover\:via-purple-900:hover { + .sm\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:hover\:via-pink-50:hover { + .sm\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:hover\:via-pink-100:hover { + .sm\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:hover\:via-pink-200:hover { + .sm\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:hover\:via-pink-300:hover { + .sm\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:hover\:via-pink-400:hover { + .sm\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:hover\:via-pink-500:hover { + .sm\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:hover\:via-pink-600:hover { + .sm\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:hover\:via-pink-700:hover { + .sm\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:hover\:via-pink-800:hover { + .sm\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:hover\:via-pink-900:hover { + .sm\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .sm\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .sm\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .sm\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .sm\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .sm\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .sm\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .sm\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .sm\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .sm\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .sm\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .sm\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .sm\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .sm\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .sm\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .sm\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .sm\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .sm\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .sm\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .sm\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .sm\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .sm\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .sm\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .sm\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .sm\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .sm\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .sm\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .sm\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .sm\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .sm\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .sm\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .sm\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .sm\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .sm\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .sm\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .sm\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .sm\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .sm\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .sm\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .sm\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .sm\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .sm\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .sm\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .sm\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .sm\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .sm\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .sm\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .sm\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .sm\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .sm\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .sm\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .sm\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .sm\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .sm\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .sm\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .sm\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .sm\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .sm\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .sm\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .sm\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .sm\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .sm\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .sm\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .sm\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .sm\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .sm\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .sm\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .sm\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .sm\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .sm\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .sm\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .sm\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .sm\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .sm\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .sm\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .sm\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .sm\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .sm\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .sm\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .sm\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .sm\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .sm\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .sm\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .sm\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .sm\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .sm\:focus\:via-transparent:focus { @@ -49784,6 +49112,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .sm\:to-transparent { + --tw-gradient-to: transparent; + } + + .sm\:to-current { + --tw-gradient-to: currentColor; + } + + .sm\:to-black { + --tw-gradient-to: #000; + } + + .sm\:to-white { + --tw-gradient-to: #fff; + } + + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .sm\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .sm\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .sm\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .sm\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .sm\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .sm\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .sm\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .sm\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .sm\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .sm\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .sm\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .sm\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .sm\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .sm\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .sm\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .sm\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .sm\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .sm\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .sm\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .sm\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .sm\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .sm\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .sm\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .sm\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .sm\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .sm\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .sm\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .sm\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .sm\:to-green-600 { + --tw-gradient-to: #059669; + } + + .sm\:to-green-700 { + --tw-gradient-to: #047857; + } + + .sm\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .sm\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .sm\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .sm\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .sm\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .sm\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .sm\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .sm\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .sm\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .sm\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .sm\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .sm\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .sm\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .sm\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .sm\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .sm\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .sm\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .sm\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .sm\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .sm\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .sm\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .sm\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .sm\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .sm\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .sm\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .sm\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .sm\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .sm\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .sm\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .sm\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .sm\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .sm\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .sm\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .sm\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .sm\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .sm\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .sm\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .sm\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .sm\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .sm\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .sm\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .sm\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .sm\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .sm\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .sm\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .sm\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .sm\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .sm\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .sm\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .sm\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .sm\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .sm\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .sm\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .sm\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .sm\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .sm\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .sm\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .sm\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .sm\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .sm\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .sm\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .sm\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .sm\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -55793,10 +55793,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:ring-inset { - --tw-ring-inset: inset; - } - .sm\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -55833,10 +55829,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .sm\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -55873,6 +55865,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .sm\:ring-inset { + --tw-ring-inset: inset; + } + + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .sm\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -58633,6 +58633,38 @@ video { backdrop-filter: none; } + .sm\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .sm\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .sm\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .sm\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .sm\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .sm\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .sm\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .sm\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .sm\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -59542,116 +59574,541 @@ video { left: -0.375rem; } - .md\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .md\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .md\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .md\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .md\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .md\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .md\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .md\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .md\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .md\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .md\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .md\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .md\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .md\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .md\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .md\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .md\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .md\:inset-x-0 { + left: 0px; + right: 0px; + } + + .md\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .md\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .md\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .md\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .md\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .md\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .md\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .md\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .md\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .md\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .md\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .md\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .md\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .md\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .md\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .md\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .md\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .md\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .md\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .md\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .md\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .md\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .md\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .md\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .md\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .md\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .md\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .md\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .md\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .md\:inset-x-auto { + left: auto; + right: auto; + } + + .md\:inset-x-px { + left: 1px; + right: 1px; + } + + .md\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .md\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .md\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .md\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .md\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .md\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .md\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .md\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .md\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .md\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .md\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .md\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .md\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .md\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .md\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .md\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .md\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .md\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .md\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .md\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .md\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .md\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .md\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .md\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .md\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .md\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .md\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .md\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .md\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .md\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .md\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .md\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .md\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .md\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .md\:-inset-x-px { + left: -1px; + right: -1px; + } + + .md\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .md\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .md\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .md\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .md\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .md\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .md\:inset-x-1\/2 { left: 50%; + right: 50%; } - .md\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .md\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .md\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .md\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .md\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .md\:inset-x-1\/4 { left: 25%; + right: 25%; } - .md\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .md\:inset-x-2\/4 { left: 50%; + right: 50%; } - .md\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .md\:inset-x-3\/4 { left: 75%; + right: 75%; } - .md\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .md\:inset-x-full { left: 100%; + right: 100%; } - .md\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .md\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .md\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .md\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .md\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .md\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .md\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .md\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .md\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .md\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .md\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .md\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .md\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .md\:-inset-x-full { left: -100%; + right: -100%; } .md\:inset-y-0 { @@ -59659,2205 +60116,1780 @@ video { bottom: 0px; } - .md\:inset-x-0 { - right: 0px; - left: 0px; - } - .md\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .md\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .md\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .md\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .md\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .md\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .md\:inset-y-4 { top: 1rem; bottom: 1rem; } - .md\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .md\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .md\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .md\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .md\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .md\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .md\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .md\:inset-y-8 { top: 2rem; bottom: 2rem; } - .md\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .md\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .md\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .md\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .md\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .md\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .md\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .md\:inset-y-12 { top: 3rem; bottom: 3rem; } - .md\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .md\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .md\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .md\:inset-y-16 { top: 4rem; bottom: 4rem; } - .md\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .md\:inset-y-20 { top: 5rem; bottom: 5rem; } - .md\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .md\:inset-y-24 { top: 6rem; bottom: 6rem; } - .md\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .md\:inset-y-28 { top: 7rem; bottom: 7rem; } - .md\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .md\:inset-y-32 { top: 8rem; bottom: 8rem; } - .md\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .md\:inset-y-36 { top: 9rem; bottom: 9rem; } - .md\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .md\:inset-y-40 { top: 10rem; bottom: 10rem; } - .md\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .md\:inset-y-44 { top: 11rem; bottom: 11rem; } - .md\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .md\:inset-y-48 { top: 12rem; bottom: 12rem; } - .md\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .md\:inset-y-52 { top: 13rem; bottom: 13rem; } - .md\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .md\:inset-y-56 { top: 14rem; bottom: 14rem; } - .md\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .md\:inset-y-60 { top: 15rem; bottom: 15rem; } - .md\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .md\:inset-y-64 { top: 16rem; bottom: 16rem; } - .md\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .md\:inset-y-72 { top: 18rem; bottom: 18rem; } - .md\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .md\:inset-y-80 { top: 20rem; bottom: 20rem; } - .md\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .md\:inset-y-96 { top: 24rem; bottom: 24rem; } - .md\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .md\:inset-y-auto { top: auto; bottom: auto; } - .md\:inset-x-auto { - right: auto; - left: auto; - } - .md\:inset-y-px { top: 1px; bottom: 1px; } - .md\:inset-x-px { - right: 1px; - left: 1px; - } - .md\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .md\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .md\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .md\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .md\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .md\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .md\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .md\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .md\:-inset-y-0 { top: 0px; bottom: 0px; } - .md\:-inset-x-0 { - right: 0px; - left: 0px; - } - .md\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .md\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .md\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .md\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .md\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .md\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .md\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .md\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .md\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .md\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .md\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .md\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .md\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .md\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .md\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .md\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .md\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .md\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .md\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .md\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .md\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .md\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .md\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .md\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .md\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .md\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .md\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .md\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .md\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .md\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .md\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .md\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .md\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .md\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .md\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .md\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .md\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .md\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .md\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .md\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .md\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .md\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .md\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .md\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .md\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .md\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .md\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .md\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .md\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .md\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .md\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .md\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .md\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .md\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .md\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .md\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .md\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .md\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .md\:-inset-y-px { top: -1px; bottom: -1px; } - .md\:-inset-x-px { - right: -1px; - left: -1px; - } - .md\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .md\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .md\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .md\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .md\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .md\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .md\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .md\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .md\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .md\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .md\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .md\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .md\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .md\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .md\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .md\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .md\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .md\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .md\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .md\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .md\:inset-y-full { top: 100%; bottom: 100%; } - .md\:inset-x-full { - right: 100%; - left: 100%; - } - .md\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .md\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .md\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .md\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .md\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .md\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .md\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .md\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .md\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .md\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .md\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .md\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .md\:-inset-y-full { top: -100%; bottom: -100%; } - .md\:-inset-x-full { - right: -100%; - left: -100%; - } - .md\:top-0 { top: 0px; } - .md\:right-0 { - right: 0px; + .md\:top-1 { + top: 0.25rem; } - .md\:bottom-0 { - bottom: 0px; + .md\:top-2 { + top: 0.5rem; } - .md\:left-0 { - left: 0px; + .md\:top-3 { + top: 0.75rem; } - .md\:top-1 { - top: 0.25rem; + .md\:top-4 { + top: 1rem; } - .md\:right-1 { - right: 0.25rem; + .md\:top-5 { + top: 1.25rem; } - .md\:bottom-1 { - bottom: 0.25rem; + .md\:top-6 { + top: 1.5rem; } - .md\:left-1 { - left: 0.25rem; + .md\:top-7 { + top: 1.75rem; } - .md\:top-2 { - top: 0.5rem; + .md\:top-8 { + top: 2rem; } - .md\:right-2 { - right: 0.5rem; + .md\:top-9 { + top: 2.25rem; } - .md\:bottom-2 { - bottom: 0.5rem; + .md\:top-10 { + top: 2.5rem; } - .md\:left-2 { - left: 0.5rem; + .md\:top-11 { + top: 2.75rem; } - .md\:top-3 { - top: 0.75rem; + .md\:top-12 { + top: 3rem; } - .md\:right-3 { - right: 0.75rem; + .md\:top-14 { + top: 3.5rem; } - .md\:bottom-3 { - bottom: 0.75rem; + .md\:top-16 { + top: 4rem; } - .md\:left-3 { - left: 0.75rem; + .md\:top-20 { + top: 5rem; } - .md\:top-4 { - top: 1rem; + .md\:top-24 { + top: 6rem; } - .md\:right-4 { - right: 1rem; + .md\:top-28 { + top: 7rem; } - .md\:bottom-4 { - bottom: 1rem; + .md\:top-32 { + top: 8rem; } - .md\:left-4 { - left: 1rem; + .md\:top-36 { + top: 9rem; } - .md\:top-5 { - top: 1.25rem; + .md\:top-40 { + top: 10rem; } - .md\:right-5 { - right: 1.25rem; + .md\:top-44 { + top: 11rem; } - .md\:bottom-5 { - bottom: 1.25rem; + .md\:top-48 { + top: 12rem; } - .md\:left-5 { - left: 1.25rem; + .md\:top-52 { + top: 13rem; } - .md\:top-6 { - top: 1.5rem; + .md\:top-56 { + top: 14rem; } - .md\:right-6 { - right: 1.5rem; + .md\:top-60 { + top: 15rem; } - .md\:bottom-6 { - bottom: 1.5rem; + .md\:top-64 { + top: 16rem; } - .md\:left-6 { - left: 1.5rem; + .md\:top-72 { + top: 18rem; } - .md\:top-7 { - top: 1.75rem; + .md\:top-80 { + top: 20rem; } - .md\:right-7 { - right: 1.75rem; + .md\:top-96 { + top: 24rem; } - .md\:bottom-7 { - bottom: 1.75rem; + .md\:top-auto { + top: auto; } - .md\:left-7 { - left: 1.75rem; + .md\:top-px { + top: 1px; } - .md\:top-8 { - top: 2rem; + .md\:top-0\.5 { + top: 0.125rem; } - .md\:right-8 { - right: 2rem; + .md\:top-1\.5 { + top: 0.375rem; } - .md\:bottom-8 { - bottom: 2rem; + .md\:top-2\.5 { + top: 0.625rem; } - .md\:left-8 { - left: 2rem; + .md\:top-3\.5 { + top: 0.875rem; } - .md\:top-9 { - top: 2.25rem; + .md\:-top-0 { + top: 0px; } - .md\:right-9 { - right: 2.25rem; + .md\:-top-1 { + top: -0.25rem; } - .md\:bottom-9 { - bottom: 2.25rem; + .md\:-top-2 { + top: -0.5rem; } - .md\:left-9 { - left: 2.25rem; + .md\:-top-3 { + top: -0.75rem; } - .md\:top-10 { - top: 2.5rem; + .md\:-top-4 { + top: -1rem; } - .md\:right-10 { - right: 2.5rem; + .md\:-top-5 { + top: -1.25rem; } - .md\:bottom-10 { - bottom: 2.5rem; + .md\:-top-6 { + top: -1.5rem; } - .md\:left-10 { - left: 2.5rem; + .md\:-top-7 { + top: -1.75rem; } - .md\:top-11 { - top: 2.75rem; + .md\:-top-8 { + top: -2rem; } - .md\:right-11 { - right: 2.75rem; + .md\:-top-9 { + top: -2.25rem; } - .md\:bottom-11 { - bottom: 2.75rem; + .md\:-top-10 { + top: -2.5rem; } - .md\:left-11 { - left: 2.75rem; + .md\:-top-11 { + top: -2.75rem; } - .md\:top-12 { - top: 3rem; + .md\:-top-12 { + top: -3rem; } - .md\:right-12 { - right: 3rem; + .md\:-top-14 { + top: -3.5rem; } - .md\:bottom-12 { - bottom: 3rem; + .md\:-top-16 { + top: -4rem; } - .md\:left-12 { - left: 3rem; + .md\:-top-20 { + top: -5rem; } - .md\:top-14 { - top: 3.5rem; + .md\:-top-24 { + top: -6rem; } - .md\:right-14 { - right: 3.5rem; + .md\:-top-28 { + top: -7rem; } - .md\:bottom-14 { - bottom: 3.5rem; + .md\:-top-32 { + top: -8rem; } - .md\:left-14 { - left: 3.5rem; + .md\:-top-36 { + top: -9rem; } - .md\:top-16 { - top: 4rem; + .md\:-top-40 { + top: -10rem; } - .md\:right-16 { - right: 4rem; + .md\:-top-44 { + top: -11rem; } - .md\:bottom-16 { - bottom: 4rem; + .md\:-top-48 { + top: -12rem; } - .md\:left-16 { - left: 4rem; + .md\:-top-52 { + top: -13rem; } - .md\:top-20 { - top: 5rem; + .md\:-top-56 { + top: -14rem; } - .md\:right-20 { - right: 5rem; + .md\:-top-60 { + top: -15rem; } - .md\:bottom-20 { - bottom: 5rem; + .md\:-top-64 { + top: -16rem; } - .md\:left-20 { - left: 5rem; + .md\:-top-72 { + top: -18rem; } - .md\:top-24 { - top: 6rem; + .md\:-top-80 { + top: -20rem; } - .md\:right-24 { - right: 6rem; + .md\:-top-96 { + top: -24rem; } - .md\:bottom-24 { - bottom: 6rem; + .md\:-top-px { + top: -1px; } - .md\:left-24 { - left: 6rem; + .md\:-top-0\.5 { + top: -0.125rem; } - .md\:top-28 { - top: 7rem; + .md\:-top-1\.5 { + top: -0.375rem; } - .md\:right-28 { - right: 7rem; + .md\:-top-2\.5 { + top: -0.625rem; } - .md\:bottom-28 { - bottom: 7rem; + .md\:-top-3\.5 { + top: -0.875rem; } - .md\:left-28 { - left: 7rem; + .md\:top-1\/2 { + top: 50%; } - .md\:top-32 { - top: 8rem; + .md\:top-1\/3 { + top: 33.333333%; } - .md\:right-32 { - right: 8rem; + .md\:top-2\/3 { + top: 66.666667%; } - .md\:bottom-32 { - bottom: 8rem; + .md\:top-1\/4 { + top: 25%; } - .md\:left-32 { - left: 8rem; + .md\:top-2\/4 { + top: 50%; } - .md\:top-36 { - top: 9rem; + .md\:top-3\/4 { + top: 75%; } - .md\:right-36 { - right: 9rem; + .md\:top-full { + top: 100%; } - .md\:bottom-36 { - bottom: 9rem; + .md\:-top-1\/2 { + top: -50%; } - .md\:left-36 { - left: 9rem; + .md\:-top-1\/3 { + top: -33.333333%; } - .md\:top-40 { - top: 10rem; + .md\:-top-2\/3 { + top: -66.666667%; } - .md\:right-40 { - right: 10rem; + .md\:-top-1\/4 { + top: -25%; } - .md\:bottom-40 { - bottom: 10rem; + .md\:-top-2\/4 { + top: -50%; } - .md\:left-40 { - left: 10rem; + .md\:-top-3\/4 { + top: -75%; } - .md\:top-44 { - top: 11rem; + .md\:-top-full { + top: -100%; } - .md\:right-44 { - right: 11rem; + .md\:right-0 { + right: 0px; } - .md\:bottom-44 { - bottom: 11rem; + .md\:right-1 { + right: 0.25rem; } - .md\:left-44 { - left: 11rem; + .md\:right-2 { + right: 0.5rem; } - .md\:top-48 { - top: 12rem; + .md\:right-3 { + right: 0.75rem; } - .md\:right-48 { - right: 12rem; + .md\:right-4 { + right: 1rem; } - .md\:bottom-48 { - bottom: 12rem; + .md\:right-5 { + right: 1.25rem; } - .md\:left-48 { - left: 12rem; + .md\:right-6 { + right: 1.5rem; } - .md\:top-52 { - top: 13rem; + .md\:right-7 { + right: 1.75rem; } - .md\:right-52 { - right: 13rem; + .md\:right-8 { + right: 2rem; } - .md\:bottom-52 { - bottom: 13rem; + .md\:right-9 { + right: 2.25rem; } - .md\:left-52 { - left: 13rem; + .md\:right-10 { + right: 2.5rem; } - .md\:top-56 { - top: 14rem; + .md\:right-11 { + right: 2.75rem; } - .md\:right-56 { - right: 14rem; + .md\:right-12 { + right: 3rem; } - .md\:bottom-56 { - bottom: 14rem; + .md\:right-14 { + right: 3.5rem; } - .md\:left-56 { - left: 14rem; + .md\:right-16 { + right: 4rem; } - .md\:top-60 { - top: 15rem; + .md\:right-20 { + right: 5rem; } - .md\:right-60 { - right: 15rem; + .md\:right-24 { + right: 6rem; } - .md\:bottom-60 { - bottom: 15rem; + .md\:right-28 { + right: 7rem; } - .md\:left-60 { - left: 15rem; + .md\:right-32 { + right: 8rem; } - .md\:top-64 { - top: 16rem; + .md\:right-36 { + right: 9rem; } - .md\:right-64 { - right: 16rem; + .md\:right-40 { + right: 10rem; } - .md\:bottom-64 { - bottom: 16rem; + .md\:right-44 { + right: 11rem; } - .md\:left-64 { - left: 16rem; + .md\:right-48 { + right: 12rem; } - .md\:top-72 { - top: 18rem; + .md\:right-52 { + right: 13rem; } - .md\:right-72 { - right: 18rem; + .md\:right-56 { + right: 14rem; } - .md\:bottom-72 { - bottom: 18rem; + .md\:right-60 { + right: 15rem; } - .md\:left-72 { - left: 18rem; + .md\:right-64 { + right: 16rem; } - .md\:top-80 { - top: 20rem; + .md\:right-72 { + right: 18rem; } .md\:right-80 { right: 20rem; } - .md\:bottom-80 { - bottom: 20rem; + .md\:right-96 { + right: 24rem; } - .md\:left-80 { - left: 20rem; + .md\:right-auto { + right: auto; } - .md\:top-96 { - top: 24rem; + .md\:right-px { + right: 1px; } - .md\:right-96 { - right: 24rem; + .md\:right-0\.5 { + right: 0.125rem; } - .md\:bottom-96 { - bottom: 24rem; + .md\:right-1\.5 { + right: 0.375rem; } - .md\:left-96 { - left: 24rem; + .md\:right-2\.5 { + right: 0.625rem; } - .md\:top-auto { - top: auto; + .md\:right-3\.5 { + right: 0.875rem; } - .md\:right-auto { - right: auto; + .md\:-right-0 { + right: 0px; } - .md\:bottom-auto { - bottom: auto; + .md\:-right-1 { + right: -0.25rem; } - .md\:left-auto { - left: auto; + .md\:-right-2 { + right: -0.5rem; } - .md\:top-px { - top: 1px; + .md\:-right-3 { + right: -0.75rem; } - .md\:right-px { - right: 1px; + .md\:-right-4 { + right: -1rem; } - .md\:bottom-px { - bottom: 1px; + .md\:-right-5 { + right: -1.25rem; } - .md\:left-px { - left: 1px; + .md\:-right-6 { + right: -1.5rem; } - .md\:top-0\.5 { - top: 0.125rem; + .md\:-right-7 { + right: -1.75rem; } - .md\:right-0\.5 { - right: 0.125rem; + .md\:-right-8 { + right: -2rem; } - .md\:bottom-0\.5 { - bottom: 0.125rem; + .md\:-right-9 { + right: -2.25rem; } - .md\:left-0\.5 { - left: 0.125rem; + .md\:-right-10 { + right: -2.5rem; } - .md\:top-1\.5 { - top: 0.375rem; + .md\:-right-11 { + right: -2.75rem; } - .md\:right-1\.5 { - right: 0.375rem; + .md\:-right-12 { + right: -3rem; } - .md\:bottom-1\.5 { - bottom: 0.375rem; + .md\:-right-14 { + right: -3.5rem; } - .md\:left-1\.5 { - left: 0.375rem; + .md\:-right-16 { + right: -4rem; } - .md\:top-2\.5 { - top: 0.625rem; + .md\:-right-20 { + right: -5rem; } - .md\:right-2\.5 { - right: 0.625rem; + .md\:-right-24 { + right: -6rem; } - .md\:bottom-2\.5 { - bottom: 0.625rem; + .md\:-right-28 { + right: -7rem; } - .md\:left-2\.5 { - left: 0.625rem; + .md\:-right-32 { + right: -8rem; } - .md\:top-3\.5 { - top: 0.875rem; + .md\:-right-36 { + right: -9rem; } - .md\:right-3\.5 { - right: 0.875rem; + .md\:-right-40 { + right: -10rem; } - .md\:bottom-3\.5 { - bottom: 0.875rem; + .md\:-right-44 { + right: -11rem; } - .md\:left-3\.5 { - left: 0.875rem; + .md\:-right-48 { + right: -12rem; } - .md\:-top-0 { - top: 0px; + .md\:-right-52 { + right: -13rem; } - .md\:-right-0 { - right: 0px; + .md\:-right-56 { + right: -14rem; } - .md\:-bottom-0 { - bottom: 0px; + .md\:-right-60 { + right: -15rem; } - .md\:-left-0 { - left: 0px; + .md\:-right-64 { + right: -16rem; } - .md\:-top-1 { - top: -0.25rem; + .md\:-right-72 { + right: -18rem; } - .md\:-right-1 { - right: -0.25rem; + .md\:-right-80 { + right: -20rem; } - .md\:-bottom-1 { - bottom: -0.25rem; + .md\:-right-96 { + right: -24rem; } - .md\:-left-1 { - left: -0.25rem; + .md\:-right-px { + right: -1px; } - .md\:-top-2 { - top: -0.5rem; + .md\:-right-0\.5 { + right: -0.125rem; } - .md\:-right-2 { - right: -0.5rem; + .md\:-right-1\.5 { + right: -0.375rem; } - .md\:-bottom-2 { - bottom: -0.5rem; + .md\:-right-2\.5 { + right: -0.625rem; } - .md\:-left-2 { - left: -0.5rem; + .md\:-right-3\.5 { + right: -0.875rem; } - .md\:-top-3 { - top: -0.75rem; + .md\:right-1\/2 { + right: 50%; } - .md\:-right-3 { - right: -0.75rem; + .md\:right-1\/3 { + right: 33.333333%; } - .md\:-bottom-3 { - bottom: -0.75rem; + .md\:right-2\/3 { + right: 66.666667%; } - .md\:-left-3 { - left: -0.75rem; + .md\:right-1\/4 { + right: 25%; } - .md\:-top-4 { - top: -1rem; + .md\:right-2\/4 { + right: 50%; } - .md\:-right-4 { - right: -1rem; + .md\:right-3\/4 { + right: 75%; } - .md\:-bottom-4 { - bottom: -1rem; + .md\:right-full { + right: 100%; } - .md\:-left-4 { - left: -1rem; + .md\:-right-1\/2 { + right: -50%; } - .md\:-top-5 { - top: -1.25rem; + .md\:-right-1\/3 { + right: -33.333333%; } - .md\:-right-5 { - right: -1.25rem; + .md\:-right-2\/3 { + right: -66.666667%; } - .md\:-bottom-5 { - bottom: -1.25rem; + .md\:-right-1\/4 { + right: -25%; } - .md\:-left-5 { - left: -1.25rem; + .md\:-right-2\/4 { + right: -50%; } - .md\:-top-6 { - top: -1.5rem; + .md\:-right-3\/4 { + right: -75%; } - .md\:-right-6 { - right: -1.5rem; + .md\:-right-full { + right: -100%; } - .md\:-bottom-6 { - bottom: -1.5rem; + .md\:bottom-0 { + bottom: 0px; } - .md\:-left-6 { - left: -1.5rem; + .md\:bottom-1 { + bottom: 0.25rem; } - .md\:-top-7 { - top: -1.75rem; + .md\:bottom-2 { + bottom: 0.5rem; } - .md\:-right-7 { - right: -1.75rem; + .md\:bottom-3 { + bottom: 0.75rem; } - .md\:-bottom-7 { - bottom: -1.75rem; + .md\:bottom-4 { + bottom: 1rem; } - .md\:-left-7 { - left: -1.75rem; + .md\:bottom-5 { + bottom: 1.25rem; } - .md\:-top-8 { - top: -2rem; + .md\:bottom-6 { + bottom: 1.5rem; } - .md\:-right-8 { - right: -2rem; + .md\:bottom-7 { + bottom: 1.75rem; } - .md\:-bottom-8 { - bottom: -2rem; + .md\:bottom-8 { + bottom: 2rem; } - .md\:-left-8 { - left: -2rem; + .md\:bottom-9 { + bottom: 2.25rem; } - .md\:-top-9 { - top: -2.25rem; + .md\:bottom-10 { + bottom: 2.5rem; } - .md\:-right-9 { - right: -2.25rem; + .md\:bottom-11 { + bottom: 2.75rem; } - .md\:-bottom-9 { - bottom: -2.25rem; + .md\:bottom-12 { + bottom: 3rem; } - .md\:-left-9 { - left: -2.25rem; + .md\:bottom-14 { + bottom: 3.5rem; } - .md\:-top-10 { - top: -2.5rem; + .md\:bottom-16 { + bottom: 4rem; } - .md\:-right-10 { - right: -2.5rem; + .md\:bottom-20 { + bottom: 5rem; } - .md\:-bottom-10 { - bottom: -2.5rem; + .md\:bottom-24 { + bottom: 6rem; } - .md\:-left-10 { - left: -2.5rem; + .md\:bottom-28 { + bottom: 7rem; } - .md\:-top-11 { - top: -2.75rem; + .md\:bottom-32 { + bottom: 8rem; } - .md\:-right-11 { - right: -2.75rem; + .md\:bottom-36 { + bottom: 9rem; } - .md\:-bottom-11 { - bottom: -2.75rem; + .md\:bottom-40 { + bottom: 10rem; } - .md\:-left-11 { - left: -2.75rem; + .md\:bottom-44 { + bottom: 11rem; } - .md\:-top-12 { - top: -3rem; + .md\:bottom-48 { + bottom: 12rem; } - .md\:-right-12 { - right: -3rem; + .md\:bottom-52 { + bottom: 13rem; } - .md\:-bottom-12 { - bottom: -3rem; + .md\:bottom-56 { + bottom: 14rem; } - .md\:-left-12 { - left: -3rem; + .md\:bottom-60 { + bottom: 15rem; } - .md\:-top-14 { - top: -3.5rem; + .md\:bottom-64 { + bottom: 16rem; } - .md\:-right-14 { - right: -3.5rem; + .md\:bottom-72 { + bottom: 18rem; } - .md\:-bottom-14 { - bottom: -3.5rem; + .md\:bottom-80 { + bottom: 20rem; } - .md\:-left-14 { - left: -3.5rem; + .md\:bottom-96 { + bottom: 24rem; } - .md\:-top-16 { - top: -4rem; + .md\:bottom-auto { + bottom: auto; } - .md\:-right-16 { - right: -4rem; + .md\:bottom-px { + bottom: 1px; } - .md\:-bottom-16 { - bottom: -4rem; + .md\:bottom-0\.5 { + bottom: 0.125rem; } - .md\:-left-16 { - left: -4rem; + .md\:bottom-1\.5 { + bottom: 0.375rem; } - .md\:-top-20 { - top: -5rem; + .md\:bottom-2\.5 { + bottom: 0.625rem; } - .md\:-right-20 { - right: -5rem; + .md\:bottom-3\.5 { + bottom: 0.875rem; } - .md\:-bottom-20 { - bottom: -5rem; + .md\:-bottom-0 { + bottom: 0px; } - .md\:-left-20 { - left: -5rem; + .md\:-bottom-1 { + bottom: -0.25rem; } - .md\:-top-24 { - top: -6rem; + .md\:-bottom-2 { + bottom: -0.5rem; } - .md\:-right-24 { - right: -6rem; + .md\:-bottom-3 { + bottom: -0.75rem; } - .md\:-bottom-24 { - bottom: -6rem; + .md\:-bottom-4 { + bottom: -1rem; } - .md\:-left-24 { - left: -6rem; + .md\:-bottom-5 { + bottom: -1.25rem; } - .md\:-top-28 { - top: -7rem; + .md\:-bottom-6 { + bottom: -1.5rem; } - .md\:-right-28 { - right: -7rem; + .md\:-bottom-7 { + bottom: -1.75rem; } - .md\:-bottom-28 { - bottom: -7rem; + .md\:-bottom-8 { + bottom: -2rem; } - .md\:-left-28 { - left: -7rem; + .md\:-bottom-9 { + bottom: -2.25rem; } - .md\:-top-32 { - top: -8rem; + .md\:-bottom-10 { + bottom: -2.5rem; } - .md\:-right-32 { - right: -8rem; + .md\:-bottom-11 { + bottom: -2.75rem; } - .md\:-bottom-32 { - bottom: -8rem; + .md\:-bottom-12 { + bottom: -3rem; } - .md\:-left-32 { - left: -8rem; + .md\:-bottom-14 { + bottom: -3.5rem; } - .md\:-top-36 { - top: -9rem; + .md\:-bottom-16 { + bottom: -4rem; } - .md\:-right-36 { - right: -9rem; + .md\:-bottom-20 { + bottom: -5rem; } - .md\:-bottom-36 { - bottom: -9rem; + .md\:-bottom-24 { + bottom: -6rem; } - .md\:-left-36 { - left: -9rem; + .md\:-bottom-28 { + bottom: -7rem; } - .md\:-top-40 { - top: -10rem; + .md\:-bottom-32 { + bottom: -8rem; } - .md\:-right-40 { - right: -10rem; + .md\:-bottom-36 { + bottom: -9rem; } .md\:-bottom-40 { bottom: -10rem; } - .md\:-left-40 { - left: -10rem; + .md\:-bottom-44 { + bottom: -11rem; } - .md\:-top-44 { - top: -11rem; + .md\:-bottom-48 { + bottom: -12rem; } - .md\:-right-44 { - right: -11rem; + .md\:-bottom-52 { + bottom: -13rem; } - .md\:-bottom-44 { - bottom: -11rem; + .md\:-bottom-56 { + bottom: -14rem; } - .md\:-left-44 { - left: -11rem; + .md\:-bottom-60 { + bottom: -15rem; } - .md\:-top-48 { - top: -12rem; + .md\:-bottom-64 { + bottom: -16rem; } - .md\:-right-48 { - right: -12rem; + .md\:-bottom-72 { + bottom: -18rem; } - .md\:-bottom-48 { - bottom: -12rem; + .md\:-bottom-80 { + bottom: -20rem; } - .md\:-left-48 { - left: -12rem; + .md\:-bottom-96 { + bottom: -24rem; } - .md\:-top-52 { - top: -13rem; + .md\:-bottom-px { + bottom: -1px; } - .md\:-right-52 { - right: -13rem; + .md\:-bottom-0\.5 { + bottom: -0.125rem; } - .md\:-bottom-52 { - bottom: -13rem; + .md\:-bottom-1\.5 { + bottom: -0.375rem; } - .md\:-left-52 { - left: -13rem; + .md\:-bottom-2\.5 { + bottom: -0.625rem; } - .md\:-top-56 { - top: -14rem; + .md\:-bottom-3\.5 { + bottom: -0.875rem; } - .md\:-right-56 { - right: -14rem; + .md\:bottom-1\/2 { + bottom: 50%; } - .md\:-bottom-56 { - bottom: -14rem; + .md\:bottom-1\/3 { + bottom: 33.333333%; } - .md\:-left-56 { - left: -14rem; + .md\:bottom-2\/3 { + bottom: 66.666667%; } - .md\:-top-60 { - top: -15rem; + .md\:bottom-1\/4 { + bottom: 25%; } - .md\:-right-60 { - right: -15rem; + .md\:bottom-2\/4 { + bottom: 50%; } - .md\:-bottom-60 { - bottom: -15rem; + .md\:bottom-3\/4 { + bottom: 75%; } - .md\:-left-60 { - left: -15rem; + .md\:bottom-full { + bottom: 100%; } - .md\:-top-64 { - top: -16rem; + .md\:-bottom-1\/2 { + bottom: -50%; } - .md\:-right-64 { - right: -16rem; + .md\:-bottom-1\/3 { + bottom: -33.333333%; } - .md\:-bottom-64 { - bottom: -16rem; + .md\:-bottom-2\/3 { + bottom: -66.666667%; } - .md\:-left-64 { - left: -16rem; + .md\:-bottom-1\/4 { + bottom: -25%; } - .md\:-top-72 { - top: -18rem; + .md\:-bottom-2\/4 { + bottom: -50%; } - .md\:-right-72 { - right: -18rem; + .md\:-bottom-3\/4 { + bottom: -75%; } - .md\:-bottom-72 { - bottom: -18rem; + .md\:-bottom-full { + bottom: -100%; } - .md\:-left-72 { - left: -18rem; + .md\:left-0 { + left: 0px; } - .md\:-top-80 { - top: -20rem; + .md\:left-1 { + left: 0.25rem; } - .md\:-right-80 { - right: -20rem; + .md\:left-2 { + left: 0.5rem; } - .md\:-bottom-80 { - bottom: -20rem; + .md\:left-3 { + left: 0.75rem; } - .md\:-left-80 { - left: -20rem; + .md\:left-4 { + left: 1rem; } - .md\:-top-96 { - top: -24rem; + .md\:left-5 { + left: 1.25rem; } - .md\:-right-96 { - right: -24rem; + .md\:left-6 { + left: 1.5rem; } - .md\:-bottom-96 { - bottom: -24rem; + .md\:left-7 { + left: 1.75rem; } - .md\:-left-96 { - left: -24rem; + .md\:left-8 { + left: 2rem; } - .md\:-top-px { - top: -1px; + .md\:left-9 { + left: 2.25rem; } - .md\:-right-px { - right: -1px; + .md\:left-10 { + left: 2.5rem; } - .md\:-bottom-px { - bottom: -1px; + .md\:left-11 { + left: 2.75rem; } - .md\:-left-px { - left: -1px; + .md\:left-12 { + left: 3rem; } - .md\:-top-0\.5 { - top: -0.125rem; + .md\:left-14 { + left: 3.5rem; } - .md\:-right-0\.5 { - right: -0.125rem; + .md\:left-16 { + left: 4rem; } - .md\:-bottom-0\.5 { - bottom: -0.125rem; + .md\:left-20 { + left: 5rem; } - .md\:-left-0\.5 { - left: -0.125rem; + .md\:left-24 { + left: 6rem; } - .md\:-top-1\.5 { - top: -0.375rem; + .md\:left-28 { + left: 7rem; } - .md\:-right-1\.5 { - right: -0.375rem; + .md\:left-32 { + left: 8rem; } - .md\:-bottom-1\.5 { - bottom: -0.375rem; + .md\:left-36 { + left: 9rem; } - .md\:-left-1\.5 { - left: -0.375rem; + .md\:left-40 { + left: 10rem; } - .md\:-top-2\.5 { - top: -0.625rem; + .md\:left-44 { + left: 11rem; } - .md\:-right-2\.5 { - right: -0.625rem; + .md\:left-48 { + left: 12rem; } - .md\:-bottom-2\.5 { - bottom: -0.625rem; + .md\:left-52 { + left: 13rem; } - .md\:-left-2\.5 { - left: -0.625rem; + .md\:left-56 { + left: 14rem; } - .md\:-top-3\.5 { - top: -0.875rem; + .md\:left-60 { + left: 15rem; } - .md\:-right-3\.5 { - right: -0.875rem; + .md\:left-64 { + left: 16rem; } - .md\:-bottom-3\.5 { - bottom: -0.875rem; + .md\:left-72 { + left: 18rem; } - .md\:-left-3\.5 { - left: -0.875rem; + .md\:left-80 { + left: 20rem; } - .md\:top-1\/2 { - top: 50%; + .md\:left-96 { + left: 24rem; } - .md\:right-1\/2 { - right: 50%; + .md\:left-auto { + left: auto; } - .md\:bottom-1\/2 { - bottom: 50%; + .md\:left-px { + left: 1px; } - .md\:left-1\/2 { - left: 50%; + .md\:left-0\.5 { + left: 0.125rem; } - .md\:top-1\/3 { - top: 33.333333%; + .md\:left-1\.5 { + left: 0.375rem; } - .md\:right-1\/3 { - right: 33.333333%; + .md\:left-2\.5 { + left: 0.625rem; } - .md\:bottom-1\/3 { - bottom: 33.333333%; + .md\:left-3\.5 { + left: 0.875rem; } - .md\:left-1\/3 { - left: 33.333333%; + .md\:-left-0 { + left: 0px; } - .md\:top-2\/3 { - top: 66.666667%; + .md\:-left-1 { + left: -0.25rem; } - .md\:right-2\/3 { - right: 66.666667%; + .md\:-left-2 { + left: -0.5rem; } - .md\:bottom-2\/3 { - bottom: 66.666667%; + .md\:-left-3 { + left: -0.75rem; } - .md\:left-2\/3 { - left: 66.666667%; + .md\:-left-4 { + left: -1rem; } - .md\:top-1\/4 { - top: 25%; + .md\:-left-5 { + left: -1.25rem; } - .md\:right-1\/4 { - right: 25%; + .md\:-left-6 { + left: -1.5rem; } - .md\:bottom-1\/4 { - bottom: 25%; + .md\:-left-7 { + left: -1.75rem; } - .md\:left-1\/4 { - left: 25%; + .md\:-left-8 { + left: -2rem; } - .md\:top-2\/4 { - top: 50%; + .md\:-left-9 { + left: -2.25rem; } - .md\:right-2\/4 { - right: 50%; + .md\:-left-10 { + left: -2.5rem; } - .md\:bottom-2\/4 { - bottom: 50%; + .md\:-left-11 { + left: -2.75rem; } - .md\:left-2\/4 { - left: 50%; + .md\:-left-12 { + left: -3rem; } - .md\:top-3\/4 { - top: 75%; + .md\:-left-14 { + left: -3.5rem; } - .md\:right-3\/4 { - right: 75%; + .md\:-left-16 { + left: -4rem; } - .md\:bottom-3\/4 { - bottom: 75%; + .md\:-left-20 { + left: -5rem; } - .md\:left-3\/4 { - left: 75%; + .md\:-left-24 { + left: -6rem; } - .md\:top-full { - top: 100%; + .md\:-left-28 { + left: -7rem; } - .md\:right-full { - right: 100%; + .md\:-left-32 { + left: -8rem; } - .md\:bottom-full { - bottom: 100%; + .md\:-left-36 { + left: -9rem; } - .md\:left-full { - left: 100%; + .md\:-left-40 { + left: -10rem; } - .md\:-top-1\/2 { - top: -50%; + .md\:-left-44 { + left: -11rem; } - .md\:-right-1\/2 { - right: -50%; + .md\:-left-48 { + left: -12rem; } - .md\:-bottom-1\/2 { - bottom: -50%; + .md\:-left-52 { + left: -13rem; } - .md\:-left-1\/2 { - left: -50%; + .md\:-left-56 { + left: -14rem; } - .md\:-top-1\/3 { - top: -33.333333%; + .md\:-left-60 { + left: -15rem; } - .md\:-right-1\/3 { - right: -33.333333%; + .md\:-left-64 { + left: -16rem; } - .md\:-bottom-1\/3 { - bottom: -33.333333%; + .md\:-left-72 { + left: -18rem; } - .md\:-left-1\/3 { - left: -33.333333%; + .md\:-left-80 { + left: -20rem; } - .md\:-top-2\/3 { - top: -66.666667%; + .md\:-left-96 { + left: -24rem; } - .md\:-right-2\/3 { - right: -66.666667%; + .md\:-left-px { + left: -1px; } - .md\:-bottom-2\/3 { - bottom: -66.666667%; + .md\:-left-0\.5 { + left: -0.125rem; } - .md\:-left-2\/3 { - left: -66.666667%; + .md\:-left-1\.5 { + left: -0.375rem; } - .md\:-top-1\/4 { - top: -25%; + .md\:-left-2\.5 { + left: -0.625rem; } - .md\:-right-1\/4 { - right: -25%; + .md\:-left-3\.5 { + left: -0.875rem; } - .md\:-bottom-1\/4 { - bottom: -25%; + .md\:left-1\/2 { + left: 50%; } - .md\:-left-1\/4 { - left: -25%; + .md\:left-1\/3 { + left: 33.333333%; } - .md\:-top-2\/4 { - top: -50%; + .md\:left-2\/3 { + left: 66.666667%; } - .md\:-right-2\/4 { - right: -50%; + .md\:left-1\/4 { + left: 25%; } - .md\:-bottom-2\/4 { - bottom: -50%; + .md\:left-2\/4 { + left: 50%; } - .md\:-left-2\/4 { - left: -50%; + .md\:left-3\/4 { + left: 75%; } - .md\:-top-3\/4 { - top: -75%; + .md\:left-full { + left: 100%; } - .md\:-right-3\/4 { - right: -75%; + .md\:-left-1\/2 { + left: -50%; } - .md\:-bottom-3\/4 { - bottom: -75%; + .md\:-left-1\/3 { + left: -33.333333%; } - .md\:-left-3\/4 { - left: -75%; + .md\:-left-2\/3 { + left: -66.666667%; } - .md\:-top-full { - top: -100%; + .md\:-left-1\/4 { + left: -25%; } - .md\:-right-full { - right: -100%; + .md\:-left-2\/4 { + left: -50%; } - .md\:-bottom-full { - bottom: -100%; + .md\:-left-3\/4 { + left: -75%; } .md\:-left-full { @@ -67914,133 +67946,183 @@ video { --tw-scale-y: 1.5; } - .md\:scale-x-0 { + .md\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:scale-x-50 { + .md\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:scale-x-75 { + .md\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:scale-x-90 { + .md\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:scale-x-95 { + .md\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:scale-x-100 { + .md\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:scale-x-105 { + .md\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:scale-x-110 { + .md\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:scale-x-125 { + .md\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:scale-x-150 { + .md\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:scale-y-0 { + .md\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .md\:scale-y-50 { + .md\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .md\:scale-y-75 { + .md\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .md\:scale-y-90 { + .md\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .md\:scale-y-95 { + .md\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .md\:scale-y-100 { + .md\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .md\:scale-y-105 { + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .md\:scale-y-110 { + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .md\:scale-y-125 { + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .md\:scale-y-150 { + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .md\:hover\:scale-0:hover { + .md\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .md\:hover\:scale-50:hover { + .md\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .md\:hover\:scale-75:hover { + .md\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .md\:hover\:scale-90:hover { + .md\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .md\:hover\:scale-95:hover { + .md\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .md\:hover\:scale-100:hover { + .md\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .md\:hover\:scale-105:hover { + .md\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .md\:hover\:scale-110:hover { + .md\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .md\:hover\:scale-125:hover { + .md\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .md\:hover\:scale-150:hover { + .md\:scale-x-150 { --tw-scale-x: 1.5; + } + + .md\:scale-y-0 { + --tw-scale-y: 0; + } + + .md\:scale-y-50 { + --tw-scale-y: .5; + } + + .md\:scale-y-75 { + --tw-scale-y: .75; + } + + .md\:scale-y-90 { + --tw-scale-y: .9; + } + + .md\:scale-y-95 { + --tw-scale-y: .95; + } + + .md\:scale-y-100 { + --tw-scale-y: 1; + } + + .md\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .md\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .md\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .md\:scale-y-150 { --tw-scale-y: 1.5; } @@ -68124,56 +68206,6 @@ video { --tw-scale-y: 1.5; } - .md\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .md\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .md\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .md\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .md\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .md\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .md\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .md\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .md\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .md\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .md\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -69066,436 +69098,640 @@ video { row-gap: 0.875rem; } - .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .md\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .md\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .md\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .md\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .md\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .md\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .md\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .md\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .md\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .md\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .md\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .md\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .md\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .md\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .md\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .md\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .md\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .md\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .md\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .md\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .md\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .md\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .md\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .md\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .md\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -69504,408 +69740,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -69914,66 +69946,66 @@ video { --tw-space-x-reverse: 1; } - .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .md\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -76387,2188 +76419,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .md\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .md\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .md\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .md\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .md\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .md\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .md\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .md\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .md\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .md\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .md\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .md\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .md\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .md\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .md\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .md\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .md\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .md\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .md\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .md\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .md\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .md\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .md\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .md\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .md\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .md\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .md\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .md\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .md\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .md\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .md\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .md\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .md\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .md\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .md\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .md\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .md\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .md\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .md\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .md\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .md\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .md\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .md\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .md\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .md\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .md\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .md\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .md\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .md\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .md\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .md\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .md\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .md\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .md\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .md\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .md\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .md\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .md\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .md\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .md\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .md\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .md\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .md\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .md\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .md\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .md\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .md\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .md\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .md\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .md\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .md\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .md\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .md\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .md\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .md\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .md\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .md\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .md\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .md\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .md\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .md\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .md\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .md\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .md\:to-transparent { - --tw-gradient-to: transparent; + .md\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:to-current { - --tw-gradient-to: currentColor; + .md\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:to-black { - --tw-gradient-to: #000; + .md\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:to-white { - --tw-gradient-to: #fff; + .md\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .md\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .md\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .md\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .md\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .md\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:to-gray-500 { - --tw-gradient-to: #6b7280; + .md\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:to-gray-600 { - --tw-gradient-to: #4b5563; + .md\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:to-gray-700 { - --tw-gradient-to: #374151; + .md\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:to-gray-800 { - --tw-gradient-to: #1f2937; + .md\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:to-gray-900 { - --tw-gradient-to: #111827; + .md\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:to-red-50 { - --tw-gradient-to: #fef2f2; + .md\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:to-red-100 { - --tw-gradient-to: #fee2e2; + .md\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:to-red-200 { - --tw-gradient-to: #fecaca; + .md\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:to-red-300 { - --tw-gradient-to: #fca5a5; + .md\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:to-red-400 { - --tw-gradient-to: #f87171; + .md\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:to-red-500 { - --tw-gradient-to: #ef4444; + .md\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:to-red-600 { - --tw-gradient-to: #dc2626; + .md\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:to-red-700 { - --tw-gradient-to: #b91c1c; + .md\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:to-red-800 { - --tw-gradient-to: #991b1b; + .md\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .md\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .md\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .md\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .md\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .md\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .md\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .md\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:to-yellow-600 { - --tw-gradient-to: #d97706; + .md\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:to-yellow-700 { - --tw-gradient-to: #b45309; + .md\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:to-yellow-800 { - --tw-gradient-to: #92400e; + .md\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:to-yellow-900 { - --tw-gradient-to: #78350f; + .md\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .md\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:to-green-100 { - --tw-gradient-to: #d1fae5; + .md\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .md\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .md\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:to-green-400 { - --tw-gradient-to: #34d399; + .md\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:to-green-500 { - --tw-gradient-to: #10b981; + .md\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:to-green-600 { - --tw-gradient-to: #059669; + .md\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:to-green-700 { - --tw-gradient-to: #047857; + .md\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:to-green-800 { - --tw-gradient-to: #065f46; + .md\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:to-green-900 { - --tw-gradient-to: #064e3b; + .md\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .md\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .md\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .md\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .md\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .md\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .md\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:to-blue-600 { - --tw-gradient-to: #2563eb; + .md\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .md\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:to-blue-800 { - --tw-gradient-to: #1e40af; + .md\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .md\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .md\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .md\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .md\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .md\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .md\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .md\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .md\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .md\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .md\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:to-indigo-900 { - --tw-gradient-to: #312e81; + .md\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .md\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .md\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .md\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .md\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .md\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .md\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .md\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .md\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .md\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .md\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .md\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .md\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .md\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .md\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:to-pink-400 { - --tw-gradient-to: #f472b6; + .md\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:to-pink-500 { - --tw-gradient-to: #ec4899; + .md\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:to-pink-600 { - --tw-gradient-to: #db2777; + .md\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:to-pink-700 { - --tw-gradient-to: #be185d; + .md\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:to-pink-800 { - --tw-gradient-to: #9d174d; + .md\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:to-pink-900 { - --tw-gradient-to: #831843; + .md\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:hover\:from-transparent:hover { + .md\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:from-current:hover { + .md\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:from-black:hover { + .md\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:from-white:hover { + .md\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:from-gray-50:hover { + .md\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:hover\:from-gray-100:hover { + .md\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:hover\:from-gray-200:hover { + .md\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:hover\:from-gray-300:hover { + .md\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:hover\:from-gray-400:hover { + .md\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:hover\:from-gray-500:hover { + .md\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:hover\:from-gray-600:hover { + .md\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:hover\:from-gray-700:hover { + .md\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:hover\:from-gray-800:hover { + .md\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:hover\:from-gray-900:hover { + .md\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:hover\:from-red-50:hover { + .md\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:hover\:from-red-100:hover { + .md\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:hover\:from-red-200:hover { + .md\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:hover\:from-red-300:hover { + .md\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:hover\:from-red-400:hover { + .md\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:hover\:from-red-500:hover { + .md\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:hover\:from-red-600:hover { + .md\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:hover\:from-red-700:hover { + .md\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:hover\:from-red-800:hover { + .md\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:hover\:from-red-900:hover { + .md\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:hover\:from-yellow-50:hover { + .md\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:hover\:from-yellow-100:hover { + .md\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:hover\:from-yellow-200:hover { + .md\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:hover\:from-yellow-300:hover { + .md\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:hover\:from-yellow-400:hover { + .md\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:hover\:from-yellow-500:hover { + .md\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:hover\:from-yellow-600:hover { + .md\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:hover\:from-yellow-700:hover { + .md\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:hover\:from-yellow-800:hover { + .md\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:hover\:from-yellow-900:hover { + .md\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:hover\:from-green-50:hover { + .md\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:hover\:from-green-100:hover { + .md\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:hover\:from-green-200:hover { + .md\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:hover\:from-green-300:hover { + .md\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:hover\:from-green-400:hover { + .md\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:hover\:from-green-500:hover { + .md\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:hover\:from-green-600:hover { + .md\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:hover\:from-green-700:hover { + .md\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:hover\:from-green-800:hover { + .md\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:hover\:from-green-900:hover { + .md\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:hover\:from-blue-50:hover { + .md\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:hover\:from-blue-100:hover { + .md\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:hover\:from-blue-200:hover { + .md\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:hover\:from-blue-300:hover { + .md\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:hover\:from-blue-400:hover { + .md\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:hover\:from-blue-500:hover { + .md\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:hover\:from-blue-600:hover { + .md\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:hover\:from-blue-700:hover { + .md\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:hover\:from-blue-800:hover { + .md\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:hover\:from-blue-900:hover { + .md\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:hover\:from-indigo-50:hover { + .md\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:hover\:from-indigo-100:hover { + .md\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:hover\:from-indigo-200:hover { + .md\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:hover\:from-indigo-300:hover { + .md\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:hover\:from-indigo-400:hover { + .md\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:hover\:from-indigo-500:hover { + .md\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:hover\:from-indigo-600:hover { + .md\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:hover\:from-indigo-700:hover { + .md\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:hover\:from-indigo-800:hover { + .md\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:hover\:from-indigo-900:hover { + .md\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:hover\:from-purple-50:hover { + .md\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:hover\:from-purple-100:hover { + .md\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:hover\:from-purple-200:hover { + .md\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:hover\:from-purple-300:hover { + .md\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:hover\:from-purple-400:hover { + .md\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:hover\:from-purple-500:hover { + .md\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:hover\:from-purple-600:hover { + .md\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:hover\:from-purple-700:hover { + .md\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:hover\:from-purple-800:hover { + .md\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:hover\:from-purple-900:hover { + .md\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:hover\:from-pink-50:hover { + .md\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:hover\:from-pink-100:hover { + .md\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:hover\:from-pink-200:hover { + .md\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:hover\:from-pink-300:hover { + .md\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:hover\:from-pink-400:hover { + .md\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:hover\:from-pink-500:hover { + .md\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:hover\:from-pink-600:hover { + .md\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:hover\:from-pink-700:hover { + .md\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:hover\:from-pink-800:hover { + .md\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:hover\:from-pink-900:hover { + .md\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:hover\:via-transparent:hover { + .md\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:via-current:hover { + .md\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:via-black:hover { + .md\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:via-white:hover { + .md\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:via-gray-50:hover { + .md\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:hover\:via-gray-100:hover { + .md\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:hover\:via-gray-200:hover { + .md\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:hover\:via-gray-300:hover { + .md\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:hover\:via-gray-400:hover { + .md\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:hover\:via-gray-500:hover { + .md\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:hover\:via-gray-600:hover { + .md\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:hover\:via-gray-700:hover { + .md\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:hover\:via-gray-800:hover { + .md\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:hover\:via-gray-900:hover { + .md\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:hover\:via-red-50:hover { + .md\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:hover\:via-red-100:hover { + .md\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:hover\:via-red-200:hover { + .md\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:hover\:via-red-300:hover { + .md\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:hover\:via-red-400:hover { + .md\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:hover\:via-red-500:hover { + .md\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:hover\:via-red-600:hover { + .md\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:hover\:via-red-700:hover { + .md\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:hover\:via-red-800:hover { + .md\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:hover\:via-red-900:hover { + .md\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:hover\:via-yellow-50:hover { + .md\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:hover\:via-yellow-100:hover { + .md\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:hover\:via-yellow-200:hover { + .md\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:hover\:via-yellow-300:hover { + .md\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:hover\:via-yellow-400:hover { + .md\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:hover\:via-yellow-500:hover { + .md\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:hover\:via-yellow-600:hover { + .md\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:hover\:via-yellow-700:hover { + .md\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:hover\:via-yellow-800:hover { + .md\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:hover\:via-yellow-900:hover { + .md\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:hover\:via-green-50:hover { + .md\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:hover\:via-green-100:hover { + .md\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:hover\:via-green-200:hover { + .md\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:hover\:via-green-300:hover { + .md\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:hover\:via-green-400:hover { + .md\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:hover\:via-green-500:hover { + .md\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:hover\:via-green-600:hover { + .md\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:hover\:via-green-700:hover { + .md\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:hover\:via-green-800:hover { + .md\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:hover\:via-green-900:hover { + .md\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:hover\:via-blue-50:hover { + .md\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:hover\:via-blue-100:hover { + .md\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:hover\:via-blue-200:hover { + .md\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:hover\:via-blue-300:hover { + .md\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:hover\:via-blue-400:hover { + .md\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:hover\:via-blue-500:hover { + .md\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:hover\:via-blue-600:hover { + .md\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:hover\:via-blue-700:hover { + .md\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:hover\:via-blue-800:hover { + .md\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:hover\:via-blue-900:hover { + .md\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:hover\:via-indigo-50:hover { + .md\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:hover\:via-indigo-100:hover { + .md\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:hover\:via-indigo-200:hover { + .md\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:hover\:via-indigo-300:hover { + .md\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:hover\:via-indigo-400:hover { + .md\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:hover\:via-indigo-500:hover { + .md\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:hover\:via-indigo-600:hover { + .md\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:hover\:via-indigo-700:hover { + .md\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:hover\:via-indigo-800:hover { + .md\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:hover\:via-indigo-900:hover { + .md\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:hover\:via-purple-50:hover { + .md\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:hover\:via-purple-100:hover { + .md\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:hover\:via-purple-200:hover { + .md\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:hover\:via-purple-300:hover { + .md\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:hover\:via-purple-400:hover { + .md\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:hover\:via-purple-500:hover { + .md\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:hover\:via-purple-600:hover { + .md\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:hover\:via-purple-700:hover { + .md\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:hover\:via-purple-800:hover { + .md\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:hover\:via-purple-900:hover { + .md\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:hover\:via-pink-50:hover { + .md\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:hover\:via-pink-100:hover { + .md\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:hover\:via-pink-200:hover { + .md\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:hover\:via-pink-300:hover { + .md\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:hover\:via-pink-400:hover { + .md\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:hover\:via-pink-500:hover { + .md\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:hover\:via-pink-600:hover { + .md\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:hover\:via-pink-700:hover { + .md\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:hover\:via-pink-800:hover { + .md\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:hover\:via-pink-900:hover { + .md\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .md\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .md\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .md\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .md\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .md\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .md\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .md\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .md\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .md\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .md\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .md\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .md\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .md\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .md\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .md\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .md\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .md\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .md\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .md\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .md\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .md\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .md\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .md\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .md\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .md\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .md\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .md\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .md\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .md\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .md\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .md\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .md\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .md\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .md\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .md\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .md\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .md\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .md\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .md\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .md\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .md\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .md\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .md\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .md\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .md\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .md\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .md\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .md\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .md\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .md\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .md\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .md\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .md\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .md\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .md\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .md\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .md\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .md\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .md\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .md\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .md\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .md\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .md\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .md\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .md\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .md\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .md\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .md\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .md\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .md\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .md\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .md\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .md\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .md\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .md\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .md\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .md\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .md\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .md\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .md\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .md\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .md\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .md\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .md\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .md\:focus\:via-transparent:focus { @@ -78907,6 +78267,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .md\:to-transparent { + --tw-gradient-to: transparent; + } + + .md\:to-current { + --tw-gradient-to: currentColor; + } + + .md\:to-black { + --tw-gradient-to: #000; + } + + .md\:to-white { + --tw-gradient-to: #fff; + } + + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .md\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .md\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .md\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .md\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .md\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .md\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .md\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .md\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .md\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .md\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .md\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .md\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .md\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .md\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .md\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .md\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .md\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .md\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .md\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .md\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .md\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .md\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .md\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .md\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .md\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .md\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .md\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .md\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .md\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .md\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .md\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .md\:to-green-600 { + --tw-gradient-to: #059669; + } + + .md\:to-green-700 { + --tw-gradient-to: #047857; + } + + .md\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .md\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .md\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .md\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .md\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .md\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .md\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .md\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .md\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .md\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .md\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .md\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .md\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .md\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .md\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .md\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .md\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .md\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .md\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .md\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .md\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .md\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .md\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .md\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .md\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .md\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .md\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .md\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .md\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .md\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .md\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .md\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .md\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .md\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .md\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .md\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .md\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .md\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .md\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .md\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .md\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .md\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .md\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .md\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .md\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .md\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .md\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .md\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .md\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .md\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .md\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .md\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .md\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .md\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .md\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .md\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .md\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .md\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .md\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .md\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .md\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .md\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .md\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .md\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -84916,10 +84948,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:ring-inset { - --tw-ring-inset: inset; - } - .md\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -84956,10 +84984,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .md\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -84996,6 +85020,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .md\:ring-inset { + --tw-ring-inset: inset; + } + + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .md\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -87756,6 +87788,38 @@ video { backdrop-filter: none; } + .md\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .md\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .md\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .md\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .md\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .md\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .md\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .md\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .md\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -88665,116 +88729,541 @@ video { left: -0.375rem; } - .lg\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .lg\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .lg\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .lg\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .lg\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .lg\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .lg\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .lg\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .lg\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .lg\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .lg\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .lg\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .lg\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .lg\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .lg\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .lg\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .lg\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .lg\:inset-x-0 { + left: 0px; + right: 0px; + } + + .lg\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .lg\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .lg\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .lg\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .lg\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .lg\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .lg\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .lg\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .lg\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .lg\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .lg\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .lg\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .lg\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .lg\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .lg\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .lg\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .lg\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .lg\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .lg\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .lg\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .lg\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .lg\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .lg\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .lg\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .lg\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .lg\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .lg\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .lg\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .lg\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .lg\:inset-x-auto { + left: auto; + right: auto; + } + + .lg\:inset-x-px { + left: 1px; + right: 1px; + } + + .lg\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .lg\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .lg\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .lg\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .lg\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .lg\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .lg\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .lg\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .lg\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .lg\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .lg\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .lg\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .lg\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .lg\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .lg\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .lg\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .lg\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .lg\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .lg\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .lg\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .lg\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .lg\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .lg\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .lg\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .lg\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .lg\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .lg\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .lg\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .lg\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .lg\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .lg\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .lg\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .lg\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .lg\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .lg\:-inset-x-px { + left: -1px; + right: -1px; + } + + .lg\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .lg\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .lg\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .lg\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .lg\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .lg\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .lg\:inset-x-1\/2 { left: 50%; + right: 50%; } - .lg\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .lg\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .lg\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .lg\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .lg\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .lg\:inset-x-1\/4 { left: 25%; + right: 25%; } - .lg\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .lg\:inset-x-2\/4 { left: 50%; + right: 50%; } - .lg\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .lg\:inset-x-3\/4 { left: 75%; + right: 75%; } - .lg\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .lg\:inset-x-full { left: 100%; + right: 100%; } - .lg\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .lg\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .lg\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .lg\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .lg\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .lg\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .lg\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .lg\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .lg\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .lg\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .lg\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .lg\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .lg\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .lg\:-inset-x-full { left: -100%; + right: -100%; } .lg\:inset-y-0 { @@ -88782,2205 +89271,1780 @@ video { bottom: 0px; } - .lg\:inset-x-0 { - right: 0px; - left: 0px; - } - .lg\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .lg\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .lg\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .lg\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .lg\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .lg\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .lg\:inset-y-4 { top: 1rem; bottom: 1rem; } - .lg\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .lg\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .lg\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .lg\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .lg\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .lg\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .lg\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .lg\:inset-y-8 { top: 2rem; bottom: 2rem; } - .lg\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .lg\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .lg\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .lg\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .lg\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .lg\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .lg\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .lg\:inset-y-12 { top: 3rem; bottom: 3rem; } - .lg\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .lg\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .lg\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .lg\:inset-y-16 { top: 4rem; bottom: 4rem; } - .lg\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .lg\:inset-y-20 { top: 5rem; bottom: 5rem; } - .lg\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .lg\:inset-y-24 { top: 6rem; bottom: 6rem; } - .lg\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .lg\:inset-y-28 { top: 7rem; bottom: 7rem; } - .lg\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .lg\:inset-y-32 { top: 8rem; bottom: 8rem; } - .lg\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .lg\:inset-y-36 { top: 9rem; bottom: 9rem; } - .lg\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .lg\:inset-y-40 { top: 10rem; bottom: 10rem; } - .lg\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .lg\:inset-y-44 { top: 11rem; bottom: 11rem; } - .lg\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .lg\:inset-y-48 { top: 12rem; bottom: 12rem; } - .lg\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .lg\:inset-y-52 { top: 13rem; bottom: 13rem; } - .lg\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .lg\:inset-y-56 { top: 14rem; bottom: 14rem; } - .lg\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .lg\:inset-y-60 { top: 15rem; bottom: 15rem; } - .lg\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .lg\:inset-y-64 { top: 16rem; bottom: 16rem; } - .lg\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .lg\:inset-y-72 { top: 18rem; bottom: 18rem; } - .lg\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .lg\:inset-y-80 { top: 20rem; bottom: 20rem; } - .lg\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .lg\:inset-y-96 { top: 24rem; bottom: 24rem; } - .lg\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .lg\:inset-y-auto { top: auto; bottom: auto; } - .lg\:inset-x-auto { - right: auto; - left: auto; - } - .lg\:inset-y-px { top: 1px; bottom: 1px; } - .lg\:inset-x-px { - right: 1px; - left: 1px; - } - .lg\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .lg\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .lg\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .lg\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .lg\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .lg\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .lg\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .lg\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .lg\:-inset-y-0 { top: 0px; bottom: 0px; } - .lg\:-inset-x-0 { - right: 0px; - left: 0px; - } - .lg\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .lg\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .lg\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .lg\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .lg\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .lg\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .lg\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .lg\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .lg\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .lg\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .lg\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .lg\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .lg\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .lg\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .lg\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .lg\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .lg\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .lg\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .lg\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .lg\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .lg\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .lg\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .lg\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .lg\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .lg\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .lg\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .lg\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .lg\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .lg\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .lg\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .lg\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .lg\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .lg\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .lg\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .lg\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .lg\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .lg\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .lg\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .lg\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .lg\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .lg\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .lg\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .lg\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .lg\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .lg\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .lg\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .lg\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .lg\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .lg\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .lg\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .lg\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .lg\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .lg\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .lg\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .lg\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .lg\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .lg\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .lg\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .lg\:-inset-y-px { top: -1px; bottom: -1px; } - .lg\:-inset-x-px { - right: -1px; - left: -1px; - } - .lg\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .lg\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .lg\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .lg\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .lg\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .lg\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .lg\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .lg\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .lg\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .lg\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .lg\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .lg\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .lg\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .lg\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .lg\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .lg\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .lg\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .lg\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .lg\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .lg\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .lg\:inset-y-full { top: 100%; bottom: 100%; } - .lg\:inset-x-full { - right: 100%; - left: 100%; - } - .lg\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .lg\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .lg\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .lg\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .lg\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .lg\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .lg\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .lg\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .lg\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .lg\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .lg\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .lg\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .lg\:-inset-y-full { top: -100%; bottom: -100%; } - .lg\:-inset-x-full { - right: -100%; - left: -100%; - } - .lg\:top-0 { top: 0px; } - .lg\:right-0 { - right: 0px; + .lg\:top-1 { + top: 0.25rem; } - .lg\:bottom-0 { - bottom: 0px; + .lg\:top-2 { + top: 0.5rem; } - .lg\:left-0 { - left: 0px; + .lg\:top-3 { + top: 0.75rem; } - .lg\:top-1 { - top: 0.25rem; + .lg\:top-4 { + top: 1rem; } - .lg\:right-1 { - right: 0.25rem; + .lg\:top-5 { + top: 1.25rem; } - .lg\:bottom-1 { - bottom: 0.25rem; + .lg\:top-6 { + top: 1.5rem; } - .lg\:left-1 { - left: 0.25rem; + .lg\:top-7 { + top: 1.75rem; } - .lg\:top-2 { - top: 0.5rem; + .lg\:top-8 { + top: 2rem; } - .lg\:right-2 { - right: 0.5rem; + .lg\:top-9 { + top: 2.25rem; } - .lg\:bottom-2 { - bottom: 0.5rem; + .lg\:top-10 { + top: 2.5rem; } - .lg\:left-2 { - left: 0.5rem; + .lg\:top-11 { + top: 2.75rem; } - .lg\:top-3 { - top: 0.75rem; + .lg\:top-12 { + top: 3rem; } - .lg\:right-3 { - right: 0.75rem; + .lg\:top-14 { + top: 3.5rem; } - .lg\:bottom-3 { - bottom: 0.75rem; + .lg\:top-16 { + top: 4rem; } - .lg\:left-3 { - left: 0.75rem; + .lg\:top-20 { + top: 5rem; } - .lg\:top-4 { - top: 1rem; + .lg\:top-24 { + top: 6rem; } - .lg\:right-4 { - right: 1rem; + .lg\:top-28 { + top: 7rem; } - .lg\:bottom-4 { - bottom: 1rem; + .lg\:top-32 { + top: 8rem; } - .lg\:left-4 { - left: 1rem; + .lg\:top-36 { + top: 9rem; } - .lg\:top-5 { - top: 1.25rem; + .lg\:top-40 { + top: 10rem; } - .lg\:right-5 { - right: 1.25rem; + .lg\:top-44 { + top: 11rem; } - .lg\:bottom-5 { - bottom: 1.25rem; + .lg\:top-48 { + top: 12rem; } - .lg\:left-5 { - left: 1.25rem; + .lg\:top-52 { + top: 13rem; } - .lg\:top-6 { - top: 1.5rem; + .lg\:top-56 { + top: 14rem; } - .lg\:right-6 { - right: 1.5rem; + .lg\:top-60 { + top: 15rem; } - .lg\:bottom-6 { - bottom: 1.5rem; + .lg\:top-64 { + top: 16rem; } - .lg\:left-6 { - left: 1.5rem; + .lg\:top-72 { + top: 18rem; } - .lg\:top-7 { - top: 1.75rem; + .lg\:top-80 { + top: 20rem; } - .lg\:right-7 { - right: 1.75rem; + .lg\:top-96 { + top: 24rem; } - .lg\:bottom-7 { - bottom: 1.75rem; + .lg\:top-auto { + top: auto; } - .lg\:left-7 { - left: 1.75rem; + .lg\:top-px { + top: 1px; } - .lg\:top-8 { - top: 2rem; + .lg\:top-0\.5 { + top: 0.125rem; } - .lg\:right-8 { - right: 2rem; + .lg\:top-1\.5 { + top: 0.375rem; } - .lg\:bottom-8 { - bottom: 2rem; + .lg\:top-2\.5 { + top: 0.625rem; } - .lg\:left-8 { - left: 2rem; + .lg\:top-3\.5 { + top: 0.875rem; } - .lg\:top-9 { - top: 2.25rem; + .lg\:-top-0 { + top: 0px; } - .lg\:right-9 { - right: 2.25rem; + .lg\:-top-1 { + top: -0.25rem; } - .lg\:bottom-9 { - bottom: 2.25rem; + .lg\:-top-2 { + top: -0.5rem; } - .lg\:left-9 { - left: 2.25rem; + .lg\:-top-3 { + top: -0.75rem; } - .lg\:top-10 { - top: 2.5rem; + .lg\:-top-4 { + top: -1rem; } - .lg\:right-10 { - right: 2.5rem; + .lg\:-top-5 { + top: -1.25rem; } - .lg\:bottom-10 { - bottom: 2.5rem; + .lg\:-top-6 { + top: -1.5rem; } - .lg\:left-10 { - left: 2.5rem; + .lg\:-top-7 { + top: -1.75rem; } - .lg\:top-11 { - top: 2.75rem; + .lg\:-top-8 { + top: -2rem; } - .lg\:right-11 { - right: 2.75rem; + .lg\:-top-9 { + top: -2.25rem; } - .lg\:bottom-11 { - bottom: 2.75rem; + .lg\:-top-10 { + top: -2.5rem; } - .lg\:left-11 { - left: 2.75rem; + .lg\:-top-11 { + top: -2.75rem; } - .lg\:top-12 { - top: 3rem; + .lg\:-top-12 { + top: -3rem; } - .lg\:right-12 { - right: 3rem; + .lg\:-top-14 { + top: -3.5rem; } - .lg\:bottom-12 { - bottom: 3rem; + .lg\:-top-16 { + top: -4rem; } - .lg\:left-12 { - left: 3rem; + .lg\:-top-20 { + top: -5rem; } - .lg\:top-14 { - top: 3.5rem; + .lg\:-top-24 { + top: -6rem; } - .lg\:right-14 { - right: 3.5rem; + .lg\:-top-28 { + top: -7rem; } - .lg\:bottom-14 { - bottom: 3.5rem; + .lg\:-top-32 { + top: -8rem; } - .lg\:left-14 { - left: 3.5rem; + .lg\:-top-36 { + top: -9rem; } - .lg\:top-16 { - top: 4rem; + .lg\:-top-40 { + top: -10rem; } - .lg\:right-16 { - right: 4rem; + .lg\:-top-44 { + top: -11rem; } - .lg\:bottom-16 { - bottom: 4rem; + .lg\:-top-48 { + top: -12rem; } - .lg\:left-16 { - left: 4rem; + .lg\:-top-52 { + top: -13rem; } - .lg\:top-20 { - top: 5rem; + .lg\:-top-56 { + top: -14rem; } - .lg\:right-20 { - right: 5rem; + .lg\:-top-60 { + top: -15rem; } - .lg\:bottom-20 { - bottom: 5rem; + .lg\:-top-64 { + top: -16rem; } - .lg\:left-20 { - left: 5rem; + .lg\:-top-72 { + top: -18rem; } - .lg\:top-24 { - top: 6rem; + .lg\:-top-80 { + top: -20rem; } - .lg\:right-24 { - right: 6rem; + .lg\:-top-96 { + top: -24rem; } - .lg\:bottom-24 { - bottom: 6rem; + .lg\:-top-px { + top: -1px; } - .lg\:left-24 { - left: 6rem; + .lg\:-top-0\.5 { + top: -0.125rem; } - .lg\:top-28 { - top: 7rem; + .lg\:-top-1\.5 { + top: -0.375rem; } - .lg\:right-28 { - right: 7rem; + .lg\:-top-2\.5 { + top: -0.625rem; } - .lg\:bottom-28 { - bottom: 7rem; + .lg\:-top-3\.5 { + top: -0.875rem; } - .lg\:left-28 { - left: 7rem; + .lg\:top-1\/2 { + top: 50%; } - .lg\:top-32 { - top: 8rem; + .lg\:top-1\/3 { + top: 33.333333%; } - .lg\:right-32 { - right: 8rem; + .lg\:top-2\/3 { + top: 66.666667%; } - .lg\:bottom-32 { - bottom: 8rem; + .lg\:top-1\/4 { + top: 25%; } - .lg\:left-32 { - left: 8rem; + .lg\:top-2\/4 { + top: 50%; } - .lg\:top-36 { - top: 9rem; + .lg\:top-3\/4 { + top: 75%; } - .lg\:right-36 { - right: 9rem; + .lg\:top-full { + top: 100%; } - .lg\:bottom-36 { - bottom: 9rem; + .lg\:-top-1\/2 { + top: -50%; } - .lg\:left-36 { - left: 9rem; + .lg\:-top-1\/3 { + top: -33.333333%; } - .lg\:top-40 { - top: 10rem; + .lg\:-top-2\/3 { + top: -66.666667%; } - .lg\:right-40 { - right: 10rem; + .lg\:-top-1\/4 { + top: -25%; } - .lg\:bottom-40 { - bottom: 10rem; + .lg\:-top-2\/4 { + top: -50%; } - .lg\:left-40 { - left: 10rem; + .lg\:-top-3\/4 { + top: -75%; } - .lg\:top-44 { - top: 11rem; + .lg\:-top-full { + top: -100%; } - .lg\:right-44 { - right: 11rem; + .lg\:right-0 { + right: 0px; } - .lg\:bottom-44 { - bottom: 11rem; + .lg\:right-1 { + right: 0.25rem; } - .lg\:left-44 { - left: 11rem; + .lg\:right-2 { + right: 0.5rem; } - .lg\:top-48 { - top: 12rem; + .lg\:right-3 { + right: 0.75rem; } - .lg\:right-48 { - right: 12rem; + .lg\:right-4 { + right: 1rem; } - .lg\:bottom-48 { - bottom: 12rem; + .lg\:right-5 { + right: 1.25rem; } - .lg\:left-48 { - left: 12rem; + .lg\:right-6 { + right: 1.5rem; } - .lg\:top-52 { - top: 13rem; + .lg\:right-7 { + right: 1.75rem; } - .lg\:right-52 { - right: 13rem; + .lg\:right-8 { + right: 2rem; } - .lg\:bottom-52 { - bottom: 13rem; + .lg\:right-9 { + right: 2.25rem; } - .lg\:left-52 { - left: 13rem; + .lg\:right-10 { + right: 2.5rem; } - .lg\:top-56 { - top: 14rem; + .lg\:right-11 { + right: 2.75rem; } - .lg\:right-56 { - right: 14rem; + .lg\:right-12 { + right: 3rem; } - .lg\:bottom-56 { - bottom: 14rem; + .lg\:right-14 { + right: 3.5rem; } - .lg\:left-56 { - left: 14rem; + .lg\:right-16 { + right: 4rem; } - .lg\:top-60 { - top: 15rem; + .lg\:right-20 { + right: 5rem; } - .lg\:right-60 { - right: 15rem; + .lg\:right-24 { + right: 6rem; } - .lg\:bottom-60 { - bottom: 15rem; + .lg\:right-28 { + right: 7rem; } - .lg\:left-60 { - left: 15rem; + .lg\:right-32 { + right: 8rem; } - .lg\:top-64 { - top: 16rem; + .lg\:right-36 { + right: 9rem; } - .lg\:right-64 { - right: 16rem; + .lg\:right-40 { + right: 10rem; } - .lg\:bottom-64 { - bottom: 16rem; + .lg\:right-44 { + right: 11rem; } - .lg\:left-64 { - left: 16rem; + .lg\:right-48 { + right: 12rem; } - .lg\:top-72 { - top: 18rem; + .lg\:right-52 { + right: 13rem; } - .lg\:right-72 { - right: 18rem; + .lg\:right-56 { + right: 14rem; } - .lg\:bottom-72 { - bottom: 18rem; + .lg\:right-60 { + right: 15rem; } - .lg\:left-72 { - left: 18rem; + .lg\:right-64 { + right: 16rem; } - .lg\:top-80 { - top: 20rem; + .lg\:right-72 { + right: 18rem; } .lg\:right-80 { right: 20rem; } - .lg\:bottom-80 { - bottom: 20rem; + .lg\:right-96 { + right: 24rem; } - .lg\:left-80 { - left: 20rem; + .lg\:right-auto { + right: auto; } - .lg\:top-96 { - top: 24rem; + .lg\:right-px { + right: 1px; } - .lg\:right-96 { - right: 24rem; + .lg\:right-0\.5 { + right: 0.125rem; } - .lg\:bottom-96 { - bottom: 24rem; + .lg\:right-1\.5 { + right: 0.375rem; } - .lg\:left-96 { - left: 24rem; + .lg\:right-2\.5 { + right: 0.625rem; } - .lg\:top-auto { - top: auto; + .lg\:right-3\.5 { + right: 0.875rem; } - .lg\:right-auto { - right: auto; + .lg\:-right-0 { + right: 0px; } - .lg\:bottom-auto { - bottom: auto; + .lg\:-right-1 { + right: -0.25rem; } - .lg\:left-auto { - left: auto; + .lg\:-right-2 { + right: -0.5rem; } - .lg\:top-px { - top: 1px; + .lg\:-right-3 { + right: -0.75rem; } - .lg\:right-px { - right: 1px; + .lg\:-right-4 { + right: -1rem; } - .lg\:bottom-px { - bottom: 1px; + .lg\:-right-5 { + right: -1.25rem; } - .lg\:left-px { - left: 1px; + .lg\:-right-6 { + right: -1.5rem; } - .lg\:top-0\.5 { - top: 0.125rem; + .lg\:-right-7 { + right: -1.75rem; } - .lg\:right-0\.5 { - right: 0.125rem; + .lg\:-right-8 { + right: -2rem; } - .lg\:bottom-0\.5 { - bottom: 0.125rem; + .lg\:-right-9 { + right: -2.25rem; } - .lg\:left-0\.5 { - left: 0.125rem; + .lg\:-right-10 { + right: -2.5rem; } - .lg\:top-1\.5 { - top: 0.375rem; + .lg\:-right-11 { + right: -2.75rem; } - .lg\:right-1\.5 { - right: 0.375rem; + .lg\:-right-12 { + right: -3rem; } - .lg\:bottom-1\.5 { - bottom: 0.375rem; + .lg\:-right-14 { + right: -3.5rem; } - .lg\:left-1\.5 { - left: 0.375rem; + .lg\:-right-16 { + right: -4rem; } - .lg\:top-2\.5 { - top: 0.625rem; + .lg\:-right-20 { + right: -5rem; } - .lg\:right-2\.5 { - right: 0.625rem; + .lg\:-right-24 { + right: -6rem; } - .lg\:bottom-2\.5 { - bottom: 0.625rem; + .lg\:-right-28 { + right: -7rem; } - .lg\:left-2\.5 { - left: 0.625rem; + .lg\:-right-32 { + right: -8rem; } - .lg\:top-3\.5 { - top: 0.875rem; + .lg\:-right-36 { + right: -9rem; } - .lg\:right-3\.5 { - right: 0.875rem; + .lg\:-right-40 { + right: -10rem; } - .lg\:bottom-3\.5 { - bottom: 0.875rem; + .lg\:-right-44 { + right: -11rem; } - .lg\:left-3\.5 { - left: 0.875rem; + .lg\:-right-48 { + right: -12rem; } - .lg\:-top-0 { - top: 0px; + .lg\:-right-52 { + right: -13rem; } - .lg\:-right-0 { - right: 0px; + .lg\:-right-56 { + right: -14rem; } - .lg\:-bottom-0 { - bottom: 0px; + .lg\:-right-60 { + right: -15rem; } - .lg\:-left-0 { - left: 0px; + .lg\:-right-64 { + right: -16rem; } - .lg\:-top-1 { - top: -0.25rem; + .lg\:-right-72 { + right: -18rem; } - .lg\:-right-1 { - right: -0.25rem; + .lg\:-right-80 { + right: -20rem; } - .lg\:-bottom-1 { - bottom: -0.25rem; + .lg\:-right-96 { + right: -24rem; } - .lg\:-left-1 { - left: -0.25rem; + .lg\:-right-px { + right: -1px; } - .lg\:-top-2 { - top: -0.5rem; + .lg\:-right-0\.5 { + right: -0.125rem; } - .lg\:-right-2 { - right: -0.5rem; + .lg\:-right-1\.5 { + right: -0.375rem; } - .lg\:-bottom-2 { - bottom: -0.5rem; + .lg\:-right-2\.5 { + right: -0.625rem; } - .lg\:-left-2 { - left: -0.5rem; + .lg\:-right-3\.5 { + right: -0.875rem; } - .lg\:-top-3 { - top: -0.75rem; + .lg\:right-1\/2 { + right: 50%; } - .lg\:-right-3 { - right: -0.75rem; + .lg\:right-1\/3 { + right: 33.333333%; } - .lg\:-bottom-3 { - bottom: -0.75rem; + .lg\:right-2\/3 { + right: 66.666667%; } - .lg\:-left-3 { - left: -0.75rem; + .lg\:right-1\/4 { + right: 25%; } - .lg\:-top-4 { - top: -1rem; + .lg\:right-2\/4 { + right: 50%; } - .lg\:-right-4 { - right: -1rem; + .lg\:right-3\/4 { + right: 75%; } - .lg\:-bottom-4 { - bottom: -1rem; + .lg\:right-full { + right: 100%; } - .lg\:-left-4 { - left: -1rem; + .lg\:-right-1\/2 { + right: -50%; } - .lg\:-top-5 { - top: -1.25rem; + .lg\:-right-1\/3 { + right: -33.333333%; } - .lg\:-right-5 { - right: -1.25rem; + .lg\:-right-2\/3 { + right: -66.666667%; } - .lg\:-bottom-5 { - bottom: -1.25rem; + .lg\:-right-1\/4 { + right: -25%; } - .lg\:-left-5 { - left: -1.25rem; + .lg\:-right-2\/4 { + right: -50%; } - .lg\:-top-6 { - top: -1.5rem; + .lg\:-right-3\/4 { + right: -75%; } - .lg\:-right-6 { - right: -1.5rem; + .lg\:-right-full { + right: -100%; } - .lg\:-bottom-6 { - bottom: -1.5rem; + .lg\:bottom-0 { + bottom: 0px; } - .lg\:-left-6 { - left: -1.5rem; + .lg\:bottom-1 { + bottom: 0.25rem; } - .lg\:-top-7 { - top: -1.75rem; + .lg\:bottom-2 { + bottom: 0.5rem; } - .lg\:-right-7 { - right: -1.75rem; + .lg\:bottom-3 { + bottom: 0.75rem; } - .lg\:-bottom-7 { - bottom: -1.75rem; + .lg\:bottom-4 { + bottom: 1rem; } - .lg\:-left-7 { - left: -1.75rem; + .lg\:bottom-5 { + bottom: 1.25rem; } - .lg\:-top-8 { - top: -2rem; + .lg\:bottom-6 { + bottom: 1.5rem; } - .lg\:-right-8 { - right: -2rem; + .lg\:bottom-7 { + bottom: 1.75rem; } - .lg\:-bottom-8 { - bottom: -2rem; + .lg\:bottom-8 { + bottom: 2rem; } - .lg\:-left-8 { - left: -2rem; + .lg\:bottom-9 { + bottom: 2.25rem; } - .lg\:-top-9 { - top: -2.25rem; + .lg\:bottom-10 { + bottom: 2.5rem; } - .lg\:-right-9 { - right: -2.25rem; + .lg\:bottom-11 { + bottom: 2.75rem; } - .lg\:-bottom-9 { - bottom: -2.25rem; + .lg\:bottom-12 { + bottom: 3rem; } - .lg\:-left-9 { - left: -2.25rem; + .lg\:bottom-14 { + bottom: 3.5rem; } - .lg\:-top-10 { - top: -2.5rem; + .lg\:bottom-16 { + bottom: 4rem; } - .lg\:-right-10 { - right: -2.5rem; + .lg\:bottom-20 { + bottom: 5rem; } - .lg\:-bottom-10 { - bottom: -2.5rem; + .lg\:bottom-24 { + bottom: 6rem; } - .lg\:-left-10 { - left: -2.5rem; + .lg\:bottom-28 { + bottom: 7rem; } - .lg\:-top-11 { - top: -2.75rem; + .lg\:bottom-32 { + bottom: 8rem; } - .lg\:-right-11 { - right: -2.75rem; + .lg\:bottom-36 { + bottom: 9rem; } - .lg\:-bottom-11 { - bottom: -2.75rem; + .lg\:bottom-40 { + bottom: 10rem; } - .lg\:-left-11 { - left: -2.75rem; + .lg\:bottom-44 { + bottom: 11rem; } - .lg\:-top-12 { - top: -3rem; + .lg\:bottom-48 { + bottom: 12rem; } - .lg\:-right-12 { - right: -3rem; + .lg\:bottom-52 { + bottom: 13rem; } - .lg\:-bottom-12 { - bottom: -3rem; + .lg\:bottom-56 { + bottom: 14rem; } - .lg\:-left-12 { - left: -3rem; + .lg\:bottom-60 { + bottom: 15rem; } - .lg\:-top-14 { - top: -3.5rem; + .lg\:bottom-64 { + bottom: 16rem; } - .lg\:-right-14 { - right: -3.5rem; + .lg\:bottom-72 { + bottom: 18rem; } - .lg\:-bottom-14 { - bottom: -3.5rem; + .lg\:bottom-80 { + bottom: 20rem; } - .lg\:-left-14 { - left: -3.5rem; + .lg\:bottom-96 { + bottom: 24rem; } - .lg\:-top-16 { - top: -4rem; + .lg\:bottom-auto { + bottom: auto; } - .lg\:-right-16 { - right: -4rem; + .lg\:bottom-px { + bottom: 1px; } - .lg\:-bottom-16 { - bottom: -4rem; + .lg\:bottom-0\.5 { + bottom: 0.125rem; } - .lg\:-left-16 { - left: -4rem; + .lg\:bottom-1\.5 { + bottom: 0.375rem; } - .lg\:-top-20 { - top: -5rem; + .lg\:bottom-2\.5 { + bottom: 0.625rem; } - .lg\:-right-20 { - right: -5rem; + .lg\:bottom-3\.5 { + bottom: 0.875rem; } - .lg\:-bottom-20 { - bottom: -5rem; + .lg\:-bottom-0 { + bottom: 0px; } - .lg\:-left-20 { - left: -5rem; + .lg\:-bottom-1 { + bottom: -0.25rem; } - .lg\:-top-24 { - top: -6rem; + .lg\:-bottom-2 { + bottom: -0.5rem; } - .lg\:-right-24 { - right: -6rem; + .lg\:-bottom-3 { + bottom: -0.75rem; } - .lg\:-bottom-24 { - bottom: -6rem; + .lg\:-bottom-4 { + bottom: -1rem; } - .lg\:-left-24 { - left: -6rem; + .lg\:-bottom-5 { + bottom: -1.25rem; } - .lg\:-top-28 { - top: -7rem; + .lg\:-bottom-6 { + bottom: -1.5rem; } - .lg\:-right-28 { - right: -7rem; + .lg\:-bottom-7 { + bottom: -1.75rem; } - .lg\:-bottom-28 { - bottom: -7rem; + .lg\:-bottom-8 { + bottom: -2rem; } - .lg\:-left-28 { - left: -7rem; + .lg\:-bottom-9 { + bottom: -2.25rem; } - .lg\:-top-32 { - top: -8rem; + .lg\:-bottom-10 { + bottom: -2.5rem; } - .lg\:-right-32 { - right: -8rem; + .lg\:-bottom-11 { + bottom: -2.75rem; } - .lg\:-bottom-32 { - bottom: -8rem; + .lg\:-bottom-12 { + bottom: -3rem; } - .lg\:-left-32 { - left: -8rem; + .lg\:-bottom-14 { + bottom: -3.5rem; } - .lg\:-top-36 { - top: -9rem; + .lg\:-bottom-16 { + bottom: -4rem; } - .lg\:-right-36 { - right: -9rem; + .lg\:-bottom-20 { + bottom: -5rem; } - .lg\:-bottom-36 { - bottom: -9rem; + .lg\:-bottom-24 { + bottom: -6rem; } - .lg\:-left-36 { - left: -9rem; + .lg\:-bottom-28 { + bottom: -7rem; } - .lg\:-top-40 { - top: -10rem; + .lg\:-bottom-32 { + bottom: -8rem; } - .lg\:-right-40 { - right: -10rem; + .lg\:-bottom-36 { + bottom: -9rem; } .lg\:-bottom-40 { bottom: -10rem; } - .lg\:-left-40 { - left: -10rem; + .lg\:-bottom-44 { + bottom: -11rem; } - .lg\:-top-44 { - top: -11rem; + .lg\:-bottom-48 { + bottom: -12rem; } - .lg\:-right-44 { - right: -11rem; + .lg\:-bottom-52 { + bottom: -13rem; } - .lg\:-bottom-44 { - bottom: -11rem; + .lg\:-bottom-56 { + bottom: -14rem; } - .lg\:-left-44 { - left: -11rem; + .lg\:-bottom-60 { + bottom: -15rem; } - .lg\:-top-48 { - top: -12rem; + .lg\:-bottom-64 { + bottom: -16rem; } - .lg\:-right-48 { - right: -12rem; + .lg\:-bottom-72 { + bottom: -18rem; } - .lg\:-bottom-48 { - bottom: -12rem; + .lg\:-bottom-80 { + bottom: -20rem; } - .lg\:-left-48 { - left: -12rem; + .lg\:-bottom-96 { + bottom: -24rem; } - .lg\:-top-52 { - top: -13rem; + .lg\:-bottom-px { + bottom: -1px; } - .lg\:-right-52 { - right: -13rem; + .lg\:-bottom-0\.5 { + bottom: -0.125rem; } - .lg\:-bottom-52 { - bottom: -13rem; + .lg\:-bottom-1\.5 { + bottom: -0.375rem; } - .lg\:-left-52 { - left: -13rem; + .lg\:-bottom-2\.5 { + bottom: -0.625rem; } - .lg\:-top-56 { - top: -14rem; + .lg\:-bottom-3\.5 { + bottom: -0.875rem; } - .lg\:-right-56 { - right: -14rem; + .lg\:bottom-1\/2 { + bottom: 50%; } - .lg\:-bottom-56 { - bottom: -14rem; + .lg\:bottom-1\/3 { + bottom: 33.333333%; } - .lg\:-left-56 { - left: -14rem; + .lg\:bottom-2\/3 { + bottom: 66.666667%; } - .lg\:-top-60 { - top: -15rem; + .lg\:bottom-1\/4 { + bottom: 25%; } - .lg\:-right-60 { - right: -15rem; + .lg\:bottom-2\/4 { + bottom: 50%; } - .lg\:-bottom-60 { - bottom: -15rem; + .lg\:bottom-3\/4 { + bottom: 75%; } - .lg\:-left-60 { - left: -15rem; + .lg\:bottom-full { + bottom: 100%; } - .lg\:-top-64 { - top: -16rem; + .lg\:-bottom-1\/2 { + bottom: -50%; } - .lg\:-right-64 { - right: -16rem; + .lg\:-bottom-1\/3 { + bottom: -33.333333%; } - .lg\:-bottom-64 { - bottom: -16rem; + .lg\:-bottom-2\/3 { + bottom: -66.666667%; } - .lg\:-left-64 { - left: -16rem; + .lg\:-bottom-1\/4 { + bottom: -25%; } - .lg\:-top-72 { - top: -18rem; + .lg\:-bottom-2\/4 { + bottom: -50%; } - .lg\:-right-72 { - right: -18rem; + .lg\:-bottom-3\/4 { + bottom: -75%; } - .lg\:-bottom-72 { - bottom: -18rem; + .lg\:-bottom-full { + bottom: -100%; } - .lg\:-left-72 { - left: -18rem; + .lg\:left-0 { + left: 0px; } - .lg\:-top-80 { - top: -20rem; + .lg\:left-1 { + left: 0.25rem; } - .lg\:-right-80 { - right: -20rem; + .lg\:left-2 { + left: 0.5rem; } - .lg\:-bottom-80 { - bottom: -20rem; + .lg\:left-3 { + left: 0.75rem; } - .lg\:-left-80 { - left: -20rem; + .lg\:left-4 { + left: 1rem; } - .lg\:-top-96 { - top: -24rem; + .lg\:left-5 { + left: 1.25rem; } - .lg\:-right-96 { - right: -24rem; + .lg\:left-6 { + left: 1.5rem; } - .lg\:-bottom-96 { - bottom: -24rem; + .lg\:left-7 { + left: 1.75rem; } - .lg\:-left-96 { - left: -24rem; + .lg\:left-8 { + left: 2rem; } - .lg\:-top-px { - top: -1px; + .lg\:left-9 { + left: 2.25rem; } - .lg\:-right-px { - right: -1px; + .lg\:left-10 { + left: 2.5rem; } - .lg\:-bottom-px { - bottom: -1px; + .lg\:left-11 { + left: 2.75rem; } - .lg\:-left-px { - left: -1px; + .lg\:left-12 { + left: 3rem; } - .lg\:-top-0\.5 { - top: -0.125rem; + .lg\:left-14 { + left: 3.5rem; } - .lg\:-right-0\.5 { - right: -0.125rem; + .lg\:left-16 { + left: 4rem; } - .lg\:-bottom-0\.5 { - bottom: -0.125rem; + .lg\:left-20 { + left: 5rem; } - .lg\:-left-0\.5 { - left: -0.125rem; + .lg\:left-24 { + left: 6rem; } - .lg\:-top-1\.5 { - top: -0.375rem; + .lg\:left-28 { + left: 7rem; } - .lg\:-right-1\.5 { - right: -0.375rem; + .lg\:left-32 { + left: 8rem; } - .lg\:-bottom-1\.5 { - bottom: -0.375rem; + .lg\:left-36 { + left: 9rem; } - .lg\:-left-1\.5 { - left: -0.375rem; + .lg\:left-40 { + left: 10rem; } - .lg\:-top-2\.5 { - top: -0.625rem; + .lg\:left-44 { + left: 11rem; } - .lg\:-right-2\.5 { - right: -0.625rem; + .lg\:left-48 { + left: 12rem; } - .lg\:-bottom-2\.5 { - bottom: -0.625rem; + .lg\:left-52 { + left: 13rem; } - .lg\:-left-2\.5 { - left: -0.625rem; + .lg\:left-56 { + left: 14rem; } - .lg\:-top-3\.5 { - top: -0.875rem; + .lg\:left-60 { + left: 15rem; } - .lg\:-right-3\.5 { - right: -0.875rem; + .lg\:left-64 { + left: 16rem; } - .lg\:-bottom-3\.5 { - bottom: -0.875rem; + .lg\:left-72 { + left: 18rem; } - .lg\:-left-3\.5 { - left: -0.875rem; + .lg\:left-80 { + left: 20rem; } - .lg\:top-1\/2 { - top: 50%; + .lg\:left-96 { + left: 24rem; } - .lg\:right-1\/2 { - right: 50%; + .lg\:left-auto { + left: auto; } - .lg\:bottom-1\/2 { - bottom: 50%; + .lg\:left-px { + left: 1px; } - .lg\:left-1\/2 { - left: 50%; + .lg\:left-0\.5 { + left: 0.125rem; } - .lg\:top-1\/3 { - top: 33.333333%; + .lg\:left-1\.5 { + left: 0.375rem; } - .lg\:right-1\/3 { - right: 33.333333%; + .lg\:left-2\.5 { + left: 0.625rem; } - .lg\:bottom-1\/3 { - bottom: 33.333333%; + .lg\:left-3\.5 { + left: 0.875rem; } - .lg\:left-1\/3 { - left: 33.333333%; + .lg\:-left-0 { + left: 0px; } - .lg\:top-2\/3 { - top: 66.666667%; + .lg\:-left-1 { + left: -0.25rem; } - .lg\:right-2\/3 { - right: 66.666667%; + .lg\:-left-2 { + left: -0.5rem; } - .lg\:bottom-2\/3 { - bottom: 66.666667%; + .lg\:-left-3 { + left: -0.75rem; } - .lg\:left-2\/3 { - left: 66.666667%; + .lg\:-left-4 { + left: -1rem; } - .lg\:top-1\/4 { - top: 25%; + .lg\:-left-5 { + left: -1.25rem; } - .lg\:right-1\/4 { - right: 25%; + .lg\:-left-6 { + left: -1.5rem; } - .lg\:bottom-1\/4 { - bottom: 25%; + .lg\:-left-7 { + left: -1.75rem; } - .lg\:left-1\/4 { - left: 25%; + .lg\:-left-8 { + left: -2rem; } - .lg\:top-2\/4 { - top: 50%; + .lg\:-left-9 { + left: -2.25rem; } - .lg\:right-2\/4 { - right: 50%; + .lg\:-left-10 { + left: -2.5rem; } - .lg\:bottom-2\/4 { - bottom: 50%; + .lg\:-left-11 { + left: -2.75rem; } - .lg\:left-2\/4 { - left: 50%; + .lg\:-left-12 { + left: -3rem; } - .lg\:top-3\/4 { - top: 75%; + .lg\:-left-14 { + left: -3.5rem; } - .lg\:right-3\/4 { - right: 75%; + .lg\:-left-16 { + left: -4rem; } - .lg\:bottom-3\/4 { - bottom: 75%; + .lg\:-left-20 { + left: -5rem; } - .lg\:left-3\/4 { - left: 75%; + .lg\:-left-24 { + left: -6rem; } - .lg\:top-full { - top: 100%; + .lg\:-left-28 { + left: -7rem; } - .lg\:right-full { - right: 100%; + .lg\:-left-32 { + left: -8rem; } - .lg\:bottom-full { - bottom: 100%; + .lg\:-left-36 { + left: -9rem; } - .lg\:left-full { - left: 100%; + .lg\:-left-40 { + left: -10rem; } - .lg\:-top-1\/2 { - top: -50%; + .lg\:-left-44 { + left: -11rem; } - .lg\:-right-1\/2 { - right: -50%; + .lg\:-left-48 { + left: -12rem; } - .lg\:-bottom-1\/2 { - bottom: -50%; + .lg\:-left-52 { + left: -13rem; } - .lg\:-left-1\/2 { - left: -50%; + .lg\:-left-56 { + left: -14rem; } - .lg\:-top-1\/3 { - top: -33.333333%; + .lg\:-left-60 { + left: -15rem; } - .lg\:-right-1\/3 { - right: -33.333333%; + .lg\:-left-64 { + left: -16rem; } - .lg\:-bottom-1\/3 { - bottom: -33.333333%; + .lg\:-left-72 { + left: -18rem; } - .lg\:-left-1\/3 { - left: -33.333333%; + .lg\:-left-80 { + left: -20rem; } - .lg\:-top-2\/3 { - top: -66.666667%; + .lg\:-left-96 { + left: -24rem; } - .lg\:-right-2\/3 { - right: -66.666667%; + .lg\:-left-px { + left: -1px; } - .lg\:-bottom-2\/3 { - bottom: -66.666667%; + .lg\:-left-0\.5 { + left: -0.125rem; } - .lg\:-left-2\/3 { - left: -66.666667%; + .lg\:-left-1\.5 { + left: -0.375rem; } - .lg\:-top-1\/4 { - top: -25%; + .lg\:-left-2\.5 { + left: -0.625rem; } - .lg\:-right-1\/4 { - right: -25%; + .lg\:-left-3\.5 { + left: -0.875rem; } - .lg\:-bottom-1\/4 { - bottom: -25%; + .lg\:left-1\/2 { + left: 50%; } - .lg\:-left-1\/4 { - left: -25%; + .lg\:left-1\/3 { + left: 33.333333%; } - .lg\:-top-2\/4 { - top: -50%; + .lg\:left-2\/3 { + left: 66.666667%; } - .lg\:-right-2\/4 { - right: -50%; + .lg\:left-1\/4 { + left: 25%; } - .lg\:-bottom-2\/4 { - bottom: -50%; + .lg\:left-2\/4 { + left: 50%; } - .lg\:-left-2\/4 { - left: -50%; + .lg\:left-3\/4 { + left: 75%; } - .lg\:-top-3\/4 { - top: -75%; + .lg\:left-full { + left: 100%; } - .lg\:-right-3\/4 { - right: -75%; + .lg\:-left-1\/2 { + left: -50%; } - .lg\:-bottom-3\/4 { - bottom: -75%; + .lg\:-left-1\/3 { + left: -33.333333%; } - .lg\:-left-3\/4 { - left: -75%; + .lg\:-left-2\/3 { + left: -66.666667%; } - .lg\:-top-full { - top: -100%; + .lg\:-left-1\/4 { + left: -25%; } - .lg\:-right-full { - right: -100%; + .lg\:-left-2\/4 { + left: -50%; } - .lg\:-bottom-full { - bottom: -100%; + .lg\:-left-3\/4 { + left: -75%; } .lg\:-left-full { @@ -97037,133 +97101,183 @@ video { --tw-scale-y: 1.5; } - .lg\:scale-x-0 { + .lg\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:scale-x-50 { + .lg\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:scale-x-75 { + .lg\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:scale-x-90 { + .lg\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:scale-x-95 { + .lg\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:scale-x-100 { + .lg\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:scale-x-105 { + .lg\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:scale-x-110 { + .lg\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:scale-x-125 { + .lg\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:scale-x-150 { + .lg\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:scale-y-0 { + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .lg\:scale-y-50 { + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .lg\:scale-y-75 { + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .lg\:scale-y-90 { + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .lg\:scale-y-95 { + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .lg\:scale-y-100 { + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .lg\:scale-y-105 { + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .lg\:scale-y-110 { + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .lg\:scale-y-125 { + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .lg\:scale-y-150 { + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .lg\:hover\:scale-0:hover { + .lg\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .lg\:hover\:scale-50:hover { + .lg\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .lg\:hover\:scale-75:hover { + .lg\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .lg\:hover\:scale-90:hover { + .lg\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .lg\:hover\:scale-95:hover { + .lg\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .lg\:hover\:scale-100:hover { + .lg\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .lg\:hover\:scale-105:hover { + .lg\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .lg\:hover\:scale-110:hover { + .lg\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .lg\:hover\:scale-125:hover { + .lg\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .lg\:hover\:scale-150:hover { + .lg\:scale-x-150 { --tw-scale-x: 1.5; + } + + .lg\:scale-y-0 { + --tw-scale-y: 0; + } + + .lg\:scale-y-50 { + --tw-scale-y: .5; + } + + .lg\:scale-y-75 { + --tw-scale-y: .75; + } + + .lg\:scale-y-90 { + --tw-scale-y: .9; + } + + .lg\:scale-y-95 { + --tw-scale-y: .95; + } + + .lg\:scale-y-100 { + --tw-scale-y: 1; + } + + .lg\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .lg\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .lg\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .lg\:scale-y-150 { --tw-scale-y: 1.5; } @@ -97247,56 +97361,6 @@ video { --tw-scale-y: 1.5; } - .lg\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .lg\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .lg\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .lg\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .lg\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .lg\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .lg\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .lg\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .lg\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .lg\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .lg\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -98189,436 +98253,640 @@ video { row-gap: 0.875rem; } - .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .lg\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .lg\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .lg\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -98627,408 +98895,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -99037,66 +99101,66 @@ video { --tw-space-x-reverse: 1; } - .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -105510,2188 +105574,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .lg\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .lg\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .lg\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .lg\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .lg\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .lg\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .lg\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .lg\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .lg\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .lg\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .lg\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .lg\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .lg\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .lg\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .lg\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .lg\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .lg\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .lg\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .lg\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .lg\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .lg\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .lg\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .lg\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .lg\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .lg\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .lg\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .lg\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .lg\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .lg\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .lg\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .lg\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .lg\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .lg\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .lg\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .lg\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .lg\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .lg\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .lg\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .lg\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .lg\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .lg\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .lg\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .lg\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .lg\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .lg\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .lg\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .lg\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .lg\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .lg\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .lg\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .lg\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .lg\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .lg\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .lg\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .lg\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .lg\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .lg\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .lg\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .lg\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .lg\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .lg\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .lg\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .lg\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .lg\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .lg\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .lg\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .lg\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .lg\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .lg\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .lg\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .lg\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .lg\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .lg\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .lg\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .lg\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .lg\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .lg\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .lg\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .lg\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .lg\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .lg\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .lg\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .lg\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .lg\:to-transparent { - --tw-gradient-to: transparent; + .lg\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:to-current { - --tw-gradient-to: currentColor; + .lg\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:to-black { - --tw-gradient-to: #000; + .lg\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:to-white { - --tw-gradient-to: #fff; + .lg\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .lg\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .lg\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .lg\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .lg\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .lg\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:to-gray-500 { - --tw-gradient-to: #6b7280; + .lg\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:to-gray-600 { - --tw-gradient-to: #4b5563; + .lg\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:to-gray-700 { - --tw-gradient-to: #374151; + .lg\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:to-gray-800 { - --tw-gradient-to: #1f2937; + .lg\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:to-gray-900 { - --tw-gradient-to: #111827; + .lg\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:to-red-50 { - --tw-gradient-to: #fef2f2; + .lg\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:to-red-100 { - --tw-gradient-to: #fee2e2; + .lg\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:to-red-200 { - --tw-gradient-to: #fecaca; + .lg\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:to-red-300 { - --tw-gradient-to: #fca5a5; + .lg\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:to-red-400 { - --tw-gradient-to: #f87171; + .lg\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:to-red-500 { - --tw-gradient-to: #ef4444; + .lg\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:to-red-600 { - --tw-gradient-to: #dc2626; + .lg\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:to-red-700 { - --tw-gradient-to: #b91c1c; + .lg\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:to-red-800 { - --tw-gradient-to: #991b1b; + .lg\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .lg\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .lg\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .lg\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .lg\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .lg\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .lg\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .lg\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:to-yellow-600 { - --tw-gradient-to: #d97706; + .lg\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:to-yellow-700 { - --tw-gradient-to: #b45309; + .lg\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:to-yellow-800 { - --tw-gradient-to: #92400e; + .lg\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:to-yellow-900 { - --tw-gradient-to: #78350f; + .lg\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .lg\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:to-green-100 { - --tw-gradient-to: #d1fae5; + .lg\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .lg\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .lg\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:to-green-400 { - --tw-gradient-to: #34d399; + .lg\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:to-green-500 { - --tw-gradient-to: #10b981; + .lg\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:to-green-600 { - --tw-gradient-to: #059669; + .lg\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:to-green-700 { - --tw-gradient-to: #047857; + .lg\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:to-green-800 { - --tw-gradient-to: #065f46; + .lg\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:to-green-900 { - --tw-gradient-to: #064e3b; + .lg\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .lg\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .lg\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .lg\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .lg\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .lg\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .lg\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:to-blue-600 { - --tw-gradient-to: #2563eb; + .lg\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .lg\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:to-blue-800 { - --tw-gradient-to: #1e40af; + .lg\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .lg\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .lg\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .lg\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .lg\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .lg\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .lg\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .lg\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .lg\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .lg\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .lg\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:to-indigo-900 { - --tw-gradient-to: #312e81; + .lg\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .lg\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .lg\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .lg\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .lg\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .lg\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .lg\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .lg\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .lg\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .lg\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .lg\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .lg\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .lg\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .lg\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .lg\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:to-pink-400 { - --tw-gradient-to: #f472b6; + .lg\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:to-pink-500 { - --tw-gradient-to: #ec4899; + .lg\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:to-pink-600 { - --tw-gradient-to: #db2777; + .lg\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:to-pink-700 { - --tw-gradient-to: #be185d; + .lg\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:to-pink-800 { - --tw-gradient-to: #9d174d; + .lg\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:to-pink-900 { - --tw-gradient-to: #831843; + .lg\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:hover\:from-transparent:hover { + .lg\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:from-current:hover { + .lg\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:from-black:hover { + .lg\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:from-white:hover { + .lg\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:from-gray-50:hover { + .lg\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:hover\:from-gray-100:hover { + .lg\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:hover\:from-gray-200:hover { + .lg\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:hover\:from-gray-300:hover { + .lg\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:hover\:from-gray-400:hover { + .lg\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:hover\:from-gray-500:hover { + .lg\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:hover\:from-gray-600:hover { + .lg\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:hover\:from-gray-700:hover { + .lg\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:hover\:from-gray-800:hover { + .lg\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:hover\:from-gray-900:hover { + .lg\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:hover\:from-red-50:hover { + .lg\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:hover\:from-red-100:hover { + .lg\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:hover\:from-red-200:hover { + .lg\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:hover\:from-red-300:hover { + .lg\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:hover\:from-red-400:hover { + .lg\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:hover\:from-red-500:hover { + .lg\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:hover\:from-red-600:hover { + .lg\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:hover\:from-red-700:hover { + .lg\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:hover\:from-red-800:hover { + .lg\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:hover\:from-red-900:hover { + .lg\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:hover\:from-yellow-50:hover { + .lg\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:hover\:from-yellow-100:hover { + .lg\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:hover\:from-yellow-200:hover { + .lg\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:hover\:from-yellow-300:hover { + .lg\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:hover\:from-yellow-400:hover { + .lg\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:hover\:from-yellow-500:hover { + .lg\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:hover\:from-yellow-600:hover { + .lg\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:hover\:from-yellow-700:hover { + .lg\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:hover\:from-yellow-800:hover { + .lg\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:hover\:from-yellow-900:hover { + .lg\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:hover\:from-green-50:hover { + .lg\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:hover\:from-green-100:hover { + .lg\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:hover\:from-green-200:hover { + .lg\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:hover\:from-green-300:hover { + .lg\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:hover\:from-green-400:hover { + .lg\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:hover\:from-green-500:hover { + .lg\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:hover\:from-green-600:hover { + .lg\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:hover\:from-green-700:hover { + .lg\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:hover\:from-green-800:hover { + .lg\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:hover\:from-green-900:hover { + .lg\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:hover\:from-blue-50:hover { + .lg\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:hover\:from-blue-100:hover { + .lg\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:hover\:from-blue-200:hover { + .lg\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:hover\:from-blue-300:hover { + .lg\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:hover\:from-blue-400:hover { + .lg\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:hover\:from-blue-500:hover { + .lg\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:hover\:from-blue-600:hover { + .lg\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:hover\:from-blue-700:hover { + .lg\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:hover\:from-blue-800:hover { + .lg\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:hover\:from-blue-900:hover { + .lg\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:hover\:from-indigo-50:hover { + .lg\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:hover\:from-indigo-100:hover { + .lg\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:hover\:from-indigo-200:hover { + .lg\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:hover\:from-indigo-300:hover { + .lg\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:hover\:from-indigo-400:hover { + .lg\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:hover\:from-indigo-500:hover { + .lg\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:hover\:from-indigo-600:hover { + .lg\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:hover\:from-indigo-700:hover { + .lg\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:hover\:from-indigo-800:hover { + .lg\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:hover\:from-indigo-900:hover { + .lg\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:hover\:from-purple-50:hover { + .lg\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:hover\:from-purple-100:hover { + .lg\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:hover\:from-purple-200:hover { + .lg\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:hover\:from-purple-300:hover { + .lg\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:hover\:from-purple-400:hover { + .lg\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:hover\:from-purple-500:hover { + .lg\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:hover\:from-purple-600:hover { + .lg\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:hover\:from-purple-700:hover { + .lg\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:hover\:from-purple-800:hover { + .lg\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:hover\:from-purple-900:hover { + .lg\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:hover\:from-pink-50:hover { + .lg\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:hover\:from-pink-100:hover { + .lg\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:hover\:from-pink-200:hover { + .lg\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:hover\:from-pink-300:hover { + .lg\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:hover\:from-pink-400:hover { + .lg\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:hover\:from-pink-500:hover { + .lg\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:hover\:from-pink-600:hover { + .lg\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:hover\:from-pink-700:hover { + .lg\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:hover\:from-pink-800:hover { + .lg\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:hover\:from-pink-900:hover { + .lg\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:hover\:via-transparent:hover { + .lg\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:via-current:hover { + .lg\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:via-black:hover { + .lg\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:via-white:hover { + .lg\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:via-gray-50:hover { + .lg\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:hover\:via-gray-100:hover { + .lg\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:hover\:via-gray-200:hover { + .lg\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:hover\:via-gray-300:hover { + .lg\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:hover\:via-gray-400:hover { + .lg\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:hover\:via-gray-500:hover { + .lg\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:hover\:via-gray-600:hover { + .lg\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:hover\:via-gray-700:hover { + .lg\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:hover\:via-gray-800:hover { + .lg\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:hover\:via-gray-900:hover { + .lg\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:hover\:via-red-50:hover { + .lg\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:hover\:via-red-100:hover { + .lg\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:hover\:via-red-200:hover { + .lg\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:hover\:via-red-300:hover { + .lg\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:hover\:via-red-400:hover { + .lg\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:hover\:via-red-500:hover { + .lg\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:hover\:via-red-600:hover { + .lg\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:hover\:via-red-700:hover { + .lg\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:hover\:via-red-800:hover { + .lg\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:hover\:via-red-900:hover { + .lg\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:hover\:via-yellow-50:hover { + .lg\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:hover\:via-yellow-100:hover { + .lg\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:hover\:via-yellow-200:hover { + .lg\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:hover\:via-yellow-300:hover { + .lg\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:hover\:via-yellow-400:hover { + .lg\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:hover\:via-yellow-500:hover { + .lg\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:hover\:via-yellow-600:hover { + .lg\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:hover\:via-yellow-700:hover { + .lg\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:hover\:via-yellow-800:hover { + .lg\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:hover\:via-yellow-900:hover { + .lg\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:hover\:via-green-50:hover { + .lg\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:hover\:via-green-100:hover { + .lg\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:hover\:via-green-200:hover { + .lg\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:hover\:via-green-300:hover { + .lg\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:hover\:via-green-400:hover { + .lg\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:hover\:via-green-500:hover { + .lg\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:hover\:via-green-600:hover { + .lg\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:hover\:via-green-700:hover { + .lg\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:hover\:via-green-800:hover { + .lg\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:hover\:via-green-900:hover { + .lg\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:hover\:via-blue-50:hover { + .lg\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:hover\:via-blue-100:hover { + .lg\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:hover\:via-blue-200:hover { + .lg\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:hover\:via-blue-300:hover { + .lg\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:hover\:via-blue-400:hover { + .lg\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:hover\:via-blue-500:hover { + .lg\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:hover\:via-blue-600:hover { + .lg\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:hover\:via-blue-700:hover { + .lg\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:hover\:via-blue-800:hover { + .lg\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:hover\:via-blue-900:hover { + .lg\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:hover\:via-indigo-50:hover { + .lg\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:hover\:via-indigo-100:hover { + .lg\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:hover\:via-indigo-200:hover { + .lg\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:hover\:via-indigo-300:hover { + .lg\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:hover\:via-indigo-400:hover { + .lg\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:hover\:via-indigo-500:hover { + .lg\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:hover\:via-indigo-600:hover { + .lg\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:hover\:via-indigo-700:hover { + .lg\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:hover\:via-indigo-800:hover { + .lg\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:hover\:via-indigo-900:hover { + .lg\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:hover\:via-purple-50:hover { + .lg\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:hover\:via-purple-100:hover { + .lg\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:hover\:via-purple-200:hover { + .lg\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:hover\:via-purple-300:hover { + .lg\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:hover\:via-purple-400:hover { + .lg\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:hover\:via-purple-500:hover { + .lg\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:hover\:via-purple-600:hover { + .lg\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:hover\:via-purple-700:hover { + .lg\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:hover\:via-purple-800:hover { + .lg\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:hover\:via-purple-900:hover { + .lg\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:hover\:via-pink-50:hover { + .lg\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:hover\:via-pink-100:hover { + .lg\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:hover\:via-pink-200:hover { + .lg\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:hover\:via-pink-300:hover { + .lg\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:hover\:via-pink-400:hover { + .lg\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:hover\:via-pink-500:hover { + .lg\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:hover\:via-pink-600:hover { + .lg\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:hover\:via-pink-700:hover { + .lg\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:hover\:via-pink-800:hover { + .lg\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:hover\:via-pink-900:hover { + .lg\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .lg\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .lg\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .lg\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .lg\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .lg\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .lg\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .lg\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .lg\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .lg\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .lg\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .lg\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .lg\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .lg\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .lg\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .lg\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .lg\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .lg\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .lg\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .lg\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .lg\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .lg\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .lg\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .lg\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .lg\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .lg\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .lg\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .lg\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .lg\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .lg\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .lg\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .lg\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .lg\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .lg\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .lg\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .lg\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .lg\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .lg\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .lg\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .lg\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .lg\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .lg\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .lg\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .lg\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .lg\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .lg\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .lg\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .lg\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .lg\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .lg\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .lg\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .lg\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .lg\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .lg\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .lg\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .lg\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .lg\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .lg\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .lg\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .lg\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .lg\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .lg\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .lg\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .lg\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .lg\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .lg\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .lg\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .lg\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .lg\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .lg\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .lg\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .lg\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .lg\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .lg\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .lg\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .lg\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .lg\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .lg\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .lg\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .lg\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .lg\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .lg\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .lg\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .lg\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .lg\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .lg\:focus\:via-transparent:focus { @@ -108030,6 +107422,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .lg\:to-transparent { + --tw-gradient-to: transparent; + } + + .lg\:to-current { + --tw-gradient-to: currentColor; + } + + .lg\:to-black { + --tw-gradient-to: #000; + } + + .lg\:to-white { + --tw-gradient-to: #fff; + } + + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .lg\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .lg\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .lg\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .lg\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .lg\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .lg\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .lg\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .lg\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .lg\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .lg\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .lg\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .lg\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .lg\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .lg\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .lg\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .lg\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .lg\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .lg\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .lg\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .lg\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .lg\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .lg\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .lg\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .lg\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .lg\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .lg\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .lg\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .lg\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .lg\:to-green-600 { + --tw-gradient-to: #059669; + } + + .lg\:to-green-700 { + --tw-gradient-to: #047857; + } + + .lg\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .lg\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .lg\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .lg\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .lg\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .lg\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .lg\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .lg\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .lg\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .lg\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .lg\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .lg\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .lg\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .lg\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .lg\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .lg\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .lg\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .lg\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .lg\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .lg\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .lg\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .lg\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .lg\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .lg\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .lg\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .lg\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .lg\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .lg\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .lg\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .lg\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .lg\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .lg\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .lg\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .lg\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .lg\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .lg\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .lg\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .lg\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .lg\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .lg\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .lg\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .lg\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .lg\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .lg\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .lg\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .lg\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .lg\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .lg\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .lg\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .lg\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .lg\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .lg\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .lg\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .lg\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .lg\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .lg\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .lg\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .lg\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .lg\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .lg\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .lg\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .lg\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .lg\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -114039,10 +114103,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:ring-inset { - --tw-ring-inset: inset; - } - .lg\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -114079,10 +114139,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .lg\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -114119,6 +114175,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .lg\:ring-inset { + --tw-ring-inset: inset; + } + + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .lg\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -116879,6 +116943,38 @@ video { backdrop-filter: none; } + .lg\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .lg\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .lg\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .lg\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .lg\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .lg\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .lg\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .lg\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .lg\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -117788,116 +117884,541 @@ video { left: -0.375rem; } - .xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .xl\:inset-x-0 { + left: 0px; + right: 0px; + } + + .xl\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .xl\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .xl\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .xl\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .xl\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .xl\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .xl\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .xl\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .xl\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .xl\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .xl\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .xl\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .xl\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .xl\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .xl\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .xl\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .xl\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .xl\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .xl\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .xl\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .xl\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .xl\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .xl\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .xl\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .xl\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .xl\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .xl\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .xl\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .xl\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .xl\:inset-x-auto { + left: auto; + right: auto; + } + + .xl\:inset-x-px { + left: 1px; + right: 1px; + } + + .xl\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .xl\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .xl\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .xl\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .xl\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .xl\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .xl\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .xl\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .xl\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .xl\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .xl\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .xl\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .xl\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .xl\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .xl\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .xl\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .xl\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .xl\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .xl\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .xl\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .xl\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .xl\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .xl\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .xl\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .xl\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .xl\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .xl\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .xl\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .xl\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .xl\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .xl\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .xl\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .xl\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .xl\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .xl\:-inset-x-px { + left: -1px; + right: -1px; + } + + .xl\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .xl\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .xl\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .xl\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .xl\:inset-x-1\/2 { left: 50%; + right: 50%; } - .xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .xl\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .xl\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .xl\:inset-x-1\/4 { left: 25%; + right: 25%; } - .xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .xl\:inset-x-2\/4 { left: 50%; + right: 50%; } - .xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .xl\:inset-x-3\/4 { left: 75%; + right: 75%; } - .xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .xl\:inset-x-full { left: 100%; + right: 100%; } - .xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .xl\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .xl\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .xl\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .xl\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .xl\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .xl\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .xl\:-inset-x-full { left: -100%; + right: -100%; } .xl\:inset-y-0 { @@ -117905,2205 +118426,1780 @@ video { bottom: 0px; } - .xl\:inset-x-0 { - right: 0px; - left: 0px; - } - .xl\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .xl\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .xl\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .xl\:inset-y-4 { top: 1rem; bottom: 1rem; } - .xl\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .xl\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .xl\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .xl\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .xl\:inset-y-8 { top: 2rem; bottom: 2rem; } - .xl\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .xl\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .xl\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .xl\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .xl\:inset-y-12 { top: 3rem; bottom: 3rem; } - .xl\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .xl\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .xl\:inset-y-16 { top: 4rem; bottom: 4rem; } - .xl\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .xl\:inset-y-20 { top: 5rem; bottom: 5rem; } - .xl\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .xl\:inset-y-24 { top: 6rem; bottom: 6rem; } - .xl\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .xl\:inset-y-28 { top: 7rem; bottom: 7rem; } - .xl\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .xl\:inset-y-32 { top: 8rem; bottom: 8rem; } - .xl\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .xl\:inset-y-36 { top: 9rem; bottom: 9rem; } - .xl\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .xl\:inset-y-40 { top: 10rem; bottom: 10rem; } - .xl\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .xl\:inset-y-44 { top: 11rem; bottom: 11rem; } - .xl\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .xl\:inset-y-48 { top: 12rem; bottom: 12rem; } - .xl\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .xl\:inset-y-52 { top: 13rem; bottom: 13rem; } - .xl\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .xl\:inset-y-56 { top: 14rem; bottom: 14rem; } - .xl\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .xl\:inset-y-60 { top: 15rem; bottom: 15rem; } - .xl\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .xl\:inset-y-64 { top: 16rem; bottom: 16rem; } - .xl\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .xl\:inset-y-72 { top: 18rem; bottom: 18rem; } - .xl\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .xl\:inset-y-80 { top: 20rem; bottom: 20rem; } - .xl\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .xl\:inset-y-96 { top: 24rem; bottom: 24rem; } - .xl\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .xl\:inset-y-auto { top: auto; bottom: auto; } - .xl\:inset-x-auto { - right: auto; - left: auto; - } - .xl\:inset-y-px { top: 1px; bottom: 1px; } - .xl\:inset-x-px { - right: 1px; - left: 1px; - } - .xl\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .xl\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .xl\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .xl\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .xl\:-inset-y-0 { top: 0px; bottom: 0px; } - .xl\:-inset-x-0 { - right: 0px; - left: 0px; - } - .xl\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .xl\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .xl\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .xl\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .xl\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .xl\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .xl\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .xl\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .xl\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .xl\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .xl\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .xl\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .xl\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .xl\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .xl\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .xl\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .xl\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .xl\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .xl\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .xl\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .xl\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .xl\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .xl\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .xl\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .xl\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .xl\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .xl\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .xl\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .xl\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .xl\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .xl\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .xl\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .xl\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .xl\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .xl\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .xl\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .xl\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .xl\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .xl\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .xl\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .xl\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .xl\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .xl\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .xl\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .xl\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .xl\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .xl\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .xl\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .xl\:-inset-y-px { top: -1px; bottom: -1px; } - .xl\:-inset-x-px { - right: -1px; - left: -1px; - } - .xl\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .xl\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .xl\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .xl\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .xl\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .xl\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .xl\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .xl\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .xl\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .xl\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .xl\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .xl\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .xl\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .xl\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .xl\:inset-y-full { top: 100%; bottom: 100%; } - .xl\:inset-x-full { - right: 100%; - left: 100%; - } - .xl\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .xl\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .xl\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .xl\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .xl\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .xl\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .xl\:-inset-y-full { top: -100%; bottom: -100%; } - .xl\:-inset-x-full { - right: -100%; - left: -100%; - } - .xl\:top-0 { top: 0px; } - .xl\:right-0 { - right: 0px; + .xl\:top-1 { + top: 0.25rem; } - .xl\:bottom-0 { - bottom: 0px; + .xl\:top-2 { + top: 0.5rem; } - .xl\:left-0 { - left: 0px; + .xl\:top-3 { + top: 0.75rem; } - .xl\:top-1 { - top: 0.25rem; + .xl\:top-4 { + top: 1rem; } - .xl\:right-1 { - right: 0.25rem; + .xl\:top-5 { + top: 1.25rem; } - .xl\:bottom-1 { - bottom: 0.25rem; + .xl\:top-6 { + top: 1.5rem; } - .xl\:left-1 { - left: 0.25rem; + .xl\:top-7 { + top: 1.75rem; } - .xl\:top-2 { - top: 0.5rem; + .xl\:top-8 { + top: 2rem; } - .xl\:right-2 { - right: 0.5rem; + .xl\:top-9 { + top: 2.25rem; } - .xl\:bottom-2 { - bottom: 0.5rem; + .xl\:top-10 { + top: 2.5rem; } - .xl\:left-2 { - left: 0.5rem; + .xl\:top-11 { + top: 2.75rem; } - .xl\:top-3 { - top: 0.75rem; + .xl\:top-12 { + top: 3rem; } - .xl\:right-3 { - right: 0.75rem; + .xl\:top-14 { + top: 3.5rem; } - .xl\:bottom-3 { - bottom: 0.75rem; + .xl\:top-16 { + top: 4rem; } - .xl\:left-3 { - left: 0.75rem; + .xl\:top-20 { + top: 5rem; } - .xl\:top-4 { - top: 1rem; + .xl\:top-24 { + top: 6rem; } - .xl\:right-4 { - right: 1rem; + .xl\:top-28 { + top: 7rem; } - .xl\:bottom-4 { - bottom: 1rem; + .xl\:top-32 { + top: 8rem; } - .xl\:left-4 { - left: 1rem; + .xl\:top-36 { + top: 9rem; } - .xl\:top-5 { - top: 1.25rem; + .xl\:top-40 { + top: 10rem; } - .xl\:right-5 { - right: 1.25rem; + .xl\:top-44 { + top: 11rem; } - .xl\:bottom-5 { - bottom: 1.25rem; + .xl\:top-48 { + top: 12rem; } - .xl\:left-5 { - left: 1.25rem; + .xl\:top-52 { + top: 13rem; } - .xl\:top-6 { - top: 1.5rem; + .xl\:top-56 { + top: 14rem; } - .xl\:right-6 { - right: 1.5rem; + .xl\:top-60 { + top: 15rem; } - .xl\:bottom-6 { - bottom: 1.5rem; + .xl\:top-64 { + top: 16rem; } - .xl\:left-6 { - left: 1.5rem; + .xl\:top-72 { + top: 18rem; } - .xl\:top-7 { - top: 1.75rem; + .xl\:top-80 { + top: 20rem; } - .xl\:right-7 { - right: 1.75rem; + .xl\:top-96 { + top: 24rem; } - .xl\:bottom-7 { - bottom: 1.75rem; + .xl\:top-auto { + top: auto; } - .xl\:left-7 { - left: 1.75rem; + .xl\:top-px { + top: 1px; } - .xl\:top-8 { - top: 2rem; + .xl\:top-0\.5 { + top: 0.125rem; } - .xl\:right-8 { - right: 2rem; + .xl\:top-1\.5 { + top: 0.375rem; } - .xl\:bottom-8 { - bottom: 2rem; + .xl\:top-2\.5 { + top: 0.625rem; } - .xl\:left-8 { - left: 2rem; + .xl\:top-3\.5 { + top: 0.875rem; } - .xl\:top-9 { - top: 2.25rem; + .xl\:-top-0 { + top: 0px; } - .xl\:right-9 { - right: 2.25rem; + .xl\:-top-1 { + top: -0.25rem; } - .xl\:bottom-9 { - bottom: 2.25rem; + .xl\:-top-2 { + top: -0.5rem; } - .xl\:left-9 { - left: 2.25rem; + .xl\:-top-3 { + top: -0.75rem; } - .xl\:top-10 { - top: 2.5rem; + .xl\:-top-4 { + top: -1rem; } - .xl\:right-10 { - right: 2.5rem; + .xl\:-top-5 { + top: -1.25rem; } - .xl\:bottom-10 { - bottom: 2.5rem; + .xl\:-top-6 { + top: -1.5rem; } - .xl\:left-10 { - left: 2.5rem; + .xl\:-top-7 { + top: -1.75rem; } - .xl\:top-11 { - top: 2.75rem; + .xl\:-top-8 { + top: -2rem; } - .xl\:right-11 { - right: 2.75rem; + .xl\:-top-9 { + top: -2.25rem; } - .xl\:bottom-11 { - bottom: 2.75rem; + .xl\:-top-10 { + top: -2.5rem; } - .xl\:left-11 { - left: 2.75rem; + .xl\:-top-11 { + top: -2.75rem; } - .xl\:top-12 { - top: 3rem; + .xl\:-top-12 { + top: -3rem; } - .xl\:right-12 { - right: 3rem; + .xl\:-top-14 { + top: -3.5rem; } - .xl\:bottom-12 { - bottom: 3rem; + .xl\:-top-16 { + top: -4rem; } - .xl\:left-12 { - left: 3rem; + .xl\:-top-20 { + top: -5rem; } - .xl\:top-14 { - top: 3.5rem; + .xl\:-top-24 { + top: -6rem; } - .xl\:right-14 { - right: 3.5rem; + .xl\:-top-28 { + top: -7rem; } - .xl\:bottom-14 { - bottom: 3.5rem; + .xl\:-top-32 { + top: -8rem; } - .xl\:left-14 { - left: 3.5rem; + .xl\:-top-36 { + top: -9rem; } - .xl\:top-16 { - top: 4rem; + .xl\:-top-40 { + top: -10rem; } - .xl\:right-16 { - right: 4rem; + .xl\:-top-44 { + top: -11rem; } - .xl\:bottom-16 { - bottom: 4rem; + .xl\:-top-48 { + top: -12rem; } - .xl\:left-16 { - left: 4rem; + .xl\:-top-52 { + top: -13rem; } - .xl\:top-20 { - top: 5rem; + .xl\:-top-56 { + top: -14rem; } - .xl\:right-20 { - right: 5rem; + .xl\:-top-60 { + top: -15rem; } - .xl\:bottom-20 { - bottom: 5rem; + .xl\:-top-64 { + top: -16rem; } - .xl\:left-20 { - left: 5rem; + .xl\:-top-72 { + top: -18rem; } - .xl\:top-24 { - top: 6rem; + .xl\:-top-80 { + top: -20rem; } - .xl\:right-24 { - right: 6rem; + .xl\:-top-96 { + top: -24rem; } - .xl\:bottom-24 { - bottom: 6rem; + .xl\:-top-px { + top: -1px; } - .xl\:left-24 { - left: 6rem; + .xl\:-top-0\.5 { + top: -0.125rem; } - .xl\:top-28 { - top: 7rem; + .xl\:-top-1\.5 { + top: -0.375rem; } - .xl\:right-28 { - right: 7rem; + .xl\:-top-2\.5 { + top: -0.625rem; } - .xl\:bottom-28 { - bottom: 7rem; + .xl\:-top-3\.5 { + top: -0.875rem; } - .xl\:left-28 { - left: 7rem; + .xl\:top-1\/2 { + top: 50%; } - .xl\:top-32 { - top: 8rem; + .xl\:top-1\/3 { + top: 33.333333%; } - .xl\:right-32 { - right: 8rem; + .xl\:top-2\/3 { + top: 66.666667%; } - .xl\:bottom-32 { - bottom: 8rem; + .xl\:top-1\/4 { + top: 25%; } - .xl\:left-32 { - left: 8rem; + .xl\:top-2\/4 { + top: 50%; } - .xl\:top-36 { - top: 9rem; + .xl\:top-3\/4 { + top: 75%; } - .xl\:right-36 { - right: 9rem; + .xl\:top-full { + top: 100%; } - .xl\:bottom-36 { - bottom: 9rem; + .xl\:-top-1\/2 { + top: -50%; } - .xl\:left-36 { - left: 9rem; + .xl\:-top-1\/3 { + top: -33.333333%; } - .xl\:top-40 { - top: 10rem; + .xl\:-top-2\/3 { + top: -66.666667%; } - .xl\:right-40 { - right: 10rem; + .xl\:-top-1\/4 { + top: -25%; } - .xl\:bottom-40 { - bottom: 10rem; + .xl\:-top-2\/4 { + top: -50%; } - .xl\:left-40 { - left: 10rem; + .xl\:-top-3\/4 { + top: -75%; } - .xl\:top-44 { - top: 11rem; + .xl\:-top-full { + top: -100%; } - .xl\:right-44 { - right: 11rem; + .xl\:right-0 { + right: 0px; } - .xl\:bottom-44 { - bottom: 11rem; + .xl\:right-1 { + right: 0.25rem; } - .xl\:left-44 { - left: 11rem; + .xl\:right-2 { + right: 0.5rem; } - .xl\:top-48 { - top: 12rem; + .xl\:right-3 { + right: 0.75rem; } - .xl\:right-48 { - right: 12rem; + .xl\:right-4 { + right: 1rem; } - .xl\:bottom-48 { - bottom: 12rem; + .xl\:right-5 { + right: 1.25rem; } - .xl\:left-48 { - left: 12rem; + .xl\:right-6 { + right: 1.5rem; } - .xl\:top-52 { - top: 13rem; + .xl\:right-7 { + right: 1.75rem; } - .xl\:right-52 { - right: 13rem; + .xl\:right-8 { + right: 2rem; } - .xl\:bottom-52 { - bottom: 13rem; + .xl\:right-9 { + right: 2.25rem; } - .xl\:left-52 { - left: 13rem; + .xl\:right-10 { + right: 2.5rem; } - .xl\:top-56 { - top: 14rem; + .xl\:right-11 { + right: 2.75rem; } - .xl\:right-56 { - right: 14rem; + .xl\:right-12 { + right: 3rem; } - .xl\:bottom-56 { - bottom: 14rem; + .xl\:right-14 { + right: 3.5rem; } - .xl\:left-56 { - left: 14rem; + .xl\:right-16 { + right: 4rem; } - .xl\:top-60 { - top: 15rem; + .xl\:right-20 { + right: 5rem; } - .xl\:right-60 { - right: 15rem; + .xl\:right-24 { + right: 6rem; } - .xl\:bottom-60 { - bottom: 15rem; + .xl\:right-28 { + right: 7rem; } - .xl\:left-60 { - left: 15rem; + .xl\:right-32 { + right: 8rem; } - .xl\:top-64 { - top: 16rem; + .xl\:right-36 { + right: 9rem; } - .xl\:right-64 { - right: 16rem; + .xl\:right-40 { + right: 10rem; } - .xl\:bottom-64 { - bottom: 16rem; + .xl\:right-44 { + right: 11rem; } - .xl\:left-64 { - left: 16rem; + .xl\:right-48 { + right: 12rem; } - .xl\:top-72 { - top: 18rem; + .xl\:right-52 { + right: 13rem; } - .xl\:right-72 { - right: 18rem; + .xl\:right-56 { + right: 14rem; } - .xl\:bottom-72 { - bottom: 18rem; + .xl\:right-60 { + right: 15rem; } - .xl\:left-72 { - left: 18rem; + .xl\:right-64 { + right: 16rem; } - .xl\:top-80 { - top: 20rem; + .xl\:right-72 { + right: 18rem; } .xl\:right-80 { right: 20rem; } - .xl\:bottom-80 { - bottom: 20rem; + .xl\:right-96 { + right: 24rem; } - .xl\:left-80 { - left: 20rem; + .xl\:right-auto { + right: auto; } - .xl\:top-96 { - top: 24rem; + .xl\:right-px { + right: 1px; } - .xl\:right-96 { - right: 24rem; + .xl\:right-0\.5 { + right: 0.125rem; } - .xl\:bottom-96 { - bottom: 24rem; + .xl\:right-1\.5 { + right: 0.375rem; } - .xl\:left-96 { - left: 24rem; + .xl\:right-2\.5 { + right: 0.625rem; } - .xl\:top-auto { - top: auto; + .xl\:right-3\.5 { + right: 0.875rem; } - .xl\:right-auto { - right: auto; + .xl\:-right-0 { + right: 0px; } - .xl\:bottom-auto { - bottom: auto; + .xl\:-right-1 { + right: -0.25rem; } - .xl\:left-auto { - left: auto; + .xl\:-right-2 { + right: -0.5rem; } - .xl\:top-px { - top: 1px; + .xl\:-right-3 { + right: -0.75rem; } - .xl\:right-px { - right: 1px; + .xl\:-right-4 { + right: -1rem; } - .xl\:bottom-px { - bottom: 1px; + .xl\:-right-5 { + right: -1.25rem; } - .xl\:left-px { - left: 1px; + .xl\:-right-6 { + right: -1.5rem; } - .xl\:top-0\.5 { - top: 0.125rem; + .xl\:-right-7 { + right: -1.75rem; } - .xl\:right-0\.5 { - right: 0.125rem; + .xl\:-right-8 { + right: -2rem; } - .xl\:bottom-0\.5 { - bottom: 0.125rem; + .xl\:-right-9 { + right: -2.25rem; } - .xl\:left-0\.5 { - left: 0.125rem; + .xl\:-right-10 { + right: -2.5rem; } - .xl\:top-1\.5 { - top: 0.375rem; + .xl\:-right-11 { + right: -2.75rem; } - .xl\:right-1\.5 { - right: 0.375rem; + .xl\:-right-12 { + right: -3rem; } - .xl\:bottom-1\.5 { - bottom: 0.375rem; + .xl\:-right-14 { + right: -3.5rem; } - .xl\:left-1\.5 { - left: 0.375rem; + .xl\:-right-16 { + right: -4rem; } - .xl\:top-2\.5 { - top: 0.625rem; + .xl\:-right-20 { + right: -5rem; } - .xl\:right-2\.5 { - right: 0.625rem; + .xl\:-right-24 { + right: -6rem; } - .xl\:bottom-2\.5 { - bottom: 0.625rem; + .xl\:-right-28 { + right: -7rem; } - .xl\:left-2\.5 { - left: 0.625rem; + .xl\:-right-32 { + right: -8rem; } - .xl\:top-3\.5 { - top: 0.875rem; + .xl\:-right-36 { + right: -9rem; } - .xl\:right-3\.5 { - right: 0.875rem; + .xl\:-right-40 { + right: -10rem; } - .xl\:bottom-3\.5 { - bottom: 0.875rem; + .xl\:-right-44 { + right: -11rem; } - .xl\:left-3\.5 { - left: 0.875rem; + .xl\:-right-48 { + right: -12rem; } - .xl\:-top-0 { - top: 0px; + .xl\:-right-52 { + right: -13rem; } - .xl\:-right-0 { - right: 0px; + .xl\:-right-56 { + right: -14rem; } - .xl\:-bottom-0 { - bottom: 0px; + .xl\:-right-60 { + right: -15rem; } - .xl\:-left-0 { - left: 0px; + .xl\:-right-64 { + right: -16rem; } - .xl\:-top-1 { - top: -0.25rem; + .xl\:-right-72 { + right: -18rem; } - .xl\:-right-1 { - right: -0.25rem; + .xl\:-right-80 { + right: -20rem; } - .xl\:-bottom-1 { - bottom: -0.25rem; + .xl\:-right-96 { + right: -24rem; } - .xl\:-left-1 { - left: -0.25rem; + .xl\:-right-px { + right: -1px; } - .xl\:-top-2 { - top: -0.5rem; + .xl\:-right-0\.5 { + right: -0.125rem; } - .xl\:-right-2 { - right: -0.5rem; + .xl\:-right-1\.5 { + right: -0.375rem; } - .xl\:-bottom-2 { - bottom: -0.5rem; + .xl\:-right-2\.5 { + right: -0.625rem; } - .xl\:-left-2 { - left: -0.5rem; + .xl\:-right-3\.5 { + right: -0.875rem; } - .xl\:-top-3 { - top: -0.75rem; + .xl\:right-1\/2 { + right: 50%; } - .xl\:-right-3 { - right: -0.75rem; + .xl\:right-1\/3 { + right: 33.333333%; } - .xl\:-bottom-3 { - bottom: -0.75rem; + .xl\:right-2\/3 { + right: 66.666667%; } - .xl\:-left-3 { - left: -0.75rem; + .xl\:right-1\/4 { + right: 25%; } - .xl\:-top-4 { - top: -1rem; + .xl\:right-2\/4 { + right: 50%; } - .xl\:-right-4 { - right: -1rem; + .xl\:right-3\/4 { + right: 75%; } - .xl\:-bottom-4 { - bottom: -1rem; + .xl\:right-full { + right: 100%; } - .xl\:-left-4 { - left: -1rem; + .xl\:-right-1\/2 { + right: -50%; } - .xl\:-top-5 { - top: -1.25rem; + .xl\:-right-1\/3 { + right: -33.333333%; } - .xl\:-right-5 { - right: -1.25rem; + .xl\:-right-2\/3 { + right: -66.666667%; } - .xl\:-bottom-5 { - bottom: -1.25rem; + .xl\:-right-1\/4 { + right: -25%; } - .xl\:-left-5 { - left: -1.25rem; + .xl\:-right-2\/4 { + right: -50%; } - .xl\:-top-6 { - top: -1.5rem; + .xl\:-right-3\/4 { + right: -75%; } - .xl\:-right-6 { - right: -1.5rem; + .xl\:-right-full { + right: -100%; } - .xl\:-bottom-6 { - bottom: -1.5rem; + .xl\:bottom-0 { + bottom: 0px; } - .xl\:-left-6 { - left: -1.5rem; + .xl\:bottom-1 { + bottom: 0.25rem; } - .xl\:-top-7 { - top: -1.75rem; + .xl\:bottom-2 { + bottom: 0.5rem; } - .xl\:-right-7 { - right: -1.75rem; + .xl\:bottom-3 { + bottom: 0.75rem; } - .xl\:-bottom-7 { - bottom: -1.75rem; + .xl\:bottom-4 { + bottom: 1rem; } - .xl\:-left-7 { - left: -1.75rem; + .xl\:bottom-5 { + bottom: 1.25rem; } - .xl\:-top-8 { - top: -2rem; + .xl\:bottom-6 { + bottom: 1.5rem; } - .xl\:-right-8 { - right: -2rem; + .xl\:bottom-7 { + bottom: 1.75rem; } - .xl\:-bottom-8 { - bottom: -2rem; + .xl\:bottom-8 { + bottom: 2rem; } - .xl\:-left-8 { - left: -2rem; + .xl\:bottom-9 { + bottom: 2.25rem; } - .xl\:-top-9 { - top: -2.25rem; + .xl\:bottom-10 { + bottom: 2.5rem; } - .xl\:-right-9 { - right: -2.25rem; + .xl\:bottom-11 { + bottom: 2.75rem; } - .xl\:-bottom-9 { - bottom: -2.25rem; + .xl\:bottom-12 { + bottom: 3rem; } - .xl\:-left-9 { - left: -2.25rem; + .xl\:bottom-14 { + bottom: 3.5rem; } - .xl\:-top-10 { - top: -2.5rem; + .xl\:bottom-16 { + bottom: 4rem; } - .xl\:-right-10 { - right: -2.5rem; + .xl\:bottom-20 { + bottom: 5rem; } - .xl\:-bottom-10 { - bottom: -2.5rem; + .xl\:bottom-24 { + bottom: 6rem; } - .xl\:-left-10 { - left: -2.5rem; + .xl\:bottom-28 { + bottom: 7rem; } - .xl\:-top-11 { - top: -2.75rem; + .xl\:bottom-32 { + bottom: 8rem; } - .xl\:-right-11 { - right: -2.75rem; + .xl\:bottom-36 { + bottom: 9rem; } - .xl\:-bottom-11 { - bottom: -2.75rem; + .xl\:bottom-40 { + bottom: 10rem; } - .xl\:-left-11 { - left: -2.75rem; + .xl\:bottom-44 { + bottom: 11rem; } - .xl\:-top-12 { - top: -3rem; + .xl\:bottom-48 { + bottom: 12rem; } - .xl\:-right-12 { - right: -3rem; + .xl\:bottom-52 { + bottom: 13rem; } - .xl\:-bottom-12 { - bottom: -3rem; + .xl\:bottom-56 { + bottom: 14rem; } - .xl\:-left-12 { - left: -3rem; + .xl\:bottom-60 { + bottom: 15rem; } - .xl\:-top-14 { - top: -3.5rem; + .xl\:bottom-64 { + bottom: 16rem; } - .xl\:-right-14 { - right: -3.5rem; + .xl\:bottom-72 { + bottom: 18rem; } - .xl\:-bottom-14 { - bottom: -3.5rem; + .xl\:bottom-80 { + bottom: 20rem; } - .xl\:-left-14 { - left: -3.5rem; + .xl\:bottom-96 { + bottom: 24rem; } - .xl\:-top-16 { - top: -4rem; + .xl\:bottom-auto { + bottom: auto; } - .xl\:-right-16 { - right: -4rem; + .xl\:bottom-px { + bottom: 1px; } - .xl\:-bottom-16 { - bottom: -4rem; + .xl\:bottom-0\.5 { + bottom: 0.125rem; } - .xl\:-left-16 { - left: -4rem; + .xl\:bottom-1\.5 { + bottom: 0.375rem; } - .xl\:-top-20 { - top: -5rem; + .xl\:bottom-2\.5 { + bottom: 0.625rem; } - .xl\:-right-20 { - right: -5rem; + .xl\:bottom-3\.5 { + bottom: 0.875rem; } - .xl\:-bottom-20 { - bottom: -5rem; + .xl\:-bottom-0 { + bottom: 0px; } - .xl\:-left-20 { - left: -5rem; + .xl\:-bottom-1 { + bottom: -0.25rem; } - .xl\:-top-24 { - top: -6rem; + .xl\:-bottom-2 { + bottom: -0.5rem; } - .xl\:-right-24 { - right: -6rem; + .xl\:-bottom-3 { + bottom: -0.75rem; } - .xl\:-bottom-24 { - bottom: -6rem; + .xl\:-bottom-4 { + bottom: -1rem; } - .xl\:-left-24 { - left: -6rem; + .xl\:-bottom-5 { + bottom: -1.25rem; } - .xl\:-top-28 { - top: -7rem; + .xl\:-bottom-6 { + bottom: -1.5rem; } - .xl\:-right-28 { - right: -7rem; + .xl\:-bottom-7 { + bottom: -1.75rem; } - .xl\:-bottom-28 { - bottom: -7rem; + .xl\:-bottom-8 { + bottom: -2rem; } - .xl\:-left-28 { - left: -7rem; + .xl\:-bottom-9 { + bottom: -2.25rem; } - .xl\:-top-32 { - top: -8rem; + .xl\:-bottom-10 { + bottom: -2.5rem; } - .xl\:-right-32 { - right: -8rem; + .xl\:-bottom-11 { + bottom: -2.75rem; } - .xl\:-bottom-32 { - bottom: -8rem; + .xl\:-bottom-12 { + bottom: -3rem; } - .xl\:-left-32 { - left: -8rem; + .xl\:-bottom-14 { + bottom: -3.5rem; } - .xl\:-top-36 { - top: -9rem; + .xl\:-bottom-16 { + bottom: -4rem; } - .xl\:-right-36 { - right: -9rem; + .xl\:-bottom-20 { + bottom: -5rem; } - .xl\:-bottom-36 { - bottom: -9rem; + .xl\:-bottom-24 { + bottom: -6rem; } - .xl\:-left-36 { - left: -9rem; + .xl\:-bottom-28 { + bottom: -7rem; } - .xl\:-top-40 { - top: -10rem; + .xl\:-bottom-32 { + bottom: -8rem; } - .xl\:-right-40 { - right: -10rem; + .xl\:-bottom-36 { + bottom: -9rem; } .xl\:-bottom-40 { bottom: -10rem; } - .xl\:-left-40 { - left: -10rem; + .xl\:-bottom-44 { + bottom: -11rem; } - .xl\:-top-44 { - top: -11rem; + .xl\:-bottom-48 { + bottom: -12rem; } - .xl\:-right-44 { - right: -11rem; + .xl\:-bottom-52 { + bottom: -13rem; } - .xl\:-bottom-44 { - bottom: -11rem; + .xl\:-bottom-56 { + bottom: -14rem; } - .xl\:-left-44 { - left: -11rem; + .xl\:-bottom-60 { + bottom: -15rem; } - .xl\:-top-48 { - top: -12rem; + .xl\:-bottom-64 { + bottom: -16rem; } - .xl\:-right-48 { - right: -12rem; + .xl\:-bottom-72 { + bottom: -18rem; } - .xl\:-bottom-48 { - bottom: -12rem; + .xl\:-bottom-80 { + bottom: -20rem; } - .xl\:-left-48 { - left: -12rem; + .xl\:-bottom-96 { + bottom: -24rem; } - .xl\:-top-52 { - top: -13rem; + .xl\:-bottom-px { + bottom: -1px; } - .xl\:-right-52 { - right: -13rem; + .xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .xl\:-bottom-52 { - bottom: -13rem; + .xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .xl\:-left-52 { - left: -13rem; + .xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .xl\:-top-56 { - top: -14rem; + .xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .xl\:-right-56 { - right: -14rem; + .xl\:bottom-1\/2 { + bottom: 50%; } - .xl\:-bottom-56 { - bottom: -14rem; + .xl\:bottom-1\/3 { + bottom: 33.333333%; } - .xl\:-left-56 { - left: -14rem; + .xl\:bottom-2\/3 { + bottom: 66.666667%; } - .xl\:-top-60 { - top: -15rem; + .xl\:bottom-1\/4 { + bottom: 25%; } - .xl\:-right-60 { - right: -15rem; + .xl\:bottom-2\/4 { + bottom: 50%; } - .xl\:-bottom-60 { - bottom: -15rem; + .xl\:bottom-3\/4 { + bottom: 75%; } - .xl\:-left-60 { - left: -15rem; + .xl\:bottom-full { + bottom: 100%; } - .xl\:-top-64 { - top: -16rem; + .xl\:-bottom-1\/2 { + bottom: -50%; } - .xl\:-right-64 { - right: -16rem; + .xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .xl\:-bottom-64 { - bottom: -16rem; + .xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .xl\:-left-64 { - left: -16rem; + .xl\:-bottom-1\/4 { + bottom: -25%; } - .xl\:-top-72 { - top: -18rem; + .xl\:-bottom-2\/4 { + bottom: -50%; } - .xl\:-right-72 { - right: -18rem; + .xl\:-bottom-3\/4 { + bottom: -75%; } - .xl\:-bottom-72 { - bottom: -18rem; + .xl\:-bottom-full { + bottom: -100%; } - .xl\:-left-72 { - left: -18rem; + .xl\:left-0 { + left: 0px; } - .xl\:-top-80 { - top: -20rem; + .xl\:left-1 { + left: 0.25rem; } - .xl\:-right-80 { - right: -20rem; + .xl\:left-2 { + left: 0.5rem; } - .xl\:-bottom-80 { - bottom: -20rem; + .xl\:left-3 { + left: 0.75rem; } - .xl\:-left-80 { - left: -20rem; + .xl\:left-4 { + left: 1rem; } - .xl\:-top-96 { - top: -24rem; + .xl\:left-5 { + left: 1.25rem; } - .xl\:-right-96 { - right: -24rem; + .xl\:left-6 { + left: 1.5rem; } - .xl\:-bottom-96 { - bottom: -24rem; + .xl\:left-7 { + left: 1.75rem; } - .xl\:-left-96 { - left: -24rem; + .xl\:left-8 { + left: 2rem; } - .xl\:-top-px { - top: -1px; + .xl\:left-9 { + left: 2.25rem; } - .xl\:-right-px { - right: -1px; + .xl\:left-10 { + left: 2.5rem; } - .xl\:-bottom-px { - bottom: -1px; + .xl\:left-11 { + left: 2.75rem; } - .xl\:-left-px { - left: -1px; + .xl\:left-12 { + left: 3rem; } - .xl\:-top-0\.5 { - top: -0.125rem; + .xl\:left-14 { + left: 3.5rem; } - .xl\:-right-0\.5 { - right: -0.125rem; + .xl\:left-16 { + left: 4rem; } - .xl\:-bottom-0\.5 { - bottom: -0.125rem; + .xl\:left-20 { + left: 5rem; } - .xl\:-left-0\.5 { - left: -0.125rem; + .xl\:left-24 { + left: 6rem; } - .xl\:-top-1\.5 { - top: -0.375rem; + .xl\:left-28 { + left: 7rem; } - .xl\:-right-1\.5 { - right: -0.375rem; + .xl\:left-32 { + left: 8rem; } - .xl\:-bottom-1\.5 { - bottom: -0.375rem; + .xl\:left-36 { + left: 9rem; } - .xl\:-left-1\.5 { - left: -0.375rem; + .xl\:left-40 { + left: 10rem; } - .xl\:-top-2\.5 { - top: -0.625rem; + .xl\:left-44 { + left: 11rem; } - .xl\:-right-2\.5 { - right: -0.625rem; + .xl\:left-48 { + left: 12rem; } - .xl\:-bottom-2\.5 { - bottom: -0.625rem; + .xl\:left-52 { + left: 13rem; } - .xl\:-left-2\.5 { - left: -0.625rem; + .xl\:left-56 { + left: 14rem; } - .xl\:-top-3\.5 { - top: -0.875rem; + .xl\:left-60 { + left: 15rem; } - .xl\:-right-3\.5 { - right: -0.875rem; + .xl\:left-64 { + left: 16rem; } - .xl\:-bottom-3\.5 { - bottom: -0.875rem; + .xl\:left-72 { + left: 18rem; } - .xl\:-left-3\.5 { - left: -0.875rem; + .xl\:left-80 { + left: 20rem; } - .xl\:top-1\/2 { - top: 50%; + .xl\:left-96 { + left: 24rem; } - .xl\:right-1\/2 { - right: 50%; + .xl\:left-auto { + left: auto; } - .xl\:bottom-1\/2 { - bottom: 50%; + .xl\:left-px { + left: 1px; } - .xl\:left-1\/2 { - left: 50%; + .xl\:left-0\.5 { + left: 0.125rem; } - .xl\:top-1\/3 { - top: 33.333333%; + .xl\:left-1\.5 { + left: 0.375rem; } - .xl\:right-1\/3 { - right: 33.333333%; + .xl\:left-2\.5 { + left: 0.625rem; } - .xl\:bottom-1\/3 { - bottom: 33.333333%; + .xl\:left-3\.5 { + left: 0.875rem; } - .xl\:left-1\/3 { - left: 33.333333%; + .xl\:-left-0 { + left: 0px; } - .xl\:top-2\/3 { - top: 66.666667%; + .xl\:-left-1 { + left: -0.25rem; } - .xl\:right-2\/3 { - right: 66.666667%; + .xl\:-left-2 { + left: -0.5rem; } - .xl\:bottom-2\/3 { - bottom: 66.666667%; + .xl\:-left-3 { + left: -0.75rem; } - .xl\:left-2\/3 { - left: 66.666667%; + .xl\:-left-4 { + left: -1rem; } - .xl\:top-1\/4 { - top: 25%; + .xl\:-left-5 { + left: -1.25rem; } - .xl\:right-1\/4 { - right: 25%; + .xl\:-left-6 { + left: -1.5rem; } - .xl\:bottom-1\/4 { - bottom: 25%; + .xl\:-left-7 { + left: -1.75rem; } - .xl\:left-1\/4 { - left: 25%; + .xl\:-left-8 { + left: -2rem; } - .xl\:top-2\/4 { - top: 50%; + .xl\:-left-9 { + left: -2.25rem; } - .xl\:right-2\/4 { - right: 50%; + .xl\:-left-10 { + left: -2.5rem; } - .xl\:bottom-2\/4 { - bottom: 50%; + .xl\:-left-11 { + left: -2.75rem; } - .xl\:left-2\/4 { - left: 50%; + .xl\:-left-12 { + left: -3rem; } - .xl\:top-3\/4 { - top: 75%; + .xl\:-left-14 { + left: -3.5rem; } - .xl\:right-3\/4 { - right: 75%; + .xl\:-left-16 { + left: -4rem; } - .xl\:bottom-3\/4 { - bottom: 75%; + .xl\:-left-20 { + left: -5rem; } - .xl\:left-3\/4 { - left: 75%; + .xl\:-left-24 { + left: -6rem; } - .xl\:top-full { - top: 100%; + .xl\:-left-28 { + left: -7rem; } - .xl\:right-full { - right: 100%; + .xl\:-left-32 { + left: -8rem; } - .xl\:bottom-full { - bottom: 100%; + .xl\:-left-36 { + left: -9rem; } - .xl\:left-full { - left: 100%; + .xl\:-left-40 { + left: -10rem; } - .xl\:-top-1\/2 { - top: -50%; + .xl\:-left-44 { + left: -11rem; } - .xl\:-right-1\/2 { - right: -50%; + .xl\:-left-48 { + left: -12rem; } - .xl\:-bottom-1\/2 { - bottom: -50%; + .xl\:-left-52 { + left: -13rem; } - .xl\:-left-1\/2 { - left: -50%; + .xl\:-left-56 { + left: -14rem; } - .xl\:-top-1\/3 { - top: -33.333333%; + .xl\:-left-60 { + left: -15rem; } - .xl\:-right-1\/3 { - right: -33.333333%; + .xl\:-left-64 { + left: -16rem; } - .xl\:-bottom-1\/3 { - bottom: -33.333333%; + .xl\:-left-72 { + left: -18rem; } - .xl\:-left-1\/3 { - left: -33.333333%; + .xl\:-left-80 { + left: -20rem; } - .xl\:-top-2\/3 { - top: -66.666667%; + .xl\:-left-96 { + left: -24rem; } - .xl\:-right-2\/3 { - right: -66.666667%; + .xl\:-left-px { + left: -1px; } - .xl\:-bottom-2\/3 { - bottom: -66.666667%; + .xl\:-left-0\.5 { + left: -0.125rem; } - .xl\:-left-2\/3 { - left: -66.666667%; + .xl\:-left-1\.5 { + left: -0.375rem; } - .xl\:-top-1\/4 { - top: -25%; + .xl\:-left-2\.5 { + left: -0.625rem; } - .xl\:-right-1\/4 { - right: -25%; + .xl\:-left-3\.5 { + left: -0.875rem; } - .xl\:-bottom-1\/4 { - bottom: -25%; + .xl\:left-1\/2 { + left: 50%; } - .xl\:-left-1\/4 { - left: -25%; + .xl\:left-1\/3 { + left: 33.333333%; } - .xl\:-top-2\/4 { - top: -50%; + .xl\:left-2\/3 { + left: 66.666667%; } - .xl\:-right-2\/4 { - right: -50%; + .xl\:left-1\/4 { + left: 25%; } - .xl\:-bottom-2\/4 { - bottom: -50%; + .xl\:left-2\/4 { + left: 50%; } - .xl\:-left-2\/4 { - left: -50%; + .xl\:left-3\/4 { + left: 75%; } - .xl\:-top-3\/4 { - top: -75%; + .xl\:left-full { + left: 100%; } - .xl\:-right-3\/4 { - right: -75%; + .xl\:-left-1\/2 { + left: -50%; } - .xl\:-bottom-3\/4 { - bottom: -75%; + .xl\:-left-1\/3 { + left: -33.333333%; } - .xl\:-left-3\/4 { - left: -75%; + .xl\:-left-2\/3 { + left: -66.666667%; } - .xl\:-top-full { - top: -100%; + .xl\:-left-1\/4 { + left: -25%; } - .xl\:-right-full { - right: -100%; + .xl\:-left-2\/4 { + left: -50%; } - .xl\:-bottom-full { - bottom: -100%; + .xl\:-left-3\/4 { + left: -75%; } .xl\:-left-full { @@ -126160,133 +126256,183 @@ video { --tw-scale-y: 1.5; } - .xl\:scale-x-0 { + .xl\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:scale-x-50 { + .xl\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:scale-x-75 { + .xl\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:scale-x-90 { + .xl\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:scale-x-95 { + .xl\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:scale-x-100 { + .xl\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:scale-x-105 { + .xl\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:scale-x-110 { + .xl\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:scale-x-125 { + .xl\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:scale-x-150 { + .xl\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:scale-y-0 { + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .xl\:scale-y-50 { + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .xl\:scale-y-75 { + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .xl\:scale-y-90 { + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .xl\:scale-y-95 { + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .xl\:scale-y-100 { + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .xl\:scale-y-105 { + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .xl\:scale-y-110 { + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .xl\:scale-y-125 { + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .xl\:scale-y-150 { + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .xl\:hover\:scale-0:hover { + .xl\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .xl\:hover\:scale-50:hover { + .xl\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .xl\:hover\:scale-75:hover { + .xl\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .xl\:hover\:scale-90:hover { + .xl\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .xl\:hover\:scale-95:hover { + .xl\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .xl\:hover\:scale-100:hover { + .xl\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .xl\:hover\:scale-105:hover { + .xl\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .xl\:hover\:scale-110:hover { + .xl\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .xl\:hover\:scale-125:hover { + .xl\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .xl\:hover\:scale-150:hover { + .xl\:scale-x-150 { --tw-scale-x: 1.5; + } + + .xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .xl\:scale-y-150 { --tw-scale-y: 1.5; } @@ -126370,56 +126516,6 @@ video { --tw-scale-y: 1.5; } - .xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .xl\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -127312,436 +127408,640 @@ video { row-gap: 0.875rem; } - .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -127750,408 +128050,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -128160,66 +128256,66 @@ video { --tw-space-x-reverse: 1; } - .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -134633,2188 +134729,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .xl\:to-transparent { - --tw-gradient-to: transparent; + .xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:to-current { - --tw-gradient-to: currentColor; + .xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:to-black { - --tw-gradient-to: #000; + .xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:to-white { - --tw-gradient-to: #fff; + .xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:to-gray-700 { - --tw-gradient-to: #374151; + .xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:to-gray-900 { - --tw-gradient-to: #111827; + .xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:to-red-400 { - --tw-gradient-to: #f87171; + .xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:to-green-400 { - --tw-gradient-to: #34d399; + .xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:to-green-500 { - --tw-gradient-to: #10b981; + .xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:to-green-600 { - --tw-gradient-to: #059669; + .xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:to-green-700 { - --tw-gradient-to: #047857; + .xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:to-green-800 { - --tw-gradient-to: #065f46; + .xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:to-pink-900 { - --tw-gradient-to: #831843; + .xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:hover\:from-transparent:hover { + .xl\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:from-current:hover { + .xl\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:from-black:hover { + .xl\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:from-white:hover { + .xl\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:from-gray-50:hover { + .xl\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:hover\:from-gray-100:hover { + .xl\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:hover\:from-gray-200:hover { + .xl\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:hover\:from-gray-300:hover { + .xl\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:hover\:from-gray-400:hover { + .xl\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:hover\:from-gray-500:hover { + .xl\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:hover\:from-gray-600:hover { + .xl\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:hover\:from-gray-700:hover { + .xl\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:hover\:from-gray-800:hover { + .xl\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:hover\:from-gray-900:hover { + .xl\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:hover\:from-red-50:hover { + .xl\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:hover\:from-red-100:hover { + .xl\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:hover\:from-red-200:hover { + .xl\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:hover\:from-red-300:hover { + .xl\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:hover\:from-red-400:hover { + .xl\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:hover\:from-red-500:hover { + .xl\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:hover\:from-red-600:hover { + .xl\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:hover\:from-red-700:hover { + .xl\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:hover\:from-red-800:hover { + .xl\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:hover\:from-red-900:hover { + .xl\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:hover\:from-yellow-50:hover { + .xl\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:hover\:from-yellow-100:hover { + .xl\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:hover\:from-yellow-200:hover { + .xl\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:hover\:from-yellow-300:hover { + .xl\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:hover\:from-yellow-400:hover { + .xl\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:hover\:from-yellow-500:hover { + .xl\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:hover\:from-yellow-600:hover { + .xl\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:hover\:from-yellow-700:hover { + .xl\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:hover\:from-yellow-800:hover { + .xl\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:hover\:from-yellow-900:hover { + .xl\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:hover\:from-green-50:hover { + .xl\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:hover\:from-green-100:hover { + .xl\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:hover\:from-green-200:hover { + .xl\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:hover\:from-green-300:hover { + .xl\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:hover\:from-green-400:hover { + .xl\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:hover\:from-green-500:hover { + .xl\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:hover\:from-green-600:hover { + .xl\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:hover\:from-green-700:hover { + .xl\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:hover\:from-green-800:hover { + .xl\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:hover\:from-green-900:hover { + .xl\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:hover\:from-blue-50:hover { + .xl\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:hover\:from-blue-100:hover { + .xl\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:hover\:from-blue-200:hover { + .xl\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:hover\:from-blue-300:hover { + .xl\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:hover\:from-blue-400:hover { + .xl\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:hover\:from-blue-500:hover { + .xl\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:hover\:from-blue-600:hover { + .xl\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:hover\:from-blue-700:hover { + .xl\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:hover\:from-blue-800:hover { + .xl\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:hover\:from-blue-900:hover { + .xl\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:hover\:from-indigo-50:hover { + .xl\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:hover\:from-indigo-100:hover { + .xl\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:hover\:from-indigo-200:hover { + .xl\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:hover\:from-indigo-300:hover { + .xl\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:hover\:from-indigo-400:hover { + .xl\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:hover\:from-indigo-500:hover { + .xl\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:hover\:from-indigo-600:hover { + .xl\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:hover\:from-indigo-700:hover { + .xl\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:hover\:from-indigo-800:hover { + .xl\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:hover\:from-indigo-900:hover { + .xl\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:hover\:from-purple-50:hover { + .xl\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:hover\:from-purple-100:hover { + .xl\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:hover\:from-purple-200:hover { + .xl\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:hover\:from-purple-300:hover { + .xl\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:hover\:from-purple-400:hover { + .xl\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:hover\:from-purple-500:hover { + .xl\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:hover\:from-purple-600:hover { + .xl\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:hover\:from-purple-700:hover { + .xl\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:hover\:from-purple-800:hover { + .xl\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:hover\:from-purple-900:hover { + .xl\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:hover\:from-pink-50:hover { + .xl\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:hover\:from-pink-100:hover { + .xl\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:hover\:from-pink-200:hover { + .xl\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:hover\:from-pink-300:hover { + .xl\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:hover\:from-pink-400:hover { + .xl\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:hover\:from-pink-500:hover { + .xl\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:hover\:from-pink-600:hover { + .xl\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:hover\:from-pink-700:hover { + .xl\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:hover\:from-pink-800:hover { + .xl\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:hover\:from-pink-900:hover { + .xl\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:hover\:via-transparent:hover { + .xl\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:via-current:hover { + .xl\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:via-black:hover { + .xl\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:via-white:hover { + .xl\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:via-gray-50:hover { + .xl\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:hover\:via-gray-100:hover { + .xl\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:hover\:via-gray-200:hover { + .xl\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:hover\:via-gray-300:hover { + .xl\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:hover\:via-gray-400:hover { + .xl\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:hover\:via-gray-500:hover { + .xl\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:hover\:via-gray-600:hover { + .xl\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:hover\:via-gray-700:hover { + .xl\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:hover\:via-gray-800:hover { + .xl\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:hover\:via-gray-900:hover { + .xl\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:hover\:via-red-50:hover { + .xl\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:hover\:via-red-100:hover { + .xl\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:hover\:via-red-200:hover { + .xl\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:hover\:via-red-300:hover { + .xl\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:hover\:via-red-400:hover { + .xl\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:hover\:via-red-500:hover { + .xl\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:hover\:via-red-600:hover { + .xl\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:hover\:via-red-700:hover { + .xl\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:hover\:via-red-800:hover { + .xl\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:hover\:via-red-900:hover { + .xl\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:hover\:via-yellow-50:hover { + .xl\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:hover\:via-yellow-100:hover { + .xl\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:hover\:via-yellow-200:hover { + .xl\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:hover\:via-yellow-300:hover { + .xl\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:hover\:via-yellow-400:hover { + .xl\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:hover\:via-yellow-500:hover { + .xl\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:hover\:via-yellow-600:hover { + .xl\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:hover\:via-yellow-700:hover { + .xl\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:hover\:via-yellow-800:hover { + .xl\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:hover\:via-yellow-900:hover { + .xl\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:hover\:via-green-50:hover { + .xl\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:hover\:via-green-100:hover { + .xl\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:hover\:via-green-200:hover { + .xl\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:hover\:via-green-300:hover { + .xl\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:hover\:via-green-400:hover { + .xl\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:hover\:via-green-500:hover { + .xl\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:hover\:via-green-600:hover { + .xl\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:hover\:via-green-700:hover { + .xl\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:hover\:via-green-800:hover { + .xl\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:hover\:via-green-900:hover { + .xl\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:hover\:via-blue-50:hover { + .xl\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:hover\:via-blue-100:hover { + .xl\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:hover\:via-blue-200:hover { + .xl\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:hover\:via-blue-300:hover { + .xl\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:hover\:via-blue-400:hover { + .xl\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:hover\:via-blue-500:hover { + .xl\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:hover\:via-blue-600:hover { + .xl\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:hover\:via-blue-700:hover { + .xl\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:hover\:via-blue-800:hover { + .xl\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:hover\:via-blue-900:hover { + .xl\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:hover\:via-indigo-50:hover { + .xl\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:hover\:via-indigo-100:hover { + .xl\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:hover\:via-indigo-200:hover { + .xl\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:hover\:via-indigo-300:hover { + .xl\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:hover\:via-indigo-400:hover { + .xl\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:hover\:via-indigo-500:hover { + .xl\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:hover\:via-indigo-600:hover { + .xl\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:hover\:via-indigo-700:hover { + .xl\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:hover\:via-indigo-800:hover { + .xl\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:hover\:via-indigo-900:hover { + .xl\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:hover\:via-purple-50:hover { + .xl\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:hover\:via-purple-100:hover { + .xl\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:hover\:via-purple-200:hover { + .xl\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:hover\:via-purple-300:hover { + .xl\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:hover\:via-purple-400:hover { + .xl\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:hover\:via-purple-500:hover { + .xl\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:hover\:via-purple-600:hover { + .xl\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:hover\:via-purple-700:hover { + .xl\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:hover\:via-purple-800:hover { + .xl\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:hover\:via-purple-900:hover { + .xl\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:hover\:via-pink-50:hover { + .xl\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:hover\:via-pink-100:hover { + .xl\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:hover\:via-pink-200:hover { + .xl\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:hover\:via-pink-300:hover { + .xl\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:hover\:via-pink-400:hover { + .xl\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:hover\:via-pink-500:hover { + .xl\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:hover\:via-pink-600:hover { + .xl\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:hover\:via-pink-700:hover { + .xl\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:hover\:via-pink-800:hover { + .xl\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:hover\:via-pink-900:hover { + .xl\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .xl\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .xl\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .xl\:focus\:via-transparent:focus { @@ -137153,6 +136577,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .xl\:to-current { + --tw-gradient-to: currentColor; + } + + .xl\:to-black { + --tw-gradient-to: #000; + } + + .xl\:to-white { + --tw-gradient-to: #fff; + } + + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .xl\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .xl\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .xl\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .xl\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .xl\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .xl\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .xl\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .xl\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .xl\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .xl\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .xl\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .xl\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .xl\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .xl\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .xl\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .xl\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .xl\:to-green-600 { + --tw-gradient-to: #059669; + } + + .xl\:to-green-700 { + --tw-gradient-to: #047857; + } + + .xl\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .xl\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .xl\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .xl\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .xl\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .xl\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .xl\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .xl\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .xl\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .xl\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .xl\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .xl\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -143162,10 +143258,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:ring-inset { - --tw-ring-inset: inset; - } - .xl\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -143202,10 +143294,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .xl\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -143242,6 +143330,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .xl\:ring-inset { + --tw-ring-inset: inset; + } + + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .xl\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -146002,6 +146098,38 @@ video { backdrop-filter: none; } + .xl\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .xl\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .xl\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .xl\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .xl\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .xl\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .xl\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .xl\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .xl\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -146911,116 +147039,541 @@ video { left: -0.375rem; } - .\32xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .\32xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .\32xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .\32xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .\32xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .\32xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .\32xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .\32xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .\32xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .\32xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .\32xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .\32xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .\32xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .\32xl\:inset-x-0 { + left: 0px; + right: 0px; + } + + .\32xl\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .\32xl\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .\32xl\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .\32xl\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .\32xl\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .\32xl\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .\32xl\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .\32xl\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .\32xl\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .\32xl\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .\32xl\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .\32xl\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .\32xl\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .\32xl\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .\32xl\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .\32xl\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .\32xl\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .\32xl\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .\32xl\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .\32xl\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .\32xl\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .\32xl\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .\32xl\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .\32xl\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .\32xl\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .\32xl\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .\32xl\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .\32xl\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .\32xl\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .\32xl\:inset-x-auto { + left: auto; + right: auto; + } + + .\32xl\:inset-x-px { + left: 1px; + right: 1px; + } + + .\32xl\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .\32xl\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .\32xl\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .\32xl\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .\32xl\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .\32xl\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .\32xl\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .\32xl\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .\32xl\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .\32xl\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .\32xl\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .\32xl\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .\32xl\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .\32xl\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .\32xl\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .\32xl\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .\32xl\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .\32xl\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .\32xl\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .\32xl\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .\32xl\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .\32xl\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .\32xl\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .\32xl\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .\32xl\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .\32xl\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .\32xl\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .\32xl\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .\32xl\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .\32xl\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .\32xl\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .\32xl\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .\32xl\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .\32xl\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .\32xl\:-inset-x-px { + left: -1px; + right: -1px; + } + + .\32xl\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .\32xl\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .\32xl\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .\32xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .\32xl\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .\32xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .\32xl\:inset-x-1\/2 { left: 50%; + right: 50%; } - .\32xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .\32xl\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .\32xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .\32xl\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .\32xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .\32xl\:inset-x-1\/4 { left: 25%; + right: 25%; } - .\32xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .\32xl\:inset-x-2\/4 { left: 50%; + right: 50%; } - .\32xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .\32xl\:inset-x-3\/4 { left: 75%; + right: 75%; } - .\32xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .\32xl\:inset-x-full { left: 100%; + right: 100%; } - .\32xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .\32xl\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .\32xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .\32xl\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .\32xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .\32xl\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .\32xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .\32xl\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .\32xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .\32xl\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .\32xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .\32xl\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .\32xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .\32xl\:-inset-x-full { left: -100%; + right: -100%; } .\32xl\:inset-y-0 { @@ -147028,2205 +147581,1780 @@ video { bottom: 0px; } - .\32xl\:inset-x-0 { - right: 0px; - left: 0px; - } - .\32xl\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .\32xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .\32xl\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .\32xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .\32xl\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .\32xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .\32xl\:inset-y-4 { top: 1rem; bottom: 1rem; } - .\32xl\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .\32xl\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .\32xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .\32xl\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .\32xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .\32xl\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .\32xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .\32xl\:inset-y-8 { top: 2rem; bottom: 2rem; } - .\32xl\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .\32xl\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .\32xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .\32xl\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .\32xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .\32xl\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .\32xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .\32xl\:inset-y-12 { top: 3rem; bottom: 3rem; } - .\32xl\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .\32xl\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .\32xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .\32xl\:inset-y-16 { top: 4rem; bottom: 4rem; } - .\32xl\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .\32xl\:inset-y-20 { top: 5rem; bottom: 5rem; } - .\32xl\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .\32xl\:inset-y-24 { top: 6rem; bottom: 6rem; } - .\32xl\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .\32xl\:inset-y-28 { top: 7rem; bottom: 7rem; } - .\32xl\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .\32xl\:inset-y-32 { top: 8rem; bottom: 8rem; } - .\32xl\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .\32xl\:inset-y-36 { top: 9rem; bottom: 9rem; } - .\32xl\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .\32xl\:inset-y-40 { top: 10rem; bottom: 10rem; } - .\32xl\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .\32xl\:inset-y-44 { top: 11rem; bottom: 11rem; } - .\32xl\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .\32xl\:inset-y-48 { top: 12rem; bottom: 12rem; } - .\32xl\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .\32xl\:inset-y-52 { top: 13rem; bottom: 13rem; } - .\32xl\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .\32xl\:inset-y-56 { top: 14rem; bottom: 14rem; } - .\32xl\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .\32xl\:inset-y-60 { top: 15rem; bottom: 15rem; } - .\32xl\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .\32xl\:inset-y-64 { top: 16rem; bottom: 16rem; } - .\32xl\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .\32xl\:inset-y-72 { top: 18rem; bottom: 18rem; } - .\32xl\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .\32xl\:inset-y-80 { top: 20rem; bottom: 20rem; } - .\32xl\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .\32xl\:inset-y-96 { top: 24rem; bottom: 24rem; } - .\32xl\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .\32xl\:inset-y-auto { top: auto; bottom: auto; } - .\32xl\:inset-x-auto { - right: auto; - left: auto; - } - .\32xl\:inset-y-px { top: 1px; bottom: 1px; } - .\32xl\:inset-x-px { - right: 1px; - left: 1px; - } - .\32xl\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .\32xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .\32xl\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .\32xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .\32xl\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .\32xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .\32xl\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .\32xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .\32xl\:-inset-y-0 { top: 0px; bottom: 0px; } - .\32xl\:-inset-x-0 { - right: 0px; - left: 0px; - } - .\32xl\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .\32xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .\32xl\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .\32xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .\32xl\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .\32xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .\32xl\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .\32xl\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .\32xl\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .\32xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .\32xl\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .\32xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .\32xl\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .\32xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .\32xl\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .\32xl\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .\32xl\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .\32xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .\32xl\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .\32xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .\32xl\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .\32xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .\32xl\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .\32xl\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .\32xl\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .\32xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .\32xl\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .\32xl\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .\32xl\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .\32xl\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .\32xl\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .\32xl\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .\32xl\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .\32xl\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .\32xl\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .\32xl\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .\32xl\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .\32xl\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .\32xl\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .\32xl\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .\32xl\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .\32xl\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .\32xl\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .\32xl\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .\32xl\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .\32xl\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .\32xl\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .\32xl\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .\32xl\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .\32xl\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .\32xl\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .\32xl\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .\32xl\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .\32xl\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .\32xl\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .\32xl\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .\32xl\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .\32xl\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .\32xl\:-inset-y-px { top: -1px; bottom: -1px; } - .\32xl\:-inset-x-px { - right: -1px; - left: -1px; - } - .\32xl\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .\32xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .\32xl\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .\32xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .\32xl\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .\32xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .\32xl\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .\32xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .\32xl\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .\32xl\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .\32xl\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .\32xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .\32xl\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .\32xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .\32xl\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .\32xl\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .\32xl\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .\32xl\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .\32xl\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .\32xl\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .\32xl\:inset-y-full { top: 100%; bottom: 100%; } - .\32xl\:inset-x-full { - right: 100%; - left: 100%; - } - .\32xl\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .\32xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .\32xl\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .\32xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .\32xl\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .\32xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .\32xl\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .\32xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .\32xl\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .\32xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .\32xl\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .\32xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .\32xl\:-inset-y-full { top: -100%; bottom: -100%; } - .\32xl\:-inset-x-full { - right: -100%; - left: -100%; - } - .\32xl\:top-0 { top: 0px; } - .\32xl\:right-0 { - right: 0px; + .\32xl\:top-1 { + top: 0.25rem; } - .\32xl\:bottom-0 { - bottom: 0px; + .\32xl\:top-2 { + top: 0.5rem; } - .\32xl\:left-0 { - left: 0px; + .\32xl\:top-3 { + top: 0.75rem; } - .\32xl\:top-1 { - top: 0.25rem; + .\32xl\:top-4 { + top: 1rem; } - .\32xl\:right-1 { - right: 0.25rem; + .\32xl\:top-5 { + top: 1.25rem; } - .\32xl\:bottom-1 { - bottom: 0.25rem; + .\32xl\:top-6 { + top: 1.5rem; } - .\32xl\:left-1 { - left: 0.25rem; + .\32xl\:top-7 { + top: 1.75rem; } - .\32xl\:top-2 { - top: 0.5rem; + .\32xl\:top-8 { + top: 2rem; } - .\32xl\:right-2 { - right: 0.5rem; + .\32xl\:top-9 { + top: 2.25rem; } - .\32xl\:bottom-2 { - bottom: 0.5rem; + .\32xl\:top-10 { + top: 2.5rem; } - .\32xl\:left-2 { - left: 0.5rem; + .\32xl\:top-11 { + top: 2.75rem; } - .\32xl\:top-3 { - top: 0.75rem; + .\32xl\:top-12 { + top: 3rem; } - .\32xl\:right-3 { - right: 0.75rem; + .\32xl\:top-14 { + top: 3.5rem; } - .\32xl\:bottom-3 { - bottom: 0.75rem; + .\32xl\:top-16 { + top: 4rem; } - .\32xl\:left-3 { - left: 0.75rem; + .\32xl\:top-20 { + top: 5rem; } - .\32xl\:top-4 { - top: 1rem; + .\32xl\:top-24 { + top: 6rem; } - .\32xl\:right-4 { - right: 1rem; + .\32xl\:top-28 { + top: 7rem; } - .\32xl\:bottom-4 { - bottom: 1rem; + .\32xl\:top-32 { + top: 8rem; } - .\32xl\:left-4 { - left: 1rem; + .\32xl\:top-36 { + top: 9rem; } - .\32xl\:top-5 { - top: 1.25rem; + .\32xl\:top-40 { + top: 10rem; } - .\32xl\:right-5 { - right: 1.25rem; + .\32xl\:top-44 { + top: 11rem; } - .\32xl\:bottom-5 { - bottom: 1.25rem; + .\32xl\:top-48 { + top: 12rem; } - .\32xl\:left-5 { - left: 1.25rem; + .\32xl\:top-52 { + top: 13rem; } - .\32xl\:top-6 { - top: 1.5rem; + .\32xl\:top-56 { + top: 14rem; } - .\32xl\:right-6 { - right: 1.5rem; + .\32xl\:top-60 { + top: 15rem; } - .\32xl\:bottom-6 { - bottom: 1.5rem; + .\32xl\:top-64 { + top: 16rem; } - .\32xl\:left-6 { - left: 1.5rem; + .\32xl\:top-72 { + top: 18rem; } - .\32xl\:top-7 { - top: 1.75rem; + .\32xl\:top-80 { + top: 20rem; } - .\32xl\:right-7 { - right: 1.75rem; + .\32xl\:top-96 { + top: 24rem; } - .\32xl\:bottom-7 { - bottom: 1.75rem; + .\32xl\:top-auto { + top: auto; } - .\32xl\:left-7 { - left: 1.75rem; + .\32xl\:top-px { + top: 1px; } - .\32xl\:top-8 { - top: 2rem; + .\32xl\:top-0\.5 { + top: 0.125rem; } - .\32xl\:right-8 { - right: 2rem; + .\32xl\:top-1\.5 { + top: 0.375rem; } - .\32xl\:bottom-8 { - bottom: 2rem; + .\32xl\:top-2\.5 { + top: 0.625rem; } - .\32xl\:left-8 { - left: 2rem; + .\32xl\:top-3\.5 { + top: 0.875rem; } - .\32xl\:top-9 { - top: 2.25rem; + .\32xl\:-top-0 { + top: 0px; } - .\32xl\:right-9 { - right: 2.25rem; + .\32xl\:-top-1 { + top: -0.25rem; } - .\32xl\:bottom-9 { - bottom: 2.25rem; + .\32xl\:-top-2 { + top: -0.5rem; } - .\32xl\:left-9 { - left: 2.25rem; + .\32xl\:-top-3 { + top: -0.75rem; } - .\32xl\:top-10 { - top: 2.5rem; + .\32xl\:-top-4 { + top: -1rem; } - .\32xl\:right-10 { - right: 2.5rem; + .\32xl\:-top-5 { + top: -1.25rem; } - .\32xl\:bottom-10 { - bottom: 2.5rem; + .\32xl\:-top-6 { + top: -1.5rem; } - .\32xl\:left-10 { - left: 2.5rem; + .\32xl\:-top-7 { + top: -1.75rem; } - .\32xl\:top-11 { - top: 2.75rem; + .\32xl\:-top-8 { + top: -2rem; } - .\32xl\:right-11 { - right: 2.75rem; + .\32xl\:-top-9 { + top: -2.25rem; } - .\32xl\:bottom-11 { - bottom: 2.75rem; + .\32xl\:-top-10 { + top: -2.5rem; } - .\32xl\:left-11 { - left: 2.75rem; + .\32xl\:-top-11 { + top: -2.75rem; } - .\32xl\:top-12 { - top: 3rem; + .\32xl\:-top-12 { + top: -3rem; } - .\32xl\:right-12 { - right: 3rem; + .\32xl\:-top-14 { + top: -3.5rem; } - .\32xl\:bottom-12 { - bottom: 3rem; + .\32xl\:-top-16 { + top: -4rem; } - .\32xl\:left-12 { - left: 3rem; + .\32xl\:-top-20 { + top: -5rem; } - .\32xl\:top-14 { - top: 3.5rem; + .\32xl\:-top-24 { + top: -6rem; } - .\32xl\:right-14 { - right: 3.5rem; + .\32xl\:-top-28 { + top: -7rem; } - .\32xl\:bottom-14 { - bottom: 3.5rem; + .\32xl\:-top-32 { + top: -8rem; } - .\32xl\:left-14 { - left: 3.5rem; + .\32xl\:-top-36 { + top: -9rem; } - .\32xl\:top-16 { - top: 4rem; + .\32xl\:-top-40 { + top: -10rem; } - .\32xl\:right-16 { - right: 4rem; + .\32xl\:-top-44 { + top: -11rem; } - .\32xl\:bottom-16 { - bottom: 4rem; + .\32xl\:-top-48 { + top: -12rem; } - .\32xl\:left-16 { - left: 4rem; + .\32xl\:-top-52 { + top: -13rem; } - .\32xl\:top-20 { - top: 5rem; + .\32xl\:-top-56 { + top: -14rem; } - .\32xl\:right-20 { - right: 5rem; + .\32xl\:-top-60 { + top: -15rem; } - .\32xl\:bottom-20 { - bottom: 5rem; + .\32xl\:-top-64 { + top: -16rem; } - .\32xl\:left-20 { - left: 5rem; + .\32xl\:-top-72 { + top: -18rem; } - .\32xl\:top-24 { - top: 6rem; + .\32xl\:-top-80 { + top: -20rem; } - .\32xl\:right-24 { - right: 6rem; + .\32xl\:-top-96 { + top: -24rem; } - .\32xl\:bottom-24 { - bottom: 6rem; + .\32xl\:-top-px { + top: -1px; } - .\32xl\:left-24 { - left: 6rem; + .\32xl\:-top-0\.5 { + top: -0.125rem; } - .\32xl\:top-28 { - top: 7rem; + .\32xl\:-top-1\.5 { + top: -0.375rem; } - .\32xl\:right-28 { - right: 7rem; + .\32xl\:-top-2\.5 { + top: -0.625rem; } - .\32xl\:bottom-28 { - bottom: 7rem; + .\32xl\:-top-3\.5 { + top: -0.875rem; } - .\32xl\:left-28 { - left: 7rem; + .\32xl\:top-1\/2 { + top: 50%; } - .\32xl\:top-32 { - top: 8rem; + .\32xl\:top-1\/3 { + top: 33.333333%; } - .\32xl\:right-32 { - right: 8rem; + .\32xl\:top-2\/3 { + top: 66.666667%; } - .\32xl\:bottom-32 { - bottom: 8rem; + .\32xl\:top-1\/4 { + top: 25%; } - .\32xl\:left-32 { - left: 8rem; + .\32xl\:top-2\/4 { + top: 50%; } - .\32xl\:top-36 { - top: 9rem; + .\32xl\:top-3\/4 { + top: 75%; } - .\32xl\:right-36 { - right: 9rem; + .\32xl\:top-full { + top: 100%; } - .\32xl\:bottom-36 { - bottom: 9rem; + .\32xl\:-top-1\/2 { + top: -50%; } - .\32xl\:left-36 { - left: 9rem; + .\32xl\:-top-1\/3 { + top: -33.333333%; } - .\32xl\:top-40 { - top: 10rem; + .\32xl\:-top-2\/3 { + top: -66.666667%; } - .\32xl\:right-40 { - right: 10rem; + .\32xl\:-top-1\/4 { + top: -25%; } - .\32xl\:bottom-40 { - bottom: 10rem; + .\32xl\:-top-2\/4 { + top: -50%; } - .\32xl\:left-40 { - left: 10rem; + .\32xl\:-top-3\/4 { + top: -75%; } - .\32xl\:top-44 { - top: 11rem; + .\32xl\:-top-full { + top: -100%; } - .\32xl\:right-44 { - right: 11rem; + .\32xl\:right-0 { + right: 0px; } - .\32xl\:bottom-44 { - bottom: 11rem; + .\32xl\:right-1 { + right: 0.25rem; } - .\32xl\:left-44 { - left: 11rem; + .\32xl\:right-2 { + right: 0.5rem; } - .\32xl\:top-48 { - top: 12rem; + .\32xl\:right-3 { + right: 0.75rem; } - .\32xl\:right-48 { - right: 12rem; + .\32xl\:right-4 { + right: 1rem; } - .\32xl\:bottom-48 { - bottom: 12rem; + .\32xl\:right-5 { + right: 1.25rem; } - .\32xl\:left-48 { - left: 12rem; + .\32xl\:right-6 { + right: 1.5rem; } - .\32xl\:top-52 { - top: 13rem; + .\32xl\:right-7 { + right: 1.75rem; } - .\32xl\:right-52 { - right: 13rem; + .\32xl\:right-8 { + right: 2rem; } - .\32xl\:bottom-52 { - bottom: 13rem; + .\32xl\:right-9 { + right: 2.25rem; } - .\32xl\:left-52 { - left: 13rem; + .\32xl\:right-10 { + right: 2.5rem; } - .\32xl\:top-56 { - top: 14rem; + .\32xl\:right-11 { + right: 2.75rem; } - .\32xl\:right-56 { - right: 14rem; + .\32xl\:right-12 { + right: 3rem; } - .\32xl\:bottom-56 { - bottom: 14rem; + .\32xl\:right-14 { + right: 3.5rem; } - .\32xl\:left-56 { - left: 14rem; + .\32xl\:right-16 { + right: 4rem; } - .\32xl\:top-60 { - top: 15rem; + .\32xl\:right-20 { + right: 5rem; } - .\32xl\:right-60 { - right: 15rem; + .\32xl\:right-24 { + right: 6rem; } - .\32xl\:bottom-60 { - bottom: 15rem; + .\32xl\:right-28 { + right: 7rem; } - .\32xl\:left-60 { - left: 15rem; + .\32xl\:right-32 { + right: 8rem; } - .\32xl\:top-64 { - top: 16rem; + .\32xl\:right-36 { + right: 9rem; } - .\32xl\:right-64 { - right: 16rem; + .\32xl\:right-40 { + right: 10rem; } - .\32xl\:bottom-64 { - bottom: 16rem; + .\32xl\:right-44 { + right: 11rem; } - .\32xl\:left-64 { - left: 16rem; + .\32xl\:right-48 { + right: 12rem; } - .\32xl\:top-72 { - top: 18rem; + .\32xl\:right-52 { + right: 13rem; } - .\32xl\:right-72 { - right: 18rem; + .\32xl\:right-56 { + right: 14rem; } - .\32xl\:bottom-72 { - bottom: 18rem; + .\32xl\:right-60 { + right: 15rem; } - .\32xl\:left-72 { - left: 18rem; + .\32xl\:right-64 { + right: 16rem; } - .\32xl\:top-80 { - top: 20rem; + .\32xl\:right-72 { + right: 18rem; } .\32xl\:right-80 { right: 20rem; } - .\32xl\:bottom-80 { - bottom: 20rem; + .\32xl\:right-96 { + right: 24rem; } - .\32xl\:left-80 { - left: 20rem; + .\32xl\:right-auto { + right: auto; } - .\32xl\:top-96 { - top: 24rem; + .\32xl\:right-px { + right: 1px; } - .\32xl\:right-96 { - right: 24rem; + .\32xl\:right-0\.5 { + right: 0.125rem; } - .\32xl\:bottom-96 { - bottom: 24rem; + .\32xl\:right-1\.5 { + right: 0.375rem; } - .\32xl\:left-96 { - left: 24rem; + .\32xl\:right-2\.5 { + right: 0.625rem; } - .\32xl\:top-auto { - top: auto; + .\32xl\:right-3\.5 { + right: 0.875rem; } - .\32xl\:right-auto { - right: auto; + .\32xl\:-right-0 { + right: 0px; } - .\32xl\:bottom-auto { - bottom: auto; + .\32xl\:-right-1 { + right: -0.25rem; } - .\32xl\:left-auto { - left: auto; + .\32xl\:-right-2 { + right: -0.5rem; } - .\32xl\:top-px { - top: 1px; + .\32xl\:-right-3 { + right: -0.75rem; } - .\32xl\:right-px { - right: 1px; + .\32xl\:-right-4 { + right: -1rem; } - .\32xl\:bottom-px { - bottom: 1px; + .\32xl\:-right-5 { + right: -1.25rem; } - .\32xl\:left-px { - left: 1px; + .\32xl\:-right-6 { + right: -1.5rem; } - .\32xl\:top-0\.5 { - top: 0.125rem; + .\32xl\:-right-7 { + right: -1.75rem; } - .\32xl\:right-0\.5 { - right: 0.125rem; + .\32xl\:-right-8 { + right: -2rem; } - .\32xl\:bottom-0\.5 { - bottom: 0.125rem; + .\32xl\:-right-9 { + right: -2.25rem; } - .\32xl\:left-0\.5 { - left: 0.125rem; + .\32xl\:-right-10 { + right: -2.5rem; } - .\32xl\:top-1\.5 { - top: 0.375rem; + .\32xl\:-right-11 { + right: -2.75rem; } - .\32xl\:right-1\.5 { - right: 0.375rem; + .\32xl\:-right-12 { + right: -3rem; } - .\32xl\:bottom-1\.5 { - bottom: 0.375rem; + .\32xl\:-right-14 { + right: -3.5rem; } - .\32xl\:left-1\.5 { - left: 0.375rem; + .\32xl\:-right-16 { + right: -4rem; } - .\32xl\:top-2\.5 { - top: 0.625rem; + .\32xl\:-right-20 { + right: -5rem; } - .\32xl\:right-2\.5 { - right: 0.625rem; + .\32xl\:-right-24 { + right: -6rem; } - .\32xl\:bottom-2\.5 { - bottom: 0.625rem; + .\32xl\:-right-28 { + right: -7rem; } - .\32xl\:left-2\.5 { - left: 0.625rem; + .\32xl\:-right-32 { + right: -8rem; } - .\32xl\:top-3\.5 { - top: 0.875rem; + .\32xl\:-right-36 { + right: -9rem; } - .\32xl\:right-3\.5 { - right: 0.875rem; + .\32xl\:-right-40 { + right: -10rem; } - .\32xl\:bottom-3\.5 { - bottom: 0.875rem; + .\32xl\:-right-44 { + right: -11rem; } - .\32xl\:left-3\.5 { - left: 0.875rem; + .\32xl\:-right-48 { + right: -12rem; } - .\32xl\:-top-0 { - top: 0px; + .\32xl\:-right-52 { + right: -13rem; } - .\32xl\:-right-0 { - right: 0px; + .\32xl\:-right-56 { + right: -14rem; } - .\32xl\:-bottom-0 { - bottom: 0px; + .\32xl\:-right-60 { + right: -15rem; } - .\32xl\:-left-0 { - left: 0px; + .\32xl\:-right-64 { + right: -16rem; } - .\32xl\:-top-1 { - top: -0.25rem; + .\32xl\:-right-72 { + right: -18rem; } - .\32xl\:-right-1 { - right: -0.25rem; + .\32xl\:-right-80 { + right: -20rem; } - .\32xl\:-bottom-1 { - bottom: -0.25rem; + .\32xl\:-right-96 { + right: -24rem; } - .\32xl\:-left-1 { - left: -0.25rem; + .\32xl\:-right-px { + right: -1px; } - .\32xl\:-top-2 { - top: -0.5rem; + .\32xl\:-right-0\.5 { + right: -0.125rem; } - .\32xl\:-right-2 { - right: -0.5rem; + .\32xl\:-right-1\.5 { + right: -0.375rem; } - .\32xl\:-bottom-2 { - bottom: -0.5rem; + .\32xl\:-right-2\.5 { + right: -0.625rem; } - .\32xl\:-left-2 { - left: -0.5rem; + .\32xl\:-right-3\.5 { + right: -0.875rem; } - .\32xl\:-top-3 { - top: -0.75rem; + .\32xl\:right-1\/2 { + right: 50%; } - .\32xl\:-right-3 { - right: -0.75rem; + .\32xl\:right-1\/3 { + right: 33.333333%; } - .\32xl\:-bottom-3 { - bottom: -0.75rem; + .\32xl\:right-2\/3 { + right: 66.666667%; } - .\32xl\:-left-3 { - left: -0.75rem; + .\32xl\:right-1\/4 { + right: 25%; } - .\32xl\:-top-4 { - top: -1rem; + .\32xl\:right-2\/4 { + right: 50%; } - .\32xl\:-right-4 { - right: -1rem; + .\32xl\:right-3\/4 { + right: 75%; } - .\32xl\:-bottom-4 { - bottom: -1rem; + .\32xl\:right-full { + right: 100%; } - .\32xl\:-left-4 { - left: -1rem; + .\32xl\:-right-1\/2 { + right: -50%; } - .\32xl\:-top-5 { - top: -1.25rem; + .\32xl\:-right-1\/3 { + right: -33.333333%; } - .\32xl\:-right-5 { - right: -1.25rem; + .\32xl\:-right-2\/3 { + right: -66.666667%; } - .\32xl\:-bottom-5 { - bottom: -1.25rem; + .\32xl\:-right-1\/4 { + right: -25%; } - .\32xl\:-left-5 { - left: -1.25rem; + .\32xl\:-right-2\/4 { + right: -50%; } - .\32xl\:-top-6 { - top: -1.5rem; + .\32xl\:-right-3\/4 { + right: -75%; } - .\32xl\:-right-6 { - right: -1.5rem; + .\32xl\:-right-full { + right: -100%; } - .\32xl\:-bottom-6 { - bottom: -1.5rem; + .\32xl\:bottom-0 { + bottom: 0px; } - .\32xl\:-left-6 { - left: -1.5rem; + .\32xl\:bottom-1 { + bottom: 0.25rem; } - .\32xl\:-top-7 { - top: -1.75rem; + .\32xl\:bottom-2 { + bottom: 0.5rem; } - .\32xl\:-right-7 { - right: -1.75rem; + .\32xl\:bottom-3 { + bottom: 0.75rem; } - .\32xl\:-bottom-7 { - bottom: -1.75rem; + .\32xl\:bottom-4 { + bottom: 1rem; } - .\32xl\:-left-7 { - left: -1.75rem; + .\32xl\:bottom-5 { + bottom: 1.25rem; } - .\32xl\:-top-8 { - top: -2rem; + .\32xl\:bottom-6 { + bottom: 1.5rem; } - .\32xl\:-right-8 { - right: -2rem; + .\32xl\:bottom-7 { + bottom: 1.75rem; } - .\32xl\:-bottom-8 { - bottom: -2rem; + .\32xl\:bottom-8 { + bottom: 2rem; } - .\32xl\:-left-8 { - left: -2rem; + .\32xl\:bottom-9 { + bottom: 2.25rem; } - .\32xl\:-top-9 { - top: -2.25rem; + .\32xl\:bottom-10 { + bottom: 2.5rem; } - .\32xl\:-right-9 { - right: -2.25rem; + .\32xl\:bottom-11 { + bottom: 2.75rem; } - .\32xl\:-bottom-9 { - bottom: -2.25rem; + .\32xl\:bottom-12 { + bottom: 3rem; } - .\32xl\:-left-9 { - left: -2.25rem; + .\32xl\:bottom-14 { + bottom: 3.5rem; } - .\32xl\:-top-10 { - top: -2.5rem; + .\32xl\:bottom-16 { + bottom: 4rem; } - .\32xl\:-right-10 { - right: -2.5rem; + .\32xl\:bottom-20 { + bottom: 5rem; } - .\32xl\:-bottom-10 { - bottom: -2.5rem; + .\32xl\:bottom-24 { + bottom: 6rem; } - .\32xl\:-left-10 { - left: -2.5rem; + .\32xl\:bottom-28 { + bottom: 7rem; } - .\32xl\:-top-11 { - top: -2.75rem; + .\32xl\:bottom-32 { + bottom: 8rem; } - .\32xl\:-right-11 { - right: -2.75rem; + .\32xl\:bottom-36 { + bottom: 9rem; } - .\32xl\:-bottom-11 { - bottom: -2.75rem; + .\32xl\:bottom-40 { + bottom: 10rem; } - .\32xl\:-left-11 { - left: -2.75rem; + .\32xl\:bottom-44 { + bottom: 11rem; } - .\32xl\:-top-12 { - top: -3rem; + .\32xl\:bottom-48 { + bottom: 12rem; } - .\32xl\:-right-12 { - right: -3rem; + .\32xl\:bottom-52 { + bottom: 13rem; } - .\32xl\:-bottom-12 { - bottom: -3rem; + .\32xl\:bottom-56 { + bottom: 14rem; } - .\32xl\:-left-12 { - left: -3rem; + .\32xl\:bottom-60 { + bottom: 15rem; } - .\32xl\:-top-14 { - top: -3.5rem; + .\32xl\:bottom-64 { + bottom: 16rem; } - .\32xl\:-right-14 { - right: -3.5rem; + .\32xl\:bottom-72 { + bottom: 18rem; } - .\32xl\:-bottom-14 { - bottom: -3.5rem; + .\32xl\:bottom-80 { + bottom: 20rem; } - .\32xl\:-left-14 { - left: -3.5rem; + .\32xl\:bottom-96 { + bottom: 24rem; } - .\32xl\:-top-16 { - top: -4rem; + .\32xl\:bottom-auto { + bottom: auto; } - .\32xl\:-right-16 { - right: -4rem; + .\32xl\:bottom-px { + bottom: 1px; } - .\32xl\:-bottom-16 { - bottom: -4rem; + .\32xl\:bottom-0\.5 { + bottom: 0.125rem; } - .\32xl\:-left-16 { - left: -4rem; + .\32xl\:bottom-1\.5 { + bottom: 0.375rem; } - .\32xl\:-top-20 { - top: -5rem; + .\32xl\:bottom-2\.5 { + bottom: 0.625rem; } - .\32xl\:-right-20 { - right: -5rem; + .\32xl\:bottom-3\.5 { + bottom: 0.875rem; } - .\32xl\:-bottom-20 { - bottom: -5rem; + .\32xl\:-bottom-0 { + bottom: 0px; } - .\32xl\:-left-20 { - left: -5rem; + .\32xl\:-bottom-1 { + bottom: -0.25rem; } - .\32xl\:-top-24 { - top: -6rem; + .\32xl\:-bottom-2 { + bottom: -0.5rem; } - .\32xl\:-right-24 { - right: -6rem; + .\32xl\:-bottom-3 { + bottom: -0.75rem; } - .\32xl\:-bottom-24 { - bottom: -6rem; + .\32xl\:-bottom-4 { + bottom: -1rem; } - .\32xl\:-left-24 { - left: -6rem; + .\32xl\:-bottom-5 { + bottom: -1.25rem; } - .\32xl\:-top-28 { - top: -7rem; + .\32xl\:-bottom-6 { + bottom: -1.5rem; } - .\32xl\:-right-28 { - right: -7rem; + .\32xl\:-bottom-7 { + bottom: -1.75rem; } - .\32xl\:-bottom-28 { - bottom: -7rem; + .\32xl\:-bottom-8 { + bottom: -2rem; } - .\32xl\:-left-28 { - left: -7rem; + .\32xl\:-bottom-9 { + bottom: -2.25rem; } - .\32xl\:-top-32 { - top: -8rem; + .\32xl\:-bottom-10 { + bottom: -2.5rem; } - .\32xl\:-right-32 { - right: -8rem; + .\32xl\:-bottom-11 { + bottom: -2.75rem; } - .\32xl\:-bottom-32 { - bottom: -8rem; + .\32xl\:-bottom-12 { + bottom: -3rem; } - .\32xl\:-left-32 { - left: -8rem; + .\32xl\:-bottom-14 { + bottom: -3.5rem; } - .\32xl\:-top-36 { - top: -9rem; + .\32xl\:-bottom-16 { + bottom: -4rem; } - .\32xl\:-right-36 { - right: -9rem; + .\32xl\:-bottom-20 { + bottom: -5rem; } - .\32xl\:-bottom-36 { - bottom: -9rem; + .\32xl\:-bottom-24 { + bottom: -6rem; } - .\32xl\:-left-36 { - left: -9rem; + .\32xl\:-bottom-28 { + bottom: -7rem; } - .\32xl\:-top-40 { - top: -10rem; + .\32xl\:-bottom-32 { + bottom: -8rem; } - .\32xl\:-right-40 { - right: -10rem; + .\32xl\:-bottom-36 { + bottom: -9rem; } .\32xl\:-bottom-40 { bottom: -10rem; } - .\32xl\:-left-40 { - left: -10rem; + .\32xl\:-bottom-44 { + bottom: -11rem; } - .\32xl\:-top-44 { - top: -11rem; + .\32xl\:-bottom-48 { + bottom: -12rem; } - .\32xl\:-right-44 { - right: -11rem; + .\32xl\:-bottom-52 { + bottom: -13rem; } - .\32xl\:-bottom-44 { - bottom: -11rem; + .\32xl\:-bottom-56 { + bottom: -14rem; } - .\32xl\:-left-44 { - left: -11rem; + .\32xl\:-bottom-60 { + bottom: -15rem; } - .\32xl\:-top-48 { - top: -12rem; + .\32xl\:-bottom-64 { + bottom: -16rem; } - .\32xl\:-right-48 { - right: -12rem; + .\32xl\:-bottom-72 { + bottom: -18rem; } - .\32xl\:-bottom-48 { - bottom: -12rem; + .\32xl\:-bottom-80 { + bottom: -20rem; } - .\32xl\:-left-48 { - left: -12rem; + .\32xl\:-bottom-96 { + bottom: -24rem; } - .\32xl\:-top-52 { - top: -13rem; + .\32xl\:-bottom-px { + bottom: -1px; } - .\32xl\:-right-52 { - right: -13rem; + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .\32xl\:-bottom-52 { - bottom: -13rem; + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .\32xl\:-left-52 { - left: -13rem; + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .\32xl\:-top-56 { - top: -14rem; + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .\32xl\:-right-56 { - right: -14rem; + .\32xl\:bottom-1\/2 { + bottom: 50%; } - .\32xl\:-bottom-56 { - bottom: -14rem; + .\32xl\:bottom-1\/3 { + bottom: 33.333333%; } - .\32xl\:-left-56 { - left: -14rem; + .\32xl\:bottom-2\/3 { + bottom: 66.666667%; } - .\32xl\:-top-60 { - top: -15rem; + .\32xl\:bottom-1\/4 { + bottom: 25%; } - .\32xl\:-right-60 { - right: -15rem; + .\32xl\:bottom-2\/4 { + bottom: 50%; } - .\32xl\:-bottom-60 { - bottom: -15rem; + .\32xl\:bottom-3\/4 { + bottom: 75%; } - .\32xl\:-left-60 { - left: -15rem; + .\32xl\:bottom-full { + bottom: 100%; } - .\32xl\:-top-64 { - top: -16rem; + .\32xl\:-bottom-1\/2 { + bottom: -50%; } - .\32xl\:-right-64 { - right: -16rem; + .\32xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .\32xl\:-bottom-64 { - bottom: -16rem; + .\32xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .\32xl\:-left-64 { - left: -16rem; + .\32xl\:-bottom-1\/4 { + bottom: -25%; } - .\32xl\:-top-72 { - top: -18rem; + .\32xl\:-bottom-2\/4 { + bottom: -50%; } - .\32xl\:-right-72 { - right: -18rem; + .\32xl\:-bottom-3\/4 { + bottom: -75%; } - .\32xl\:-bottom-72 { - bottom: -18rem; + .\32xl\:-bottom-full { + bottom: -100%; } - .\32xl\:-left-72 { - left: -18rem; + .\32xl\:left-0 { + left: 0px; } - .\32xl\:-top-80 { - top: -20rem; + .\32xl\:left-1 { + left: 0.25rem; } - .\32xl\:-right-80 { - right: -20rem; + .\32xl\:left-2 { + left: 0.5rem; } - .\32xl\:-bottom-80 { - bottom: -20rem; + .\32xl\:left-3 { + left: 0.75rem; } - .\32xl\:-left-80 { - left: -20rem; + .\32xl\:left-4 { + left: 1rem; } - .\32xl\:-top-96 { - top: -24rem; + .\32xl\:left-5 { + left: 1.25rem; } - .\32xl\:-right-96 { - right: -24rem; + .\32xl\:left-6 { + left: 1.5rem; } - .\32xl\:-bottom-96 { - bottom: -24rem; + .\32xl\:left-7 { + left: 1.75rem; } - .\32xl\:-left-96 { - left: -24rem; + .\32xl\:left-8 { + left: 2rem; } - .\32xl\:-top-px { - top: -1px; + .\32xl\:left-9 { + left: 2.25rem; } - .\32xl\:-right-px { - right: -1px; + .\32xl\:left-10 { + left: 2.5rem; } - .\32xl\:-bottom-px { - bottom: -1px; + .\32xl\:left-11 { + left: 2.75rem; } - .\32xl\:-left-px { - left: -1px; + .\32xl\:left-12 { + left: 3rem; } - .\32xl\:-top-0\.5 { - top: -0.125rem; + .\32xl\:left-14 { + left: 3.5rem; } - .\32xl\:-right-0\.5 { - right: -0.125rem; + .\32xl\:left-16 { + left: 4rem; } - .\32xl\:-bottom-0\.5 { - bottom: -0.125rem; + .\32xl\:left-20 { + left: 5rem; } - .\32xl\:-left-0\.5 { - left: -0.125rem; + .\32xl\:left-24 { + left: 6rem; } - .\32xl\:-top-1\.5 { - top: -0.375rem; + .\32xl\:left-28 { + left: 7rem; } - .\32xl\:-right-1\.5 { - right: -0.375rem; + .\32xl\:left-32 { + left: 8rem; } - .\32xl\:-bottom-1\.5 { - bottom: -0.375rem; + .\32xl\:left-36 { + left: 9rem; } - .\32xl\:-left-1\.5 { - left: -0.375rem; + .\32xl\:left-40 { + left: 10rem; } - .\32xl\:-top-2\.5 { - top: -0.625rem; + .\32xl\:left-44 { + left: 11rem; } - .\32xl\:-right-2\.5 { - right: -0.625rem; + .\32xl\:left-48 { + left: 12rem; } - .\32xl\:-bottom-2\.5 { - bottom: -0.625rem; + .\32xl\:left-52 { + left: 13rem; } - .\32xl\:-left-2\.5 { - left: -0.625rem; + .\32xl\:left-56 { + left: 14rem; } - .\32xl\:-top-3\.5 { - top: -0.875rem; + .\32xl\:left-60 { + left: 15rem; } - .\32xl\:-right-3\.5 { - right: -0.875rem; + .\32xl\:left-64 { + left: 16rem; } - .\32xl\:-bottom-3\.5 { - bottom: -0.875rem; + .\32xl\:left-72 { + left: 18rem; } - .\32xl\:-left-3\.5 { - left: -0.875rem; + .\32xl\:left-80 { + left: 20rem; } - .\32xl\:top-1\/2 { - top: 50%; + .\32xl\:left-96 { + left: 24rem; } - .\32xl\:right-1\/2 { - right: 50%; + .\32xl\:left-auto { + left: auto; } - .\32xl\:bottom-1\/2 { - bottom: 50%; + .\32xl\:left-px { + left: 1px; } - .\32xl\:left-1\/2 { - left: 50%; + .\32xl\:left-0\.5 { + left: 0.125rem; } - .\32xl\:top-1\/3 { - top: 33.333333%; + .\32xl\:left-1\.5 { + left: 0.375rem; } - .\32xl\:right-1\/3 { - right: 33.333333%; + .\32xl\:left-2\.5 { + left: 0.625rem; } - .\32xl\:bottom-1\/3 { - bottom: 33.333333%; + .\32xl\:left-3\.5 { + left: 0.875rem; } - .\32xl\:left-1\/3 { - left: 33.333333%; + .\32xl\:-left-0 { + left: 0px; } - .\32xl\:top-2\/3 { - top: 66.666667%; + .\32xl\:-left-1 { + left: -0.25rem; } - .\32xl\:right-2\/3 { - right: 66.666667%; + .\32xl\:-left-2 { + left: -0.5rem; } - .\32xl\:bottom-2\/3 { - bottom: 66.666667%; + .\32xl\:-left-3 { + left: -0.75rem; } - .\32xl\:left-2\/3 { - left: 66.666667%; + .\32xl\:-left-4 { + left: -1rem; } - .\32xl\:top-1\/4 { - top: 25%; + .\32xl\:-left-5 { + left: -1.25rem; } - .\32xl\:right-1\/4 { - right: 25%; + .\32xl\:-left-6 { + left: -1.5rem; } - .\32xl\:bottom-1\/4 { - bottom: 25%; + .\32xl\:-left-7 { + left: -1.75rem; } - .\32xl\:left-1\/4 { - left: 25%; + .\32xl\:-left-8 { + left: -2rem; } - .\32xl\:top-2\/4 { - top: 50%; + .\32xl\:-left-9 { + left: -2.25rem; } - .\32xl\:right-2\/4 { - right: 50%; + .\32xl\:-left-10 { + left: -2.5rem; } - .\32xl\:bottom-2\/4 { - bottom: 50%; + .\32xl\:-left-11 { + left: -2.75rem; } - .\32xl\:left-2\/4 { - left: 50%; + .\32xl\:-left-12 { + left: -3rem; } - .\32xl\:top-3\/4 { - top: 75%; + .\32xl\:-left-14 { + left: -3.5rem; } - .\32xl\:right-3\/4 { - right: 75%; + .\32xl\:-left-16 { + left: -4rem; } - .\32xl\:bottom-3\/4 { - bottom: 75%; + .\32xl\:-left-20 { + left: -5rem; } - .\32xl\:left-3\/4 { - left: 75%; + .\32xl\:-left-24 { + left: -6rem; } - .\32xl\:top-full { - top: 100%; + .\32xl\:-left-28 { + left: -7rem; } - .\32xl\:right-full { - right: 100%; + .\32xl\:-left-32 { + left: -8rem; } - .\32xl\:bottom-full { - bottom: 100%; + .\32xl\:-left-36 { + left: -9rem; } - .\32xl\:left-full { - left: 100%; + .\32xl\:-left-40 { + left: -10rem; } - .\32xl\:-top-1\/2 { - top: -50%; + .\32xl\:-left-44 { + left: -11rem; } - .\32xl\:-right-1\/2 { - right: -50%; + .\32xl\:-left-48 { + left: -12rem; } - .\32xl\:-bottom-1\/2 { - bottom: -50%; + .\32xl\:-left-52 { + left: -13rem; } - .\32xl\:-left-1\/2 { - left: -50%; + .\32xl\:-left-56 { + left: -14rem; } - .\32xl\:-top-1\/3 { - top: -33.333333%; + .\32xl\:-left-60 { + left: -15rem; } - .\32xl\:-right-1\/3 { - right: -33.333333%; + .\32xl\:-left-64 { + left: -16rem; } - .\32xl\:-bottom-1\/3 { - bottom: -33.333333%; + .\32xl\:-left-72 { + left: -18rem; } - .\32xl\:-left-1\/3 { - left: -33.333333%; + .\32xl\:-left-80 { + left: -20rem; } - .\32xl\:-top-2\/3 { - top: -66.666667%; + .\32xl\:-left-96 { + left: -24rem; } - .\32xl\:-right-2\/3 { - right: -66.666667%; + .\32xl\:-left-px { + left: -1px; } - .\32xl\:-bottom-2\/3 { - bottom: -66.666667%; + .\32xl\:-left-0\.5 { + left: -0.125rem; } - .\32xl\:-left-2\/3 { - left: -66.666667%; + .\32xl\:-left-1\.5 { + left: -0.375rem; } - .\32xl\:-top-1\/4 { - top: -25%; + .\32xl\:-left-2\.5 { + left: -0.625rem; } - .\32xl\:-right-1\/4 { - right: -25%; + .\32xl\:-left-3\.5 { + left: -0.875rem; } - .\32xl\:-bottom-1\/4 { - bottom: -25%; + .\32xl\:left-1\/2 { + left: 50%; } - .\32xl\:-left-1\/4 { - left: -25%; + .\32xl\:left-1\/3 { + left: 33.333333%; } - .\32xl\:-top-2\/4 { - top: -50%; + .\32xl\:left-2\/3 { + left: 66.666667%; } - .\32xl\:-right-2\/4 { - right: -50%; + .\32xl\:left-1\/4 { + left: 25%; } - .\32xl\:-bottom-2\/4 { - bottom: -50%; + .\32xl\:left-2\/4 { + left: 50%; } - .\32xl\:-left-2\/4 { - left: -50%; + .\32xl\:left-3\/4 { + left: 75%; } - .\32xl\:-top-3\/4 { - top: -75%; + .\32xl\:left-full { + left: 100%; } - .\32xl\:-right-3\/4 { - right: -75%; + .\32xl\:-left-1\/2 { + left: -50%; } - .\32xl\:-bottom-3\/4 { - bottom: -75%; + .\32xl\:-left-1\/3 { + left: -33.333333%; } - .\32xl\:-left-3\/4 { - left: -75%; + .\32xl\:-left-2\/3 { + left: -66.666667%; } - .\32xl\:-top-full { - top: -100%; + .\32xl\:-left-1\/4 { + left: -25%; } - .\32xl\:-right-full { - right: -100%; + .\32xl\:-left-2\/4 { + left: -50%; } - .\32xl\:-bottom-full { - bottom: -100%; + .\32xl\:-left-3\/4 { + left: -75%; } .\32xl\:-left-full { @@ -155283,133 +155411,183 @@ video { --tw-scale-y: 1.5; } - .\32xl\:scale-x-0 { + .\32xl\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:scale-x-50 { + .\32xl\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:scale-x-75 { + .\32xl\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:scale-x-90 { + .\32xl\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:scale-x-95 { + .\32xl\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:scale-x-100 { + .\32xl\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:scale-x-105 { + .\32xl\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:scale-x-110 { + .\32xl\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:scale-x-125 { + .\32xl\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:scale-x-150 { + .\32xl\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:scale-y-0 { + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .\32xl\:scale-y-50 { + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .\32xl\:scale-y-75 { + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .\32xl\:scale-y-90 { + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .\32xl\:scale-y-95 { + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .\32xl\:scale-y-100 { + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .\32xl\:scale-y-105 { + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .\32xl\:scale-y-110 { + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .\32xl\:scale-y-125 { + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .\32xl\:scale-y-150 { + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .\32xl\:hover\:scale-0:hover { + .\32xl\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .\32xl\:hover\:scale-50:hover { + .\32xl\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .\32xl\:hover\:scale-75:hover { + .\32xl\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .\32xl\:hover\:scale-90:hover { + .\32xl\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .\32xl\:hover\:scale-95:hover { + .\32xl\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .\32xl\:hover\:scale-100:hover { + .\32xl\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .\32xl\:hover\:scale-105:hover { + .\32xl\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .\32xl\:hover\:scale-110:hover { + .\32xl\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .\32xl\:hover\:scale-125:hover { + .\32xl\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .\32xl\:hover\:scale-150:hover { + .\32xl\:scale-x-150 { --tw-scale-x: 1.5; + } + + .\32xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .\32xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .\32xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .\32xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .\32xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .\32xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .\32xl\:scale-y-150 { --tw-scale-y: 1.5; } @@ -155493,56 +155671,6 @@ video { --tw-scale-y: 1.5; } - .\32xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .\32xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .\32xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .\32xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .\32xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .\32xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .\32xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .\32xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .\32xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .\32xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .\32xl\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -156435,436 +156563,640 @@ video { row-gap: 0.875rem; } - .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .\32xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -156873,408 +157205,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -157283,66 +157411,66 @@ video { --tw-space-x-reverse: 1; } - .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -163756,2188 +163884,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .\32xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .\32xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .\32xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .\32xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .\32xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .\32xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .\32xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .\32xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .\32xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .\32xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .\32xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .\32xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .\32xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .\32xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .\32xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .\32xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .\32xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .\32xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .\32xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .\32xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .\32xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .\32xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .\32xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .\32xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .\32xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .\32xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .\32xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .\32xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .\32xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .\32xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .\32xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .\32xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .\32xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .\32xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .\32xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .\32xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .\32xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .\32xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .\32xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .\32xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .\32xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .\32xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .\32xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .\32xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .\32xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .\32xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .\32xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .\32xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .\32xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .\32xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .\32xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .\32xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .\32xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .\32xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .\32xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .\32xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .\32xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .\32xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .\32xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .\32xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .\32xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .\32xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .\32xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .\32xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .\32xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .\32xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .\32xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .\32xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .\32xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .\32xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .\32xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .\32xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .\32xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .\32xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .\32xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .\32xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .\32xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .\32xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .\32xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .\32xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .\32xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .\32xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .\32xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .\32xl\:to-transparent { - --tw-gradient-to: transparent; + .\32xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:to-current { - --tw-gradient-to: currentColor; + .\32xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:to-black { - --tw-gradient-to: #000; + .\32xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:to-white { - --tw-gradient-to: #fff; + .\32xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .\32xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .\32xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .\32xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .\32xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .\32xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .\32xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .\32xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:to-gray-700 { - --tw-gradient-to: #374151; + .\32xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .\32xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:to-gray-900 { - --tw-gradient-to: #111827; + .\32xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .\32xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .\32xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .\32xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .\32xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:to-red-400 { - --tw-gradient-to: #f87171; + .\32xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .\32xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .\32xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .\32xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .\32xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .\32xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .\32xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .\32xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .\32xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .\32xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .\32xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .\32xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .\32xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .\32xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .\32xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .\32xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .\32xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .\32xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .\32xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .\32xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:to-green-400 { - --tw-gradient-to: #34d399; + .\32xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:to-green-500 { - --tw-gradient-to: #10b981; + .\32xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:to-green-600 { - --tw-gradient-to: #059669; + .\32xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:to-green-700 { - --tw-gradient-to: #047857; + .\32xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:to-green-800 { - --tw-gradient-to: #065f46; + .\32xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .\32xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .\32xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .\32xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .\32xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .\32xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .\32xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .\32xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .\32xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .\32xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .\32xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .\32xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .\32xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .\32xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .\32xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .\32xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .\32xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .\32xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .\32xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .\32xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .\32xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .\32xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .\32xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .\32xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .\32xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .\32xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .\32xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .\32xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .\32xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .\32xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .\32xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .\32xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .\32xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .\32xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .\32xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .\32xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .\32xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .\32xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .\32xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .\32xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .\32xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:to-pink-900 { - --tw-gradient-to: #831843; + .\32xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:hover\:from-transparent:hover { + .\32xl\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:from-current:hover { + .\32xl\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:from-black:hover { + .\32xl\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:from-white:hover { + .\32xl\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:from-gray-50:hover { + .\32xl\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:hover\:from-gray-100:hover { + .\32xl\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:hover\:from-gray-200:hover { + .\32xl\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:hover\:from-gray-300:hover { + .\32xl\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:hover\:from-gray-400:hover { + .\32xl\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:hover\:from-gray-500:hover { + .\32xl\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:hover\:from-gray-600:hover { + .\32xl\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:hover\:from-gray-700:hover { + .\32xl\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:hover\:from-gray-800:hover { + .\32xl\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:hover\:from-gray-900:hover { + .\32xl\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:hover\:from-red-50:hover { + .\32xl\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:hover\:from-red-100:hover { + .\32xl\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:hover\:from-red-200:hover { + .\32xl\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:hover\:from-red-300:hover { + .\32xl\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:hover\:from-red-400:hover { + .\32xl\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:hover\:from-red-500:hover { + .\32xl\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:hover\:from-red-600:hover { + .\32xl\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:hover\:from-red-700:hover { + .\32xl\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:hover\:from-red-800:hover { + .\32xl\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:hover\:from-red-900:hover { + .\32xl\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:hover\:from-yellow-50:hover { + .\32xl\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:hover\:from-yellow-100:hover { + .\32xl\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:hover\:from-yellow-200:hover { + .\32xl\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:hover\:from-yellow-300:hover { + .\32xl\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:hover\:from-yellow-400:hover { + .\32xl\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:hover\:from-yellow-500:hover { + .\32xl\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:hover\:from-yellow-600:hover { + .\32xl\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:hover\:from-yellow-700:hover { + .\32xl\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:hover\:from-yellow-800:hover { + .\32xl\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:hover\:from-yellow-900:hover { + .\32xl\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:hover\:from-green-50:hover { + .\32xl\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:hover\:from-green-100:hover { + .\32xl\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:hover\:from-green-200:hover { + .\32xl\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:hover\:from-green-300:hover { + .\32xl\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:hover\:from-green-400:hover { + .\32xl\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:hover\:from-green-500:hover { + .\32xl\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:hover\:from-green-600:hover { + .\32xl\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:hover\:from-green-700:hover { + .\32xl\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:hover\:from-green-800:hover { + .\32xl\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:hover\:from-green-900:hover { + .\32xl\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:hover\:from-blue-50:hover { + .\32xl\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:hover\:from-blue-100:hover { + .\32xl\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:hover\:from-blue-200:hover { + .\32xl\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:hover\:from-blue-300:hover { + .\32xl\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:hover\:from-blue-400:hover { + .\32xl\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:hover\:from-blue-500:hover { + .\32xl\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:hover\:from-blue-600:hover { + .\32xl\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:hover\:from-blue-700:hover { + .\32xl\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:hover\:from-blue-800:hover { + .\32xl\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:hover\:from-blue-900:hover { + .\32xl\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:hover\:from-indigo-50:hover { + .\32xl\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:hover\:from-indigo-100:hover { + .\32xl\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:hover\:from-indigo-200:hover { + .\32xl\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:hover\:from-indigo-300:hover { + .\32xl\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:hover\:from-indigo-400:hover { + .\32xl\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:hover\:from-indigo-500:hover { + .\32xl\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:hover\:from-indigo-600:hover { + .\32xl\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:hover\:from-indigo-700:hover { + .\32xl\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:hover\:from-indigo-800:hover { + .\32xl\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:hover\:from-indigo-900:hover { + .\32xl\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:hover\:from-purple-50:hover { + .\32xl\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:hover\:from-purple-100:hover { + .\32xl\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:hover\:from-purple-200:hover { + .\32xl\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:hover\:from-purple-300:hover { + .\32xl\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:hover\:from-purple-400:hover { + .\32xl\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:hover\:from-purple-500:hover { + .\32xl\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:hover\:from-purple-600:hover { + .\32xl\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:hover\:from-purple-700:hover { + .\32xl\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:hover\:from-purple-800:hover { + .\32xl\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:hover\:from-purple-900:hover { + .\32xl\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:hover\:from-pink-50:hover { + .\32xl\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:hover\:from-pink-100:hover { + .\32xl\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:hover\:from-pink-200:hover { + .\32xl\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:hover\:from-pink-300:hover { + .\32xl\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:hover\:from-pink-400:hover { + .\32xl\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:hover\:from-pink-500:hover { + .\32xl\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:hover\:from-pink-600:hover { + .\32xl\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:hover\:from-pink-700:hover { + .\32xl\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:hover\:from-pink-800:hover { + .\32xl\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:hover\:from-pink-900:hover { + .\32xl\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:hover\:via-transparent:hover { + .\32xl\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:via-current:hover { + .\32xl\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:via-black:hover { + .\32xl\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:via-white:hover { + .\32xl\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:via-gray-50:hover { + .\32xl\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:hover\:via-gray-100:hover { + .\32xl\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:hover\:via-gray-200:hover { + .\32xl\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:hover\:via-gray-300:hover { + .\32xl\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:hover\:via-gray-400:hover { + .\32xl\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:hover\:via-gray-500:hover { + .\32xl\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:hover\:via-gray-600:hover { + .\32xl\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:hover\:via-gray-700:hover { + .\32xl\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:hover\:via-gray-800:hover { + .\32xl\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:hover\:via-gray-900:hover { + .\32xl\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:hover\:via-red-50:hover { + .\32xl\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:hover\:via-red-100:hover { + .\32xl\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:hover\:via-red-200:hover { + .\32xl\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:hover\:via-red-300:hover { + .\32xl\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:hover\:via-red-400:hover { + .\32xl\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:hover\:via-red-500:hover { + .\32xl\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:hover\:via-red-600:hover { + .\32xl\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:hover\:via-red-700:hover { + .\32xl\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:hover\:via-red-800:hover { + .\32xl\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:hover\:via-red-900:hover { + .\32xl\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:hover\:via-yellow-50:hover { + .\32xl\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:hover\:via-yellow-100:hover { + .\32xl\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:hover\:via-yellow-200:hover { + .\32xl\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:hover\:via-yellow-300:hover { + .\32xl\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:hover\:via-yellow-400:hover { + .\32xl\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:hover\:via-yellow-500:hover { + .\32xl\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:hover\:via-yellow-600:hover { + .\32xl\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:hover\:via-yellow-700:hover { + .\32xl\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:hover\:via-yellow-800:hover { + .\32xl\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:hover\:via-yellow-900:hover { + .\32xl\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:hover\:via-green-50:hover { + .\32xl\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:hover\:via-green-100:hover { + .\32xl\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:hover\:via-green-200:hover { + .\32xl\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:hover\:via-green-300:hover { + .\32xl\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:hover\:via-green-400:hover { + .\32xl\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:hover\:via-green-500:hover { + .\32xl\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:hover\:via-green-600:hover { + .\32xl\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:hover\:via-green-700:hover { + .\32xl\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:hover\:via-green-800:hover { + .\32xl\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:hover\:via-green-900:hover { + .\32xl\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:hover\:via-blue-50:hover { + .\32xl\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:hover\:via-blue-100:hover { + .\32xl\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:hover\:via-blue-200:hover { + .\32xl\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:hover\:via-blue-300:hover { + .\32xl\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:hover\:via-blue-400:hover { + .\32xl\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:hover\:via-blue-500:hover { + .\32xl\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:hover\:via-blue-600:hover { + .\32xl\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:hover\:via-blue-700:hover { + .\32xl\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:hover\:via-blue-800:hover { + .\32xl\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:hover\:via-blue-900:hover { + .\32xl\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:hover\:via-indigo-50:hover { + .\32xl\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:hover\:via-indigo-100:hover { + .\32xl\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:hover\:via-indigo-200:hover { + .\32xl\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:hover\:via-indigo-300:hover { + .\32xl\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:hover\:via-indigo-400:hover { + .\32xl\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:hover\:via-indigo-500:hover { + .\32xl\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:hover\:via-indigo-600:hover { + .\32xl\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:hover\:via-indigo-700:hover { + .\32xl\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:hover\:via-indigo-800:hover { + .\32xl\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:hover\:via-indigo-900:hover { + .\32xl\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:hover\:via-purple-50:hover { + .\32xl\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:hover\:via-purple-100:hover { + .\32xl\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:hover\:via-purple-200:hover { + .\32xl\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:hover\:via-purple-300:hover { + .\32xl\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:hover\:via-purple-400:hover { + .\32xl\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:hover\:via-purple-500:hover { + .\32xl\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:hover\:via-purple-600:hover { + .\32xl\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:hover\:via-purple-700:hover { + .\32xl\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:hover\:via-purple-800:hover { + .\32xl\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:hover\:via-purple-900:hover { + .\32xl\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:hover\:via-pink-50:hover { + .\32xl\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:hover\:via-pink-100:hover { + .\32xl\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:hover\:via-pink-200:hover { + .\32xl\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:hover\:via-pink-300:hover { + .\32xl\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:hover\:via-pink-400:hover { + .\32xl\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:hover\:via-pink-500:hover { + .\32xl\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:hover\:via-pink-600:hover { + .\32xl\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:hover\:via-pink-700:hover { + .\32xl\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:hover\:via-pink-800:hover { + .\32xl\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:hover\:via-pink-900:hover { + .\32xl\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .\32xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .\32xl\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .\32xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .\32xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .\32xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .\32xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .\32xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .\32xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .\32xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .\32xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .\32xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .\32xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .\32xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .\32xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .\32xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .\32xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .\32xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .\32xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .\32xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .\32xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .\32xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .\32xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .\32xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .\32xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .\32xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .\32xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .\32xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .\32xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .\32xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .\32xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .\32xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .\32xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .\32xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .\32xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .\32xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .\32xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .\32xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .\32xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .\32xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .\32xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .\32xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .\32xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .\32xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .\32xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .\32xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .\32xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .\32xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .\32xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .\32xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .\32xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .\32xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .\32xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .\32xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .\32xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .\32xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .\32xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .\32xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .\32xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .\32xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .\32xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .\32xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .\32xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .\32xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .\32xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .\32xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .\32xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .\32xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .\32xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .\32xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .\32xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .\32xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .\32xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .\32xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .\32xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .\32xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .\32xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .\32xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .\32xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .\32xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .\32xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .\32xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .\32xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .\32xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .\32xl\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .\32xl\:focus\:via-transparent:focus { @@ -166276,6 +165732,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .\32xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .\32xl\:to-current { + --tw-gradient-to: currentColor; + } + + .\32xl\:to-black { + --tw-gradient-to: #000; + } + + .\32xl\:to-white { + --tw-gradient-to: #fff; + } + + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .\32xl\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .\32xl\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .\32xl\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .\32xl\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .\32xl\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .\32xl\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .\32xl\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .\32xl\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .\32xl\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .\32xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .\32xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .\32xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .\32xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .\32xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .\32xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .\32xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .\32xl\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .\32xl\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .\32xl\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .\32xl\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .\32xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .\32xl\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .\32xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .\32xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .\32xl\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .\32xl\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .\32xl\:to-green-600 { + --tw-gradient-to: #059669; + } + + .\32xl\:to-green-700 { + --tw-gradient-to: #047857; + } + + .\32xl\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .\32xl\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .\32xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .\32xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .\32xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .\32xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .\32xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .\32xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .\32xl\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .\32xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .\32xl\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .\32xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .\32xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .\32xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .\32xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .\32xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .\32xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .\32xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .\32xl\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .\32xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .\32xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .\32xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .\32xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .\32xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .\32xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .\32xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .\32xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .\32xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .\32xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .\32xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .\32xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .\32xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .\32xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .\32xl\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .\32xl\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .\32xl\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .\32xl\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .\32xl\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .\32xl\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .\32xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .\32xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .\32xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .\32xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .\32xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .\32xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .\32xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .\32xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .\32xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .\32xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .\32xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .\32xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .\32xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .\32xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .\32xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .\32xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .\32xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .\32xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .\32xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .\32xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .\32xl\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -172285,10 +172413,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:ring-inset { - --tw-ring-inset: inset; - } - .\32xl\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -172325,10 +172449,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .\32xl\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -172365,6 +172485,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .\32xl\:ring-inset { + --tw-ring-inset: inset; + } + + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .\32xl\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -175125,6 +175253,38 @@ video { backdrop-filter: none; } + .\32xl\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .\32xl\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .\32xl\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .\32xl\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .\32xl\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .\32xl\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .\32xl\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .\32xl\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .\32xl\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } diff --git a/tests/fixtures/tailwind-output-important.css b/tests/fixtures/tailwind-output-important.css index 7e91b743a8c7..60363f45fabd 100644 --- a/tests/fixtures/tailwind-output-important.css +++ b/tests/fixtures/tailwind-output-important.css @@ -1273,14 +1273,434 @@ video { left: -100% !important; } -.inset-y-0 { - top: 0px !important; - bottom: 0px !important; -} - .inset-x-0 { + left: 0px !important; right: 0px !important; +} + +.inset-x-1 { + left: 0.25rem !important; + right: 0.25rem !important; +} + +.inset-x-2 { + left: 0.5rem !important; + right: 0.5rem !important; +} + +.inset-x-3 { + left: 0.75rem !important; + right: 0.75rem !important; +} + +.inset-x-4 { + left: 1rem !important; + right: 1rem !important; +} + +.inset-x-5 { + left: 1.25rem !important; + right: 1.25rem !important; +} + +.inset-x-6 { + left: 1.5rem !important; + right: 1.5rem !important; +} + +.inset-x-7 { + left: 1.75rem !important; + right: 1.75rem !important; +} + +.inset-x-8 { + left: 2rem !important; + right: 2rem !important; +} + +.inset-x-9 { + left: 2.25rem !important; + right: 2.25rem !important; +} + +.inset-x-10 { + left: 2.5rem !important; + right: 2.5rem !important; +} + +.inset-x-11 { + left: 2.75rem !important; + right: 2.75rem !important; +} + +.inset-x-12 { + left: 3rem !important; + right: 3rem !important; +} + +.inset-x-14 { + left: 3.5rem !important; + right: 3.5rem !important; +} + +.inset-x-16 { + left: 4rem !important; + right: 4rem !important; +} + +.inset-x-20 { + left: 5rem !important; + right: 5rem !important; +} + +.inset-x-24 { + left: 6rem !important; + right: 6rem !important; +} + +.inset-x-28 { + left: 7rem !important; + right: 7rem !important; +} + +.inset-x-32 { + left: 8rem !important; + right: 8rem !important; +} + +.inset-x-36 { + left: 9rem !important; + right: 9rem !important; +} + +.inset-x-40 { + left: 10rem !important; + right: 10rem !important; +} + +.inset-x-44 { + left: 11rem !important; + right: 11rem !important; +} + +.inset-x-48 { + left: 12rem !important; + right: 12rem !important; +} + +.inset-x-52 { + left: 13rem !important; + right: 13rem !important; +} + +.inset-x-56 { + left: 14rem !important; + right: 14rem !important; +} + +.inset-x-60 { + left: 15rem !important; + right: 15rem !important; +} + +.inset-x-64 { + left: 16rem !important; + right: 16rem !important; +} + +.inset-x-72 { + left: 18rem !important; + right: 18rem !important; +} + +.inset-x-80 { + left: 20rem !important; + right: 20rem !important; +} + +.inset-x-96 { + left: 24rem !important; + right: 24rem !important; +} + +.inset-x-auto { + left: auto !important; + right: auto !important; +} + +.inset-x-px { + left: 1px !important; + right: 1px !important; +} + +.inset-x-0\.5 { + left: 0.125rem !important; + right: 0.125rem !important; +} + +.inset-x-1\.5 { + left: 0.375rem !important; + right: 0.375rem !important; +} + +.inset-x-2\.5 { + left: 0.625rem !important; + right: 0.625rem !important; +} + +.inset-x-3\.5 { + left: 0.875rem !important; + right: 0.875rem !important; +} + +.-inset-x-0 { left: 0px !important; + right: 0px !important; +} + +.-inset-x-1 { + left: -0.25rem !important; + right: -0.25rem !important; +} + +.-inset-x-2 { + left: -0.5rem !important; + right: -0.5rem !important; +} + +.-inset-x-3 { + left: -0.75rem !important; + right: -0.75rem !important; +} + +.-inset-x-4 { + left: -1rem !important; + right: -1rem !important; +} + +.-inset-x-5 { + left: -1.25rem !important; + right: -1.25rem !important; +} + +.-inset-x-6 { + left: -1.5rem !important; + right: -1.5rem !important; +} + +.-inset-x-7 { + left: -1.75rem !important; + right: -1.75rem !important; +} + +.-inset-x-8 { + left: -2rem !important; + right: -2rem !important; +} + +.-inset-x-9 { + left: -2.25rem !important; + right: -2.25rem !important; +} + +.-inset-x-10 { + left: -2.5rem !important; + right: -2.5rem !important; +} + +.-inset-x-11 { + left: -2.75rem !important; + right: -2.75rem !important; +} + +.-inset-x-12 { + left: -3rem !important; + right: -3rem !important; +} + +.-inset-x-14 { + left: -3.5rem !important; + right: -3.5rem !important; +} + +.-inset-x-16 { + left: -4rem !important; + right: -4rem !important; +} + +.-inset-x-20 { + left: -5rem !important; + right: -5rem !important; +} + +.-inset-x-24 { + left: -6rem !important; + right: -6rem !important; +} + +.-inset-x-28 { + left: -7rem !important; + right: -7rem !important; +} + +.-inset-x-32 { + left: -8rem !important; + right: -8rem !important; +} + +.-inset-x-36 { + left: -9rem !important; + right: -9rem !important; +} + +.-inset-x-40 { + left: -10rem !important; + right: -10rem !important; +} + +.-inset-x-44 { + left: -11rem !important; + right: -11rem !important; +} + +.-inset-x-48 { + left: -12rem !important; + right: -12rem !important; +} + +.-inset-x-52 { + left: -13rem !important; + right: -13rem !important; +} + +.-inset-x-56 { + left: -14rem !important; + right: -14rem !important; +} + +.-inset-x-60 { + left: -15rem !important; + right: -15rem !important; +} + +.-inset-x-64 { + left: -16rem !important; + right: -16rem !important; +} + +.-inset-x-72 { + left: -18rem !important; + right: -18rem !important; +} + +.-inset-x-80 { + left: -20rem !important; + right: -20rem !important; +} + +.-inset-x-96 { + left: -24rem !important; + right: -24rem !important; +} + +.-inset-x-px { + left: -1px !important; + right: -1px !important; +} + +.-inset-x-0\.5 { + left: -0.125rem !important; + right: -0.125rem !important; +} + +.-inset-x-1\.5 { + left: -0.375rem !important; + right: -0.375rem !important; +} + +.-inset-x-2\.5 { + left: -0.625rem !important; + right: -0.625rem !important; +} + +.-inset-x-3\.5 { + left: -0.875rem !important; + right: -0.875rem !important; +} + +.inset-x-1\/2 { + left: 50% !important; + right: 50% !important; +} + +.inset-x-1\/3 { + left: 33.333333% !important; + right: 33.333333% !important; +} + +.inset-x-2\/3 { + left: 66.666667% !important; + right: 66.666667% !important; +} + +.inset-x-1\/4 { + left: 25% !important; + right: 25% !important; +} + +.inset-x-2\/4 { + left: 50% !important; + right: 50% !important; +} + +.inset-x-3\/4 { + left: 75% !important; + right: 75% !important; +} + +.inset-x-full { + left: 100% !important; + right: 100% !important; +} + +.-inset-x-1\/2 { + left: -50% !important; + right: -50% !important; +} + +.-inset-x-1\/3 { + left: -33.333333% !important; + right: -33.333333% !important; +} + +.-inset-x-2\/3 { + left: -66.666667% !important; + right: -66.666667% !important; +} + +.-inset-x-1\/4 { + left: -25% !important; + right: -25% !important; +} + +.-inset-x-2\/4 { + left: -50% !important; + right: -50% !important; +} + +.-inset-x-3\/4 { + left: -75% !important; + right: -75% !important; +} + +.-inset-x-full { + left: -100% !important; + right: -100% !important; +} + +.inset-y-0 { + top: 0px !important; + bottom: 0px !important; } .inset-y-1 { @@ -1288,2195 +1708,1775 @@ video { bottom: 0.25rem !important; } -.inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; -} - .inset-y-2 { top: 0.5rem !important; bottom: 0.5rem !important; } -.inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; -} - .inset-y-3 { top: 0.75rem !important; bottom: 0.75rem !important; } -.inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; -} - .inset-y-4 { top: 1rem !important; bottom: 1rem !important; } -.inset-x-4 { - right: 1rem !important; - left: 1rem !important; -} - .inset-y-5 { top: 1.25rem !important; bottom: 1.25rem !important; } -.inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; -} - .inset-y-6 { top: 1.5rem !important; bottom: 1.5rem !important; } -.inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; -} - .inset-y-7 { top: 1.75rem !important; bottom: 1.75rem !important; } -.inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; -} - .inset-y-8 { top: 2rem !important; bottom: 2rem !important; } -.inset-x-8 { - right: 2rem !important; - left: 2rem !important; -} - .inset-y-9 { top: 2.25rem !important; bottom: 2.25rem !important; } -.inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; -} - .inset-y-10 { top: 2.5rem !important; bottom: 2.5rem !important; } -.inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; -} - .inset-y-11 { top: 2.75rem !important; bottom: 2.75rem !important; } -.inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; -} - .inset-y-12 { top: 3rem !important; bottom: 3rem !important; } -.inset-x-12 { - right: 3rem !important; - left: 3rem !important; -} - .inset-y-14 { top: 3.5rem !important; bottom: 3.5rem !important; } -.inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; -} - .inset-y-16 { top: 4rem !important; bottom: 4rem !important; } -.inset-x-16 { - right: 4rem !important; - left: 4rem !important; -} - .inset-y-20 { top: 5rem !important; bottom: 5rem !important; } -.inset-x-20 { - right: 5rem !important; - left: 5rem !important; -} - .inset-y-24 { top: 6rem !important; bottom: 6rem !important; } -.inset-x-24 { - right: 6rem !important; - left: 6rem !important; -} - .inset-y-28 { top: 7rem !important; bottom: 7rem !important; } -.inset-x-28 { - right: 7rem !important; - left: 7rem !important; -} - .inset-y-32 { top: 8rem !important; bottom: 8rem !important; } -.inset-x-32 { - right: 8rem !important; - left: 8rem !important; -} - .inset-y-36 { top: 9rem !important; bottom: 9rem !important; } -.inset-x-36 { - right: 9rem !important; - left: 9rem !important; -} - .inset-y-40 { top: 10rem !important; bottom: 10rem !important; } -.inset-x-40 { - right: 10rem !important; - left: 10rem !important; -} - .inset-y-44 { top: 11rem !important; bottom: 11rem !important; } -.inset-x-44 { - right: 11rem !important; - left: 11rem !important; -} - .inset-y-48 { top: 12rem !important; bottom: 12rem !important; } -.inset-x-48 { - right: 12rem !important; - left: 12rem !important; -} - .inset-y-52 { top: 13rem !important; bottom: 13rem !important; } -.inset-x-52 { - right: 13rem !important; - left: 13rem !important; -} - .inset-y-56 { top: 14rem !important; bottom: 14rem !important; } -.inset-x-56 { - right: 14rem !important; - left: 14rem !important; -} - .inset-y-60 { top: 15rem !important; bottom: 15rem !important; } -.inset-x-60 { - right: 15rem !important; - left: 15rem !important; -} - .inset-y-64 { top: 16rem !important; bottom: 16rem !important; } -.inset-x-64 { - right: 16rem !important; - left: 16rem !important; -} - .inset-y-72 { top: 18rem !important; bottom: 18rem !important; } -.inset-x-72 { - right: 18rem !important; - left: 18rem !important; -} - .inset-y-80 { top: 20rem !important; bottom: 20rem !important; } -.inset-x-80 { - right: 20rem !important; - left: 20rem !important; -} - .inset-y-96 { top: 24rem !important; bottom: 24rem !important; } -.inset-x-96 { - right: 24rem !important; - left: 24rem !important; -} - .inset-y-auto { top: auto !important; bottom: auto !important; } -.inset-x-auto { - right: auto !important; - left: auto !important; -} - .inset-y-px { top: 1px !important; bottom: 1px !important; } -.inset-x-px { - right: 1px !important; - left: 1px !important; -} - .inset-y-0\.5 { top: 0.125rem !important; bottom: 0.125rem !important; } -.inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; -} - .inset-y-1\.5 { top: 0.375rem !important; bottom: 0.375rem !important; } -.inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; -} - .inset-y-2\.5 { top: 0.625rem !important; bottom: 0.625rem !important; } -.inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; -} - .inset-y-3\.5 { top: 0.875rem !important; bottom: 0.875rem !important; } -.inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; -} - .-inset-y-0 { top: 0px !important; bottom: 0px !important; } -.-inset-x-0 { - right: 0px !important; - left: 0px !important; -} - .-inset-y-1 { top: -0.25rem !important; bottom: -0.25rem !important; } -.-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; -} - .-inset-y-2 { top: -0.5rem !important; bottom: -0.5rem !important; } -.-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; -} - .-inset-y-3 { top: -0.75rem !important; bottom: -0.75rem !important; } -.-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; -} - .-inset-y-4 { top: -1rem !important; bottom: -1rem !important; } -.-inset-x-4 { - right: -1rem !important; - left: -1rem !important; -} - .-inset-y-5 { top: -1.25rem !important; bottom: -1.25rem !important; } -.-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; -} - .-inset-y-6 { top: -1.5rem !important; bottom: -1.5rem !important; } -.-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; -} - .-inset-y-7 { top: -1.75rem !important; bottom: -1.75rem !important; } -.-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; -} - .-inset-y-8 { top: -2rem !important; bottom: -2rem !important; } -.-inset-x-8 { - right: -2rem !important; - left: -2rem !important; -} - .-inset-y-9 { top: -2.25rem !important; bottom: -2.25rem !important; } -.-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; -} - .-inset-y-10 { top: -2.5rem !important; bottom: -2.5rem !important; } -.-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; -} - .-inset-y-11 { top: -2.75rem !important; bottom: -2.75rem !important; } -.-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; -} - .-inset-y-12 { top: -3rem !important; bottom: -3rem !important; } -.-inset-x-12 { - right: -3rem !important; - left: -3rem !important; -} - .-inset-y-14 { top: -3.5rem !important; bottom: -3.5rem !important; } -.-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; -} - .-inset-y-16 { top: -4rem !important; bottom: -4rem !important; } -.-inset-x-16 { - right: -4rem !important; - left: -4rem !important; -} - .-inset-y-20 { top: -5rem !important; bottom: -5rem !important; } -.-inset-x-20 { - right: -5rem !important; - left: -5rem !important; -} - .-inset-y-24 { top: -6rem !important; bottom: -6rem !important; } -.-inset-x-24 { - right: -6rem !important; - left: -6rem !important; -} - .-inset-y-28 { top: -7rem !important; bottom: -7rem !important; } -.-inset-x-28 { - right: -7rem !important; - left: -7rem !important; -} - .-inset-y-32 { top: -8rem !important; bottom: -8rem !important; } -.-inset-x-32 { - right: -8rem !important; - left: -8rem !important; -} - .-inset-y-36 { top: -9rem !important; bottom: -9rem !important; } -.-inset-x-36 { - right: -9rem !important; - left: -9rem !important; -} - .-inset-y-40 { top: -10rem !important; bottom: -10rem !important; } -.-inset-x-40 { - right: -10rem !important; - left: -10rem !important; -} - .-inset-y-44 { top: -11rem !important; bottom: -11rem !important; } -.-inset-x-44 { - right: -11rem !important; - left: -11rem !important; -} - .-inset-y-48 { top: -12rem !important; bottom: -12rem !important; } -.-inset-x-48 { - right: -12rem !important; - left: -12rem !important; -} - .-inset-y-52 { top: -13rem !important; bottom: -13rem !important; } -.-inset-x-52 { - right: -13rem !important; - left: -13rem !important; -} - .-inset-y-56 { top: -14rem !important; bottom: -14rem !important; } -.-inset-x-56 { - right: -14rem !important; - left: -14rem !important; -} - .-inset-y-60 { top: -15rem !important; bottom: -15rem !important; } -.-inset-x-60 { - right: -15rem !important; - left: -15rem !important; -} - .-inset-y-64 { top: -16rem !important; bottom: -16rem !important; } -.-inset-x-64 { - right: -16rem !important; - left: -16rem !important; -} - .-inset-y-72 { top: -18rem !important; bottom: -18rem !important; } -.-inset-x-72 { - right: -18rem !important; - left: -18rem !important; -} - .-inset-y-80 { top: -20rem !important; bottom: -20rem !important; } -.-inset-x-80 { - right: -20rem !important; - left: -20rem !important; -} - .-inset-y-96 { top: -24rem !important; bottom: -24rem !important; } -.-inset-x-96 { - right: -24rem !important; - left: -24rem !important; -} - .-inset-y-px { top: -1px !important; bottom: -1px !important; } -.-inset-x-px { - right: -1px !important; - left: -1px !important; -} - .-inset-y-0\.5 { top: -0.125rem !important; bottom: -0.125rem !important; } -.-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; -} - .-inset-y-1\.5 { top: -0.375rem !important; bottom: -0.375rem !important; } -.-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; -} - .-inset-y-2\.5 { top: -0.625rem !important; bottom: -0.625rem !important; } -.-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; -} - .-inset-y-3\.5 { top: -0.875rem !important; bottom: -0.875rem !important; } -.-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; -} - .inset-y-1\/2 { top: 50% !important; bottom: 50% !important; } -.inset-x-1\/2 { - right: 50% !important; - left: 50% !important; -} - .inset-y-1\/3 { top: 33.333333% !important; bottom: 33.333333% !important; } -.inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; -} - .inset-y-2\/3 { top: 66.666667% !important; bottom: 66.666667% !important; } -.inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; -} - .inset-y-1\/4 { top: 25% !important; bottom: 25% !important; } -.inset-x-1\/4 { - right: 25% !important; - left: 25% !important; -} - .inset-y-2\/4 { top: 50% !important; bottom: 50% !important; } -.inset-x-2\/4 { - right: 50% !important; - left: 50% !important; -} - .inset-y-3\/4 { top: 75% !important; bottom: 75% !important; } -.inset-x-3\/4 { - right: 75% !important; - left: 75% !important; -} - .inset-y-full { top: 100% !important; bottom: 100% !important; } -.inset-x-full { - right: 100% !important; - left: 100% !important; -} - .-inset-y-1\/2 { top: -50% !important; bottom: -50% !important; } -.-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; -} - .-inset-y-1\/3 { top: -33.333333% !important; bottom: -33.333333% !important; } -.-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; -} - .-inset-y-2\/3 { top: -66.666667% !important; bottom: -66.666667% !important; } -.-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; -} - .-inset-y-1\/4 { top: -25% !important; bottom: -25% !important; } -.-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; -} - .-inset-y-2\/4 { top: -50% !important; bottom: -50% !important; } -.-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; -} - .-inset-y-3\/4 { top: -75% !important; bottom: -75% !important; } -.-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; -} - .-inset-y-full { top: -100% !important; bottom: -100% !important; } -.-inset-x-full { - right: -100% !important; - left: -100% !important; -} - .top-0 { top: 0px !important; } -.right-0 { - right: 0px !important; +.top-1 { + top: 0.25rem !important; } -.bottom-0 { - bottom: 0px !important; +.top-2 { + top: 0.5rem !important; } -.left-0 { - left: 0px !important; +.top-3 { + top: 0.75rem !important; } -.top-1 { - top: 0.25rem !important; +.top-4 { + top: 1rem !important; } -.right-1 { - right: 0.25rem !important; +.top-5 { + top: 1.25rem !important; } -.bottom-1 { - bottom: 0.25rem !important; +.top-6 { + top: 1.5rem !important; } -.left-1 { - left: 0.25rem !important; +.top-7 { + top: 1.75rem !important; } -.top-2 { - top: 0.5rem !important; +.top-8 { + top: 2rem !important; } -.right-2 { - right: 0.5rem !important; +.top-9 { + top: 2.25rem !important; } -.bottom-2 { - bottom: 0.5rem !important; +.top-10 { + top: 2.5rem !important; } -.left-2 { - left: 0.5rem !important; +.top-11 { + top: 2.75rem !important; } -.top-3 { - top: 0.75rem !important; +.top-12 { + top: 3rem !important; } -.right-3 { - right: 0.75rem !important; +.top-14 { + top: 3.5rem !important; } -.bottom-3 { - bottom: 0.75rem !important; +.top-16 { + top: 4rem !important; } -.left-3 { - left: 0.75rem !important; +.top-20 { + top: 5rem !important; } -.top-4 { - top: 1rem !important; +.top-24 { + top: 6rem !important; } -.right-4 { - right: 1rem !important; +.top-28 { + top: 7rem !important; } -.bottom-4 { - bottom: 1rem !important; +.top-32 { + top: 8rem !important; } -.left-4 { - left: 1rem !important; +.top-36 { + top: 9rem !important; } -.top-5 { - top: 1.25rem !important; +.top-40 { + top: 10rem !important; } -.right-5 { - right: 1.25rem !important; +.top-44 { + top: 11rem !important; } -.bottom-5 { - bottom: 1.25rem !important; +.top-48 { + top: 12rem !important; } -.left-5 { - left: 1.25rem !important; +.top-52 { + top: 13rem !important; } -.top-6 { - top: 1.5rem !important; +.top-56 { + top: 14rem !important; } -.right-6 { - right: 1.5rem !important; +.top-60 { + top: 15rem !important; } -.bottom-6 { - bottom: 1.5rem !important; +.top-64 { + top: 16rem !important; } -.left-6 { - left: 1.5rem !important; +.top-72 { + top: 18rem !important; } -.top-7 { - top: 1.75rem !important; +.top-80 { + top: 20rem !important; } -.right-7 { - right: 1.75rem !important; +.top-96 { + top: 24rem !important; } -.bottom-7 { - bottom: 1.75rem !important; +.top-auto { + top: auto !important; } -.left-7 { - left: 1.75rem !important; +.top-px { + top: 1px !important; } -.top-8 { - top: 2rem !important; +.top-0\.5 { + top: 0.125rem !important; } -.right-8 { - right: 2rem !important; +.top-1\.5 { + top: 0.375rem !important; } -.bottom-8 { - bottom: 2rem !important; +.top-2\.5 { + top: 0.625rem !important; } -.left-8 { - left: 2rem !important; +.top-3\.5 { + top: 0.875rem !important; } -.top-9 { - top: 2.25rem !important; +.-top-0 { + top: 0px !important; } -.right-9 { - right: 2.25rem !important; +.-top-1 { + top: -0.25rem !important; } -.bottom-9 { - bottom: 2.25rem !important; +.-top-2 { + top: -0.5rem !important; } -.left-9 { - left: 2.25rem !important; +.-top-3 { + top: -0.75rem !important; } -.top-10 { - top: 2.5rem !important; +.-top-4 { + top: -1rem !important; } -.right-10 { - right: 2.5rem !important; +.-top-5 { + top: -1.25rem !important; } -.bottom-10 { - bottom: 2.5rem !important; +.-top-6 { + top: -1.5rem !important; } -.left-10 { - left: 2.5rem !important; +.-top-7 { + top: -1.75rem !important; } -.top-11 { - top: 2.75rem !important; +.-top-8 { + top: -2rem !important; } -.right-11 { - right: 2.75rem !important; +.-top-9 { + top: -2.25rem !important; } -.bottom-11 { - bottom: 2.75rem !important; +.-top-10 { + top: -2.5rem !important; } -.left-11 { - left: 2.75rem !important; +.-top-11 { + top: -2.75rem !important; } -.top-12 { - top: 3rem !important; +.-top-12 { + top: -3rem !important; } -.right-12 { - right: 3rem !important; +.-top-14 { + top: -3.5rem !important; } -.bottom-12 { - bottom: 3rem !important; +.-top-16 { + top: -4rem !important; } -.left-12 { - left: 3rem !important; +.-top-20 { + top: -5rem !important; } -.top-14 { - top: 3.5rem !important; +.-top-24 { + top: -6rem !important; } -.right-14 { - right: 3.5rem !important; +.-top-28 { + top: -7rem !important; } -.bottom-14 { - bottom: 3.5rem !important; +.-top-32 { + top: -8rem !important; } -.left-14 { - left: 3.5rem !important; +.-top-36 { + top: -9rem !important; } -.top-16 { - top: 4rem !important; +.-top-40 { + top: -10rem !important; } -.right-16 { - right: 4rem !important; +.-top-44 { + top: -11rem !important; } -.bottom-16 { - bottom: 4rem !important; +.-top-48 { + top: -12rem !important; } -.left-16 { - left: 4rem !important; +.-top-52 { + top: -13rem !important; } -.top-20 { - top: 5rem !important; +.-top-56 { + top: -14rem !important; } -.right-20 { - right: 5rem !important; +.-top-60 { + top: -15rem !important; } -.bottom-20 { - bottom: 5rem !important; +.-top-64 { + top: -16rem !important; } -.left-20 { - left: 5rem !important; +.-top-72 { + top: -18rem !important; } -.top-24 { - top: 6rem !important; +.-top-80 { + top: -20rem !important; } -.right-24 { - right: 6rem !important; +.-top-96 { + top: -24rem !important; } -.bottom-24 { - bottom: 6rem !important; +.-top-px { + top: -1px !important; } -.left-24 { - left: 6rem !important; +.-top-0\.5 { + top: -0.125rem !important; } -.top-28 { - top: 7rem !important; +.-top-1\.5 { + top: -0.375rem !important; } -.right-28 { - right: 7rem !important; +.-top-2\.5 { + top: -0.625rem !important; } -.bottom-28 { - bottom: 7rem !important; +.-top-3\.5 { + top: -0.875rem !important; } -.left-28 { - left: 7rem !important; +.top-1\/2 { + top: 50% !important; } -.top-32 { - top: 8rem !important; +.top-1\/3 { + top: 33.333333% !important; } -.right-32 { - right: 8rem !important; +.top-2\/3 { + top: 66.666667% !important; } -.bottom-32 { - bottom: 8rem !important; +.top-1\/4 { + top: 25% !important; } -.left-32 { - left: 8rem !important; +.top-2\/4 { + top: 50% !important; } -.top-36 { - top: 9rem !important; +.top-3\/4 { + top: 75% !important; } -.right-36 { - right: 9rem !important; +.top-full { + top: 100% !important; } -.bottom-36 { - bottom: 9rem !important; +.-top-1\/2 { + top: -50% !important; } -.left-36 { - left: 9rem !important; +.-top-1\/3 { + top: -33.333333% !important; } -.top-40 { - top: 10rem !important; +.-top-2\/3 { + top: -66.666667% !important; } -.right-40 { - right: 10rem !important; +.-top-1\/4 { + top: -25% !important; } -.bottom-40 { - bottom: 10rem !important; +.-top-2\/4 { + top: -50% !important; } -.left-40 { - left: 10rem !important; +.-top-3\/4 { + top: -75% !important; } -.top-44 { - top: 11rem !important; +.-top-full { + top: -100% !important; } -.right-44 { - right: 11rem !important; +.right-0 { + right: 0px !important; } -.bottom-44 { - bottom: 11rem !important; +.right-1 { + right: 0.25rem !important; } -.left-44 { - left: 11rem !important; +.right-2 { + right: 0.5rem !important; } -.top-48 { - top: 12rem !important; +.right-3 { + right: 0.75rem !important; } -.right-48 { - right: 12rem !important; +.right-4 { + right: 1rem !important; } -.bottom-48 { - bottom: 12rem !important; +.right-5 { + right: 1.25rem !important; } -.left-48 { - left: 12rem !important; +.right-6 { + right: 1.5rem !important; } -.top-52 { - top: 13rem !important; +.right-7 { + right: 1.75rem !important; } -.right-52 { - right: 13rem !important; +.right-8 { + right: 2rem !important; } -.bottom-52 { - bottom: 13rem !important; +.right-9 { + right: 2.25rem !important; } -.left-52 { - left: 13rem !important; +.right-10 { + right: 2.5rem !important; } -.top-56 { - top: 14rem !important; +.right-11 { + right: 2.75rem !important; } -.right-56 { - right: 14rem !important; +.right-12 { + right: 3rem !important; } -.bottom-56 { - bottom: 14rem !important; +.right-14 { + right: 3.5rem !important; } -.left-56 { - left: 14rem !important; +.right-16 { + right: 4rem !important; } -.top-60 { - top: 15rem !important; +.right-20 { + right: 5rem !important; } -.right-60 { - right: 15rem !important; +.right-24 { + right: 6rem !important; } -.bottom-60 { - bottom: 15rem !important; +.right-28 { + right: 7rem !important; } -.left-60 { - left: 15rem !important; +.right-32 { + right: 8rem !important; } -.top-64 { - top: 16rem !important; +.right-36 { + right: 9rem !important; } -.right-64 { - right: 16rem !important; +.right-40 { + right: 10rem !important; } -.bottom-64 { - bottom: 16rem !important; +.right-44 { + right: 11rem !important; } -.left-64 { - left: 16rem !important; +.right-48 { + right: 12rem !important; } -.top-72 { - top: 18rem !important; +.right-52 { + right: 13rem !important; } -.right-72 { - right: 18rem !important; +.right-56 { + right: 14rem !important; } -.bottom-72 { - bottom: 18rem !important; +.right-60 { + right: 15rem !important; } -.left-72 { - left: 18rem !important; +.right-64 { + right: 16rem !important; } -.top-80 { - top: 20rem !important; +.right-72 { + right: 18rem !important; } .right-80 { right: 20rem !important; } -.bottom-80 { - bottom: 20rem !important; +.right-96 { + right: 24rem !important; } -.left-80 { - left: 20rem !important; +.right-auto { + right: auto !important; } -.top-96 { - top: 24rem !important; +.right-px { + right: 1px !important; } -.right-96 { - right: 24rem !important; +.right-0\.5 { + right: 0.125rem !important; } -.bottom-96 { - bottom: 24rem !important; +.right-1\.5 { + right: 0.375rem !important; } -.left-96 { - left: 24rem !important; +.right-2\.5 { + right: 0.625rem !important; } -.top-auto { - top: auto !important; +.right-3\.5 { + right: 0.875rem !important; } -.right-auto { - right: auto !important; +.-right-0 { + right: 0px !important; } -.bottom-auto { - bottom: auto !important; +.-right-1 { + right: -0.25rem !important; } -.left-auto { - left: auto !important; +.-right-2 { + right: -0.5rem !important; } -.top-px { - top: 1px !important; +.-right-3 { + right: -0.75rem !important; } -.right-px { - right: 1px !important; +.-right-4 { + right: -1rem !important; } -.bottom-px { - bottom: 1px !important; +.-right-5 { + right: -1.25rem !important; } -.left-px { - left: 1px !important; +.-right-6 { + right: -1.5rem !important; } -.top-0\.5 { - top: 0.125rem !important; +.-right-7 { + right: -1.75rem !important; } -.right-0\.5 { - right: 0.125rem !important; +.-right-8 { + right: -2rem !important; } -.bottom-0\.5 { - bottom: 0.125rem !important; +.-right-9 { + right: -2.25rem !important; } -.left-0\.5 { - left: 0.125rem !important; +.-right-10 { + right: -2.5rem !important; } -.top-1\.5 { - top: 0.375rem !important; +.-right-11 { + right: -2.75rem !important; } -.right-1\.5 { - right: 0.375rem !important; +.-right-12 { + right: -3rem !important; } -.bottom-1\.5 { - bottom: 0.375rem !important; +.-right-14 { + right: -3.5rem !important; } -.left-1\.5 { - left: 0.375rem !important; +.-right-16 { + right: -4rem !important; } -.top-2\.5 { - top: 0.625rem !important; +.-right-20 { + right: -5rem !important; } -.right-2\.5 { - right: 0.625rem !important; +.-right-24 { + right: -6rem !important; } -.bottom-2\.5 { - bottom: 0.625rem !important; +.-right-28 { + right: -7rem !important; } -.left-2\.5 { - left: 0.625rem !important; +.-right-32 { + right: -8rem !important; } -.top-3\.5 { - top: 0.875rem !important; +.-right-36 { + right: -9rem !important; } -.right-3\.5 { - right: 0.875rem !important; +.-right-40 { + right: -10rem !important; } -.bottom-3\.5 { - bottom: 0.875rem !important; +.-right-44 { + right: -11rem !important; } -.left-3\.5 { - left: 0.875rem !important; +.-right-48 { + right: -12rem !important; } -.-top-0 { - top: 0px !important; +.-right-52 { + right: -13rem !important; } -.-right-0 { - right: 0px !important; +.-right-56 { + right: -14rem !important; } -.-bottom-0 { - bottom: 0px !important; +.-right-60 { + right: -15rem !important; } -.-left-0 { - left: 0px !important; +.-right-64 { + right: -16rem !important; } -.-top-1 { - top: -0.25rem !important; +.-right-72 { + right: -18rem !important; } -.-right-1 { - right: -0.25rem !important; +.-right-80 { + right: -20rem !important; } -.-bottom-1 { - bottom: -0.25rem !important; +.-right-96 { + right: -24rem !important; } -.-left-1 { - left: -0.25rem !important; +.-right-px { + right: -1px !important; } -.-top-2 { - top: -0.5rem !important; +.-right-0\.5 { + right: -0.125rem !important; } -.-right-2 { - right: -0.5rem !important; +.-right-1\.5 { + right: -0.375rem !important; } -.-bottom-2 { - bottom: -0.5rem !important; +.-right-2\.5 { + right: -0.625rem !important; } -.-left-2 { - left: -0.5rem !important; +.-right-3\.5 { + right: -0.875rem !important; } -.-top-3 { - top: -0.75rem !important; +.right-1\/2 { + right: 50% !important; } -.-right-3 { - right: -0.75rem !important; +.right-1\/3 { + right: 33.333333% !important; } -.-bottom-3 { - bottom: -0.75rem !important; +.right-2\/3 { + right: 66.666667% !important; } -.-left-3 { - left: -0.75rem !important; +.right-1\/4 { + right: 25% !important; } -.-top-4 { - top: -1rem !important; +.right-2\/4 { + right: 50% !important; } -.-right-4 { - right: -1rem !important; +.right-3\/4 { + right: 75% !important; } -.-bottom-4 { - bottom: -1rem !important; +.right-full { + right: 100% !important; } -.-left-4 { - left: -1rem !important; +.-right-1\/2 { + right: -50% !important; } -.-top-5 { - top: -1.25rem !important; +.-right-1\/3 { + right: -33.333333% !important; } -.-right-5 { - right: -1.25rem !important; +.-right-2\/3 { + right: -66.666667% !important; } -.-bottom-5 { - bottom: -1.25rem !important; +.-right-1\/4 { + right: -25% !important; } -.-left-5 { - left: -1.25rem !important; +.-right-2\/4 { + right: -50% !important; } -.-top-6 { - top: -1.5rem !important; +.-right-3\/4 { + right: -75% !important; } -.-right-6 { - right: -1.5rem !important; +.-right-full { + right: -100% !important; } -.-bottom-6 { - bottom: -1.5rem !important; +.bottom-0 { + bottom: 0px !important; } -.-left-6 { - left: -1.5rem !important; +.bottom-1 { + bottom: 0.25rem !important; } -.-top-7 { - top: -1.75rem !important; +.bottom-2 { + bottom: 0.5rem !important; } -.-right-7 { - right: -1.75rem !important; +.bottom-3 { + bottom: 0.75rem !important; } -.-bottom-7 { - bottom: -1.75rem !important; +.bottom-4 { + bottom: 1rem !important; } -.-left-7 { - left: -1.75rem !important; +.bottom-5 { + bottom: 1.25rem !important; } -.-top-8 { - top: -2rem !important; +.bottom-6 { + bottom: 1.5rem !important; } -.-right-8 { - right: -2rem !important; +.bottom-7 { + bottom: 1.75rem !important; } -.-bottom-8 { - bottom: -2rem !important; +.bottom-8 { + bottom: 2rem !important; } -.-left-8 { - left: -2rem !important; +.bottom-9 { + bottom: 2.25rem !important; } -.-top-9 { - top: -2.25rem !important; +.bottom-10 { + bottom: 2.5rem !important; } -.-right-9 { - right: -2.25rem !important; +.bottom-11 { + bottom: 2.75rem !important; } -.-bottom-9 { - bottom: -2.25rem !important; +.bottom-12 { + bottom: 3rem !important; } -.-left-9 { - left: -2.25rem !important; +.bottom-14 { + bottom: 3.5rem !important; } -.-top-10 { - top: -2.5rem !important; +.bottom-16 { + bottom: 4rem !important; } -.-right-10 { - right: -2.5rem !important; +.bottom-20 { + bottom: 5rem !important; } -.-bottom-10 { - bottom: -2.5rem !important; +.bottom-24 { + bottom: 6rem !important; } -.-left-10 { - left: -2.5rem !important; +.bottom-28 { + bottom: 7rem !important; } -.-top-11 { - top: -2.75rem !important; +.bottom-32 { + bottom: 8rem !important; } -.-right-11 { - right: -2.75rem !important; +.bottom-36 { + bottom: 9rem !important; } -.-bottom-11 { - bottom: -2.75rem !important; +.bottom-40 { + bottom: 10rem !important; } -.-left-11 { - left: -2.75rem !important; +.bottom-44 { + bottom: 11rem !important; } -.-top-12 { - top: -3rem !important; +.bottom-48 { + bottom: 12rem !important; } -.-right-12 { - right: -3rem !important; +.bottom-52 { + bottom: 13rem !important; } -.-bottom-12 { - bottom: -3rem !important; +.bottom-56 { + bottom: 14rem !important; } -.-left-12 { - left: -3rem !important; +.bottom-60 { + bottom: 15rem !important; } -.-top-14 { - top: -3.5rem !important; +.bottom-64 { + bottom: 16rem !important; } -.-right-14 { - right: -3.5rem !important; +.bottom-72 { + bottom: 18rem !important; } -.-bottom-14 { - bottom: -3.5rem !important; +.bottom-80 { + bottom: 20rem !important; } -.-left-14 { - left: -3.5rem !important; +.bottom-96 { + bottom: 24rem !important; } -.-top-16 { - top: -4rem !important; +.bottom-auto { + bottom: auto !important; } -.-right-16 { - right: -4rem !important; +.bottom-px { + bottom: 1px !important; } -.-bottom-16 { - bottom: -4rem !important; +.bottom-0\.5 { + bottom: 0.125rem !important; } -.-left-16 { - left: -4rem !important; +.bottom-1\.5 { + bottom: 0.375rem !important; } -.-top-20 { - top: -5rem !important; +.bottom-2\.5 { + bottom: 0.625rem !important; } -.-right-20 { - right: -5rem !important; +.bottom-3\.5 { + bottom: 0.875rem !important; } -.-bottom-20 { - bottom: -5rem !important; +.-bottom-0 { + bottom: 0px !important; } -.-left-20 { - left: -5rem !important; +.-bottom-1 { + bottom: -0.25rem !important; } -.-top-24 { - top: -6rem !important; +.-bottom-2 { + bottom: -0.5rem !important; } -.-right-24 { - right: -6rem !important; +.-bottom-3 { + bottom: -0.75rem !important; } -.-bottom-24 { - bottom: -6rem !important; +.-bottom-4 { + bottom: -1rem !important; } -.-left-24 { - left: -6rem !important; +.-bottom-5 { + bottom: -1.25rem !important; } -.-top-28 { - top: -7rem !important; +.-bottom-6 { + bottom: -1.5rem !important; } -.-right-28 { - right: -7rem !important; +.-bottom-7 { + bottom: -1.75rem !important; } -.-bottom-28 { - bottom: -7rem !important; +.-bottom-8 { + bottom: -2rem !important; } -.-left-28 { - left: -7rem !important; +.-bottom-9 { + bottom: -2.25rem !important; } -.-top-32 { - top: -8rem !important; +.-bottom-10 { + bottom: -2.5rem !important; } -.-right-32 { - right: -8rem !important; +.-bottom-11 { + bottom: -2.75rem !important; } -.-bottom-32 { - bottom: -8rem !important; +.-bottom-12 { + bottom: -3rem !important; } -.-left-32 { - left: -8rem !important; +.-bottom-14 { + bottom: -3.5rem !important; } -.-top-36 { - top: -9rem !important; +.-bottom-16 { + bottom: -4rem !important; } -.-right-36 { - right: -9rem !important; +.-bottom-20 { + bottom: -5rem !important; } -.-bottom-36 { - bottom: -9rem !important; +.-bottom-24 { + bottom: -6rem !important; } -.-left-36 { - left: -9rem !important; +.-bottom-28 { + bottom: -7rem !important; } -.-top-40 { - top: -10rem !important; +.-bottom-32 { + bottom: -8rem !important; } -.-right-40 { - right: -10rem !important; +.-bottom-36 { + bottom: -9rem !important; } .-bottom-40 { bottom: -10rem !important; } -.-left-40 { - left: -10rem !important; +.-bottom-44 { + bottom: -11rem !important; } -.-top-44 { - top: -11rem !important; +.-bottom-48 { + bottom: -12rem !important; } -.-right-44 { - right: -11rem !important; +.-bottom-52 { + bottom: -13rem !important; } -.-bottom-44 { - bottom: -11rem !important; +.-bottom-56 { + bottom: -14rem !important; } -.-left-44 { - left: -11rem !important; +.-bottom-60 { + bottom: -15rem !important; } -.-top-48 { - top: -12rem !important; +.-bottom-64 { + bottom: -16rem !important; } -.-right-48 { - right: -12rem !important; +.-bottom-72 { + bottom: -18rem !important; } -.-bottom-48 { - bottom: -12rem !important; +.-bottom-80 { + bottom: -20rem !important; } -.-left-48 { - left: -12rem !important; +.-bottom-96 { + bottom: -24rem !important; } -.-top-52 { - top: -13rem !important; +.-bottom-px { + bottom: -1px !important; } -.-right-52 { - right: -13rem !important; +.-bottom-0\.5 { + bottom: -0.125rem !important; } -.-bottom-52 { - bottom: -13rem !important; +.-bottom-1\.5 { + bottom: -0.375rem !important; } -.-left-52 { - left: -13rem !important; +.-bottom-2\.5 { + bottom: -0.625rem !important; } -.-top-56 { - top: -14rem !important; +.-bottom-3\.5 { + bottom: -0.875rem !important; } -.-right-56 { - right: -14rem !important; +.bottom-1\/2 { + bottom: 50% !important; } -.-bottom-56 { - bottom: -14rem !important; +.bottom-1\/3 { + bottom: 33.333333% !important; } -.-left-56 { - left: -14rem !important; +.bottom-2\/3 { + bottom: 66.666667% !important; } -.-top-60 { - top: -15rem !important; +.bottom-1\/4 { + bottom: 25% !important; } -.-right-60 { - right: -15rem !important; +.bottom-2\/4 { + bottom: 50% !important; } -.-bottom-60 { - bottom: -15rem !important; +.bottom-3\/4 { + bottom: 75% !important; } -.-left-60 { - left: -15rem !important; +.bottom-full { + bottom: 100% !important; } -.-top-64 { - top: -16rem !important; +.-bottom-1\/2 { + bottom: -50% !important; } -.-right-64 { - right: -16rem !important; +.-bottom-1\/3 { + bottom: -33.333333% !important; } -.-bottom-64 { - bottom: -16rem !important; +.-bottom-2\/3 { + bottom: -66.666667% !important; } -.-left-64 { - left: -16rem !important; +.-bottom-1\/4 { + bottom: -25% !important; } -.-top-72 { - top: -18rem !important; +.-bottom-2\/4 { + bottom: -50% !important; } -.-right-72 { - right: -18rem !important; +.-bottom-3\/4 { + bottom: -75% !important; } -.-bottom-72 { - bottom: -18rem !important; +.-bottom-full { + bottom: -100% !important; } -.-left-72 { - left: -18rem !important; +.left-0 { + left: 0px !important; } -.-top-80 { - top: -20rem !important; +.left-1 { + left: 0.25rem !important; } -.-right-80 { - right: -20rem !important; +.left-2 { + left: 0.5rem !important; } -.-bottom-80 { - bottom: -20rem !important; +.left-3 { + left: 0.75rem !important; } -.-left-80 { - left: -20rem !important; +.left-4 { + left: 1rem !important; } -.-top-96 { - top: -24rem !important; +.left-5 { + left: 1.25rem !important; } -.-right-96 { - right: -24rem !important; +.left-6 { + left: 1.5rem !important; } -.-bottom-96 { - bottom: -24rem !important; +.left-7 { + left: 1.75rem !important; } -.-left-96 { - left: -24rem !important; +.left-8 { + left: 2rem !important; } -.-top-px { - top: -1px !important; +.left-9 { + left: 2.25rem !important; } -.-right-px { - right: -1px !important; +.left-10 { + left: 2.5rem !important; } -.-bottom-px { - bottom: -1px !important; +.left-11 { + left: 2.75rem !important; } -.-left-px { - left: -1px !important; +.left-12 { + left: 3rem !important; } -.-top-0\.5 { - top: -0.125rem !important; +.left-14 { + left: 3.5rem !important; } -.-right-0\.5 { - right: -0.125rem !important; +.left-16 { + left: 4rem !important; } -.-bottom-0\.5 { - bottom: -0.125rem !important; +.left-20 { + left: 5rem !important; } -.-left-0\.5 { - left: -0.125rem !important; +.left-24 { + left: 6rem !important; } -.-top-1\.5 { - top: -0.375rem !important; +.left-28 { + left: 7rem !important; } -.-right-1\.5 { - right: -0.375rem !important; +.left-32 { + left: 8rem !important; } -.-bottom-1\.5 { - bottom: -0.375rem !important; +.left-36 { + left: 9rem !important; } -.-left-1\.5 { - left: -0.375rem !important; +.left-40 { + left: 10rem !important; } -.-top-2\.5 { - top: -0.625rem !important; +.left-44 { + left: 11rem !important; } -.-right-2\.5 { - right: -0.625rem !important; +.left-48 { + left: 12rem !important; } -.-bottom-2\.5 { - bottom: -0.625rem !important; +.left-52 { + left: 13rem !important; } -.-left-2\.5 { - left: -0.625rem !important; +.left-56 { + left: 14rem !important; } -.-top-3\.5 { - top: -0.875rem !important; +.left-60 { + left: 15rem !important; } -.-right-3\.5 { - right: -0.875rem !important; +.left-64 { + left: 16rem !important; } -.-bottom-3\.5 { - bottom: -0.875rem !important; +.left-72 { + left: 18rem !important; } -.-left-3\.5 { - left: -0.875rem !important; +.left-80 { + left: 20rem !important; } -.top-1\/2 { - top: 50% !important; +.left-96 { + left: 24rem !important; } -.right-1\/2 { - right: 50% !important; +.left-auto { + left: auto !important; } -.bottom-1\/2 { - bottom: 50% !important; +.left-px { + left: 1px !important; } -.left-1\/2 { - left: 50% !important; +.left-0\.5 { + left: 0.125rem !important; } -.top-1\/3 { - top: 33.333333% !important; +.left-1\.5 { + left: 0.375rem !important; } -.right-1\/3 { - right: 33.333333% !important; +.left-2\.5 { + left: 0.625rem !important; } -.bottom-1\/3 { - bottom: 33.333333% !important; +.left-3\.5 { + left: 0.875rem !important; } -.left-1\/3 { - left: 33.333333% !important; +.-left-0 { + left: 0px !important; } -.top-2\/3 { - top: 66.666667% !important; +.-left-1 { + left: -0.25rem !important; } -.right-2\/3 { - right: 66.666667% !important; +.-left-2 { + left: -0.5rem !important; } -.bottom-2\/3 { - bottom: 66.666667% !important; +.-left-3 { + left: -0.75rem !important; } -.left-2\/3 { - left: 66.666667% !important; +.-left-4 { + left: -1rem !important; } -.top-1\/4 { - top: 25% !important; +.-left-5 { + left: -1.25rem !important; } -.right-1\/4 { - right: 25% !important; +.-left-6 { + left: -1.5rem !important; } -.bottom-1\/4 { - bottom: 25% !important; +.-left-7 { + left: -1.75rem !important; } -.left-1\/4 { - left: 25% !important; +.-left-8 { + left: -2rem !important; } -.top-2\/4 { - top: 50% !important; +.-left-9 { + left: -2.25rem !important; } -.right-2\/4 { - right: 50% !important; +.-left-10 { + left: -2.5rem !important; } -.bottom-2\/4 { - bottom: 50% !important; +.-left-11 { + left: -2.75rem !important; } -.left-2\/4 { - left: 50% !important; +.-left-12 { + left: -3rem !important; } -.top-3\/4 { - top: 75% !important; +.-left-14 { + left: -3.5rem !important; } -.right-3\/4 { - right: 75% !important; +.-left-16 { + left: -4rem !important; } -.bottom-3\/4 { - bottom: 75% !important; +.-left-20 { + left: -5rem !important; } -.left-3\/4 { - left: 75% !important; +.-left-24 { + left: -6rem !important; } -.top-full { - top: 100% !important; +.-left-28 { + left: -7rem !important; } -.right-full { - right: 100% !important; +.-left-32 { + left: -8rem !important; } -.bottom-full { - bottom: 100% !important; +.-left-36 { + left: -9rem !important; } -.left-full { - left: 100% !important; +.-left-40 { + left: -10rem !important; } -.-top-1\/2 { - top: -50% !important; +.-left-44 { + left: -11rem !important; } -.-right-1\/2 { - right: -50% !important; +.-left-48 { + left: -12rem !important; } -.-bottom-1\/2 { - bottom: -50% !important; +.-left-52 { + left: -13rem !important; } -.-left-1\/2 { - left: -50% !important; +.-left-56 { + left: -14rem !important; } -.-top-1\/3 { - top: -33.333333% !important; +.-left-60 { + left: -15rem !important; } -.-right-1\/3 { - right: -33.333333% !important; +.-left-64 { + left: -16rem !important; } -.-bottom-1\/3 { - bottom: -33.333333% !important; +.-left-72 { + left: -18rem !important; } -.-left-1\/3 { - left: -33.333333% !important; +.-left-80 { + left: -20rem !important; } -.-top-2\/3 { - top: -66.666667% !important; +.-left-96 { + left: -24rem !important; } -.-right-2\/3 { - right: -66.666667% !important; +.-left-px { + left: -1px !important; } -.-bottom-2\/3 { - bottom: -66.666667% !important; +.-left-0\.5 { + left: -0.125rem !important; } -.-left-2\/3 { - left: -66.666667% !important; +.-left-1\.5 { + left: -0.375rem !important; } -.-top-1\/4 { - top: -25% !important; +.-left-2\.5 { + left: -0.625rem !important; } -.-right-1\/4 { - right: -25% !important; +.-left-3\.5 { + left: -0.875rem !important; } -.-bottom-1\/4 { - bottom: -25% !important; +.left-1\/2 { + left: 50% !important; } -.-left-1\/4 { - left: -25% !important; +.left-1\/3 { + left: 33.333333% !important; } -.-top-2\/4 { - top: -50% !important; +.left-2\/3 { + left: 66.666667% !important; } -.-right-2\/4 { - right: -50% !important; +.left-1\/4 { + left: 25% !important; } -.-bottom-2\/4 { - bottom: -50% !important; +.left-2\/4 { + left: 50% !important; } -.-left-2\/4 { - left: -50% !important; +.left-3\/4 { + left: 75% !important; } -.-top-3\/4 { - top: -75% !important; +.left-full { + left: 100% !important; } -.-right-3\/4 { - right: -75% !important; +.-left-1\/2 { + left: -50% !important; } -.-bottom-3\/4 { - bottom: -75% !important; +.-left-1\/3 { + left: -33.333333% !important; } -.-left-3\/4 { - left: -75% !important; +.-left-2\/3 { + left: -66.666667% !important; } -.-top-full { - top: -100% !important; +.-left-1\/4 { + left: -25% !important; } -.-right-full { - right: -100% !important; +.-left-2\/4 { + left: -50% !important; } -.-bottom-full { - bottom: -100% !important; +.-left-3\/4 { + left: -75% !important; } .-left-full { @@ -9533,133 +9533,183 @@ video { --tw-scale-y: 1.5 !important; } -.scale-x-0 { +.hover\:scale-0:hover { --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } -.scale-x-50 { +.hover\:scale-50:hover { --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } -.scale-x-75 { +.hover\:scale-75:hover { --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } -.scale-x-90 { +.hover\:scale-90:hover { --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } -.scale-x-95 { +.hover\:scale-95:hover { --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } -.scale-x-100 { +.hover\:scale-100:hover { --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } -.scale-x-105 { +.hover\:scale-105:hover { --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } -.scale-x-110 { +.hover\:scale-110:hover { --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } -.scale-x-125 { +.hover\:scale-125:hover { --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } -.scale-x-150 { +.hover\:scale-150:hover { --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } -.scale-y-0 { +.focus\:scale-0:focus { + --tw-scale-x: 0 !important; --tw-scale-y: 0 !important; } -.scale-y-50 { +.focus\:scale-50:focus { + --tw-scale-x: .5 !important; --tw-scale-y: .5 !important; } -.scale-y-75 { +.focus\:scale-75:focus { + --tw-scale-x: .75 !important; --tw-scale-y: .75 !important; } -.scale-y-90 { +.focus\:scale-90:focus { + --tw-scale-x: .9 !important; --tw-scale-y: .9 !important; } -.scale-y-95 { +.focus\:scale-95:focus { + --tw-scale-x: .95 !important; --tw-scale-y: .95 !important; } -.scale-y-100 { +.focus\:scale-100:focus { + --tw-scale-x: 1 !important; --tw-scale-y: 1 !important; } -.scale-y-105 { +.focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; --tw-scale-y: 1.05 !important; } -.scale-y-110 { +.focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; --tw-scale-y: 1.1 !important; } -.scale-y-125 { +.focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; --tw-scale-y: 1.25 !important; } -.scale-y-150 { +.focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; --tw-scale-y: 1.5 !important; } -.hover\:scale-0:hover { +.scale-x-0 { --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; } -.hover\:scale-50:hover { +.scale-x-50 { --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; } -.hover\:scale-75:hover { +.scale-x-75 { --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; } -.hover\:scale-90:hover { +.scale-x-90 { --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; } -.hover\:scale-95:hover { +.scale-x-95 { --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; } -.hover\:scale-100:hover { +.scale-x-100 { --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; } -.hover\:scale-105:hover { +.scale-x-105 { --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; } -.hover\:scale-110:hover { +.scale-x-110 { --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; } -.hover\:scale-125:hover { +.scale-x-125 { --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; } -.hover\:scale-150:hover { +.scale-x-150 { --tw-scale-x: 1.5 !important; +} + +.scale-y-0 { + --tw-scale-y: 0 !important; +} + +.scale-y-50 { + --tw-scale-y: .5 !important; +} + +.scale-y-75 { + --tw-scale-y: .75 !important; +} + +.scale-y-90 { + --tw-scale-y: .9 !important; +} + +.scale-y-95 { + --tw-scale-y: .95 !important; +} + +.scale-y-100 { + --tw-scale-y: 1 !important; +} + +.scale-y-105 { + --tw-scale-y: 1.05 !important; +} + +.scale-y-110 { + --tw-scale-y: 1.1 !important; +} + +.scale-y-125 { + --tw-scale-y: 1.25 !important; +} + +.scale-y-150 { --tw-scale-y: 1.5 !important; } @@ -9743,56 +9793,6 @@ video { --tw-scale-y: 1.5 !important; } -.focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; -} - -.focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; -} - -.focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; -} - -.focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; -} - -.focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; -} - -.focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; -} - -.focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; -} - -.focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; -} - -.focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; -} - -.focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; -} - .focus\:scale-x-0:focus { --tw-scale-x: 0 !important; } @@ -10716,436 +10716,640 @@ video { row-gap: 0.875rem !important; } -.space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; -} - .space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0px * var(--tw-space-x-reverse)) !important; margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; -} - .space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; -} - .space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; -} - .space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; -} - .space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; -} - .space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; -} - .space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; -} - .space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; -} - .space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; -} - .space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; -} - .space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; -} - .space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; -} - .space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; -} - .space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; -} - .space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; -} - .space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; -} - .space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; -} - .space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; -} - .space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; -} - .space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; -} - .space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; -} - .space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; -} - .space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; -} - .space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; -} - .space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; -} - .space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; -} - .space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; -} - .space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; -} - .space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; -} - .space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; -} - .space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1px * var(--tw-space-x-reverse)) !important; margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; -} - .space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; -} - .space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; -} - .space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; -} - .space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; } -.-space-y-0 > :not([hidden]) ~ :not([hidden]) { +.-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; +} + +.space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } -.-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(0px * var(--tw-space-x-reverse)) !important; - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; +} + +.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; +} + +.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; +} + +.-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } .-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -11154,408 +11358,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; } -.-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; } -.-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; } -.-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; } -.-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; } -.-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; } -.-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; } -.-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; } -.-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; } -.-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; } -.-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; } -.-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; } -.-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; } -.-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; } -.-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; } -.-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; } -.-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; } -.-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; } -.-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; } -.-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; } -.-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; } -.-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; } -.-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; } -.-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; } -.-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; } -.-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; } -.-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; } -.-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; } -.-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; } -.-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; } -.-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; } -.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; } -.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; } -.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; } -.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; -} - .space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1 !important; } @@ -11564,66 +11564,66 @@ video { --tw-space-x-reverse: 1 !important; } -.divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; -} - .divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; } -.divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; -} - .divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; } -.divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; -} - .divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; } -.divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; -} - .divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; } -.divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; -} - .divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; } +.divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; +} + +.divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; +} + +.divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; +} + +.divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; +} + +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; +} + .divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1 !important; } @@ -18037,2188 +18037,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } -.via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; -} - -.via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; -} - -.via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; -} - -.via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; -} - -.via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; -} - -.via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; -} - -.via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; -} - -.via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; -} - -.via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; -} - -.via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; -} - -.via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; -} - -.via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; -} - -.via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; -} - -.via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; -} - -.via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; -} - -.via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; -} - -.via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; -} - -.via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; -} - -.via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; -} - -.via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; -} - -.via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; -} - -.via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; -} - -.via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; -} - -.via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; -} - -.via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; -} - -.via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; -} - -.via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; -} - -.via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; -} - -.via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; -} - -.via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; -} - -.via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; -} - -.via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; -} - -.via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; -} - -.via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; -} - -.via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; -} - -.via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; -} - -.via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; -} - -.via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; -} - -.via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; -} - -.via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; -} - -.via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; -} - -.via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; -} - -.via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; -} - -.via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; -} - -.via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; -} - -.via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; -} - -.via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; -} - -.via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; -} - -.via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; -} - -.via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; -} - -.via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; -} - -.via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; -} - -.via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; -} - -.via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; -} - -.via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; -} - -.via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; -} - -.via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; -} - -.via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; -} - -.via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; -} - -.via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; -} - -.via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; -} - -.via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; -} - -.via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; -} - -.via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; -} - -.via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; -} - -.via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; -} - -.via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; -} - -.via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; -} - -.via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; -} - -.via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; -} - -.via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; -} - -.via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; -} - -.via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; -} - -.via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; -} - -.via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; -} - -.via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; -} - -.via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; -} - -.via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; -} - -.via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; -} - -.via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; -} - -.via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; -} - -.via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; -} - -.via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; -} - -.via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; -} - -.to-transparent { - --tw-gradient-to: transparent !important; +.hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.to-current { - --tw-gradient-to: currentColor !important; +.hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.to-black { - --tw-gradient-to: #000 !important; +.hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.to-white { - --tw-gradient-to: #fff !important; +.hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.to-gray-50 { - --tw-gradient-to: #f9fafb !important; +.hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } -.to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; +.hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } -.to-gray-200 { - --tw-gradient-to: #e5e7eb !important; +.hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } -.to-gray-300 { - --tw-gradient-to: #d1d5db !important; +.hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } -.to-gray-400 { - --tw-gradient-to: #9ca3af !important; +.hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } -.to-gray-500 { - --tw-gradient-to: #6b7280 !important; +.hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } -.to-gray-600 { - --tw-gradient-to: #4b5563 !important; +.hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } -.to-gray-700 { - --tw-gradient-to: #374151 !important; +.hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } -.to-gray-800 { - --tw-gradient-to: #1f2937 !important; +.hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } -.to-gray-900 { - --tw-gradient-to: #111827 !important; +.hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } -.to-red-50 { - --tw-gradient-to: #fef2f2 !important; +.hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } -.to-red-100 { - --tw-gradient-to: #fee2e2 !important; +.hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } -.to-red-200 { - --tw-gradient-to: #fecaca !important; +.hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } -.to-red-300 { - --tw-gradient-to: #fca5a5 !important; +.hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } -.to-red-400 { - --tw-gradient-to: #f87171 !important; +.hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } -.to-red-500 { - --tw-gradient-to: #ef4444 !important; +.hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } -.to-red-600 { - --tw-gradient-to: #dc2626 !important; +.hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } -.to-red-700 { - --tw-gradient-to: #b91c1c !important; +.hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } -.to-red-800 { - --tw-gradient-to: #991b1b !important; +.hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } -.to-red-900 { - --tw-gradient-to: #7f1d1d !important; +.hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } -.to-yellow-50 { - --tw-gradient-to: #fffbeb !important; +.hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } -.to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; +.hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } -.to-yellow-200 { - --tw-gradient-to: #fde68a !important; +.hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } -.to-yellow-300 { - --tw-gradient-to: #fcd34d !important; +.hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } -.to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; +.hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } -.to-yellow-500 { - --tw-gradient-to: #f59e0b !important; +.hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } -.to-yellow-600 { - --tw-gradient-to: #d97706 !important; +.hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } -.to-yellow-700 { - --tw-gradient-to: #b45309 !important; +.hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } -.to-yellow-800 { - --tw-gradient-to: #92400e !important; +.hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } -.to-yellow-900 { - --tw-gradient-to: #78350f !important; +.hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } -.to-green-50 { - --tw-gradient-to: #ecfdf5 !important; +.hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } -.to-green-100 { - --tw-gradient-to: #d1fae5 !important; +.hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } -.to-green-200 { - --tw-gradient-to: #a7f3d0 !important; +.hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } -.to-green-300 { - --tw-gradient-to: #6ee7b7 !important; +.hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } -.to-green-400 { - --tw-gradient-to: #34d399 !important; +.hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } -.to-green-500 { - --tw-gradient-to: #10b981 !important; +.hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } -.to-green-600 { - --tw-gradient-to: #059669 !important; +.hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } -.to-green-700 { - --tw-gradient-to: #047857 !important; +.hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } -.to-green-800 { - --tw-gradient-to: #065f46 !important; +.hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } -.to-green-900 { - --tw-gradient-to: #064e3b !important; +.hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } -.to-blue-50 { - --tw-gradient-to: #eff6ff !important; +.hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } -.to-blue-100 { - --tw-gradient-to: #dbeafe !important; +.hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } -.to-blue-200 { - --tw-gradient-to: #bfdbfe !important; +.hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } -.to-blue-300 { - --tw-gradient-to: #93c5fd !important; +.hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } -.to-blue-400 { - --tw-gradient-to: #60a5fa !important; +.hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } -.to-blue-500 { - --tw-gradient-to: #3b82f6 !important; +.hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } -.to-blue-600 { - --tw-gradient-to: #2563eb !important; +.hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } -.to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; +.hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } -.to-blue-800 { - --tw-gradient-to: #1e40af !important; +.hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } -.to-blue-900 { - --tw-gradient-to: #1e3a8a !important; +.hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } -.to-indigo-50 { - --tw-gradient-to: #eef2ff !important; +.hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } -.to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; +.hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } -.to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; +.hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } -.to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; +.hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } -.to-indigo-400 { - --tw-gradient-to: #818cf8 !important; +.hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } -.to-indigo-500 { - --tw-gradient-to: #6366f1 !important; +.hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } -.to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; +.hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } -.to-indigo-700 { - --tw-gradient-to: #4338ca !important; +.hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } -.to-indigo-800 { - --tw-gradient-to: #3730a3 !important; +.hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } -.to-indigo-900 { - --tw-gradient-to: #312e81 !important; +.hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } -.to-purple-50 { - --tw-gradient-to: #f5f3ff !important; +.hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } -.to-purple-100 { - --tw-gradient-to: #ede9fe !important; +.hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } -.to-purple-200 { - --tw-gradient-to: #ddd6fe !important; +.hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } -.to-purple-300 { - --tw-gradient-to: #c4b5fd !important; +.hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } -.to-purple-400 { - --tw-gradient-to: #a78bfa !important; +.hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } -.to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; +.hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } -.to-purple-600 { - --tw-gradient-to: #7c3aed !important; +.hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } -.to-purple-700 { - --tw-gradient-to: #6d28d9 !important; +.hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } -.to-purple-800 { - --tw-gradient-to: #5b21b6 !important; +.hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } -.to-purple-900 { - --tw-gradient-to: #4c1d95 !important; +.hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } -.to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; +.hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } -.to-pink-100 { - --tw-gradient-to: #fce7f3 !important; +.hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } -.to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; +.hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } -.to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; +.hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } -.to-pink-400 { - --tw-gradient-to: #f472b6 !important; +.hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } -.to-pink-500 { - --tw-gradient-to: #ec4899 !important; +.hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } -.to-pink-600 { - --tw-gradient-to: #db2777 !important; +.hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } -.to-pink-700 { - --tw-gradient-to: #be185d !important; +.hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } -.to-pink-800 { - --tw-gradient-to: #9d174d !important; +.hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } -.to-pink-900 { - --tw-gradient-to: #831843 !important; +.hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } -.hover\:from-transparent:hover { +.focus\:from-transparent:focus { --tw-gradient-from: transparent !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.hover\:from-current:hover { +.focus\:from-current:focus { --tw-gradient-from: currentColor !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.hover\:from-black:hover { +.focus\:from-black:focus { --tw-gradient-from: #000 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.hover\:from-white:hover { +.focus\:from-white:focus { --tw-gradient-from: #fff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.hover\:from-gray-50:hover { +.focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } -.hover\:from-gray-100:hover { +.focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } -.hover\:from-gray-200:hover { +.focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } -.hover\:from-gray-300:hover { +.focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } -.hover\:from-gray-400:hover { +.focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } -.hover\:from-gray-500:hover { +.focus\:from-gray-500:focus { --tw-gradient-from: #6b7280 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } -.hover\:from-gray-600:hover { +.focus\:from-gray-600:focus { --tw-gradient-from: #4b5563 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } -.hover\:from-gray-700:hover { +.focus\:from-gray-700:focus { --tw-gradient-from: #374151 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } -.hover\:from-gray-800:hover { +.focus\:from-gray-800:focus { --tw-gradient-from: #1f2937 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } -.hover\:from-gray-900:hover { +.focus\:from-gray-900:focus { --tw-gradient-from: #111827 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } -.hover\:from-red-50:hover { +.focus\:from-red-50:focus { --tw-gradient-from: #fef2f2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } -.hover\:from-red-100:hover { +.focus\:from-red-100:focus { --tw-gradient-from: #fee2e2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } -.hover\:from-red-200:hover { +.focus\:from-red-200:focus { --tw-gradient-from: #fecaca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } -.hover\:from-red-300:hover { +.focus\:from-red-300:focus { --tw-gradient-from: #fca5a5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } -.hover\:from-red-400:hover { +.focus\:from-red-400:focus { --tw-gradient-from: #f87171 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } -.hover\:from-red-500:hover { +.focus\:from-red-500:focus { --tw-gradient-from: #ef4444 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } -.hover\:from-red-600:hover { +.focus\:from-red-600:focus { --tw-gradient-from: #dc2626 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } -.hover\:from-red-700:hover { +.focus\:from-red-700:focus { --tw-gradient-from: #b91c1c !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } -.hover\:from-red-800:hover { +.focus\:from-red-800:focus { --tw-gradient-from: #991b1b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } -.hover\:from-red-900:hover { +.focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } -.hover\:from-yellow-50:hover { +.focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } -.hover\:from-yellow-100:hover { +.focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } -.hover\:from-yellow-200:hover { +.focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } -.hover\:from-yellow-300:hover { +.focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } -.hover\:from-yellow-400:hover { +.focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } -.hover\:from-yellow-500:hover { +.focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } -.hover\:from-yellow-600:hover { +.focus\:from-yellow-600:focus { --tw-gradient-from: #d97706 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } -.hover\:from-yellow-700:hover { +.focus\:from-yellow-700:focus { --tw-gradient-from: #b45309 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } -.hover\:from-yellow-800:hover { +.focus\:from-yellow-800:focus { --tw-gradient-from: #92400e !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } -.hover\:from-yellow-900:hover { +.focus\:from-yellow-900:focus { --tw-gradient-from: #78350f !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } -.hover\:from-green-50:hover { +.focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } -.hover\:from-green-100:hover { +.focus\:from-green-100:focus { --tw-gradient-from: #d1fae5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } -.hover\:from-green-200:hover { +.focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } -.hover\:from-green-300:hover { +.focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } -.hover\:from-green-400:hover { +.focus\:from-green-400:focus { --tw-gradient-from: #34d399 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } -.hover\:from-green-500:hover { +.focus\:from-green-500:focus { --tw-gradient-from: #10b981 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } -.hover\:from-green-600:hover { +.focus\:from-green-600:focus { --tw-gradient-from: #059669 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } -.hover\:from-green-700:hover { +.focus\:from-green-700:focus { --tw-gradient-from: #047857 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } -.hover\:from-green-800:hover { +.focus\:from-green-800:focus { --tw-gradient-from: #065f46 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } -.hover\:from-green-900:hover { +.focus\:from-green-900:focus { --tw-gradient-from: #064e3b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } -.hover\:from-blue-50:hover { +.focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } -.hover\:from-blue-100:hover { +.focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } -.hover\:from-blue-200:hover { +.focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } -.hover\:from-blue-300:hover { +.focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } -.hover\:from-blue-400:hover { +.focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } -.hover\:from-blue-500:hover { +.focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } -.hover\:from-blue-600:hover { +.focus\:from-blue-600:focus { --tw-gradient-from: #2563eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } -.hover\:from-blue-700:hover { +.focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } -.hover\:from-blue-800:hover { +.focus\:from-blue-800:focus { --tw-gradient-from: #1e40af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } -.hover\:from-blue-900:hover { +.focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } -.hover\:from-indigo-50:hover { +.focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } -.hover\:from-indigo-100:hover { +.focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } -.hover\:from-indigo-200:hover { +.focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } -.hover\:from-indigo-300:hover { +.focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } -.hover\:from-indigo-400:hover { +.focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } -.hover\:from-indigo-500:hover { +.focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } -.hover\:from-indigo-600:hover { +.focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } -.hover\:from-indigo-700:hover { +.focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } -.hover\:from-indigo-800:hover { +.focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } -.hover\:from-indigo-900:hover { +.focus\:from-indigo-900:focus { --tw-gradient-from: #312e81 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } -.hover\:from-purple-50:hover { +.focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } -.hover\:from-purple-100:hover { +.focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } -.hover\:from-purple-200:hover { +.focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } -.hover\:from-purple-300:hover { +.focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } -.hover\:from-purple-400:hover { +.focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } -.hover\:from-purple-500:hover { +.focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } -.hover\:from-purple-600:hover { +.focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } -.hover\:from-purple-700:hover { +.focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } -.hover\:from-purple-800:hover { +.focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } -.hover\:from-purple-900:hover { +.focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } -.hover\:from-pink-50:hover { +.focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } -.hover\:from-pink-100:hover { +.focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } -.hover\:from-pink-200:hover { +.focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } -.hover\:from-pink-300:hover { +.focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } -.hover\:from-pink-400:hover { +.focus\:from-pink-400:focus { --tw-gradient-from: #f472b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } -.hover\:from-pink-500:hover { +.focus\:from-pink-500:focus { --tw-gradient-from: #ec4899 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } -.hover\:from-pink-600:hover { +.focus\:from-pink-600:focus { --tw-gradient-from: #db2777 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } -.hover\:from-pink-700:hover { +.focus\:from-pink-700:focus { --tw-gradient-from: #be185d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } -.hover\:from-pink-800:hover { +.focus\:from-pink-800:focus { --tw-gradient-from: #9d174d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } -.hover\:from-pink-900:hover { +.focus\:from-pink-900:focus { --tw-gradient-from: #831843 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } -.hover\:via-transparent:hover { +.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.hover\:via-current:hover { +.via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.hover\:via-black:hover { +.via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.hover\:via-white:hover { +.via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.hover\:via-gray-50:hover { +.via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } -.hover\:via-gray-100:hover { +.via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } -.hover\:via-gray-200:hover { +.via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } -.hover\:via-gray-300:hover { +.via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } -.hover\:via-gray-400:hover { +.via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } -.hover\:via-gray-500:hover { +.via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } -.hover\:via-gray-600:hover { +.via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } -.hover\:via-gray-700:hover { +.via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } -.hover\:via-gray-800:hover { +.via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } -.hover\:via-gray-900:hover { +.via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } -.hover\:via-red-50:hover { +.via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } -.hover\:via-red-100:hover { +.via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } -.hover\:via-red-200:hover { +.via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } -.hover\:via-red-300:hover { +.via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } -.hover\:via-red-400:hover { +.via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } -.hover\:via-red-500:hover { +.via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } -.hover\:via-red-600:hover { +.via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } -.hover\:via-red-700:hover { +.via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } -.hover\:via-red-800:hover { +.via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } -.hover\:via-red-900:hover { +.via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } -.hover\:via-yellow-50:hover { +.via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } -.hover\:via-yellow-100:hover { +.via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } -.hover\:via-yellow-200:hover { +.via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } -.hover\:via-yellow-300:hover { +.via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } -.hover\:via-yellow-400:hover { +.via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } -.hover\:via-yellow-500:hover { +.via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } -.hover\:via-yellow-600:hover { +.via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } -.hover\:via-yellow-700:hover { +.via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } -.hover\:via-yellow-800:hover { +.via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } -.hover\:via-yellow-900:hover { +.via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } -.hover\:via-green-50:hover { +.via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } -.hover\:via-green-100:hover { +.via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } -.hover\:via-green-200:hover { +.via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } -.hover\:via-green-300:hover { +.via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } -.hover\:via-green-400:hover { +.via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } -.hover\:via-green-500:hover { +.via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } -.hover\:via-green-600:hover { +.via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } -.hover\:via-green-700:hover { +.via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } -.hover\:via-green-800:hover { +.via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } -.hover\:via-green-900:hover { +.via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } -.hover\:via-blue-50:hover { +.via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } -.hover\:via-blue-100:hover { +.via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } -.hover\:via-blue-200:hover { +.via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } -.hover\:via-blue-300:hover { +.via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } -.hover\:via-blue-400:hover { +.via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } -.hover\:via-blue-500:hover { +.via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } -.hover\:via-blue-600:hover { +.via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } -.hover\:via-blue-700:hover { +.via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } -.hover\:via-blue-800:hover { +.via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } -.hover\:via-blue-900:hover { +.via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } -.hover\:via-indigo-50:hover { +.via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } -.hover\:via-indigo-100:hover { +.via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } -.hover\:via-indigo-200:hover { +.via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } -.hover\:via-indigo-300:hover { +.via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } -.hover\:via-indigo-400:hover { +.via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } -.hover\:via-indigo-500:hover { +.via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } -.hover\:via-indigo-600:hover { +.via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } -.hover\:via-indigo-700:hover { +.via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } -.hover\:via-indigo-800:hover { +.via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } -.hover\:via-indigo-900:hover { +.via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } -.hover\:via-purple-50:hover { +.via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } -.hover\:via-purple-100:hover { +.via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } -.hover\:via-purple-200:hover { +.via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } -.hover\:via-purple-300:hover { +.via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } -.hover\:via-purple-400:hover { +.via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } -.hover\:via-purple-500:hover { +.via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } -.hover\:via-purple-600:hover { +.via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } -.hover\:via-purple-700:hover { +.via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } -.hover\:via-purple-800:hover { +.via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } -.hover\:via-purple-900:hover { +.via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } -.hover\:via-pink-50:hover { +.via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } -.hover\:via-pink-100:hover { +.via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } -.hover\:via-pink-200:hover { +.via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } -.hover\:via-pink-300:hover { +.via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } -.hover\:via-pink-400:hover { +.via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } -.hover\:via-pink-500:hover { +.via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } -.hover\:via-pink-600:hover { +.via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } -.hover\:via-pink-700:hover { +.via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } -.hover\:via-pink-800:hover { +.via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } -.hover\:via-pink-900:hover { +.via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } -.hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; -} - -.hover\:to-current:hover { - --tw-gradient-to: currentColor !important; -} - -.hover\:to-black:hover { - --tw-gradient-to: #000 !important; -} - -.hover\:to-white:hover { - --tw-gradient-to: #fff !important; -} - -.hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; -} - -.hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; -} - -.hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; -} - -.hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; -} - -.hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; -} - -.hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; -} - -.hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; -} - -.hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; -} - -.hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; -} - -.hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; -} - -.hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; -} - -.hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; -} - -.hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; -} - -.hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; -} - -.hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; -} - -.hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; -} - -.hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; -} - -.hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; -} - -.hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; -} - -.hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; -} - -.hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; -} - -.hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; -} - -.hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; -} - -.hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; -} - -.hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; -} - -.hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; -} - -.hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; -} - -.hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; -} - -.hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; -} - -.hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; -} - -.hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; -} - -.hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; -} - -.hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; -} - -.hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; -} - -.hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; -} - -.hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; -} - -.hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; -} - -.hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; -} - -.hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; -} - -.hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; -} - -.hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; -} - -.hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; -} - -.hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; -} - -.hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; -} - -.hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; -} - -.hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; -} - -.hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; -} - -.hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; -} - -.hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; -} - -.hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; -} - -.hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; -} - -.hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; -} - -.hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; -} - -.hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; -} - -.hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; -} - -.hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; -} - -.hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; -} - -.hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; -} - -.hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; -} - -.hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; -} - -.hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; -} - -.hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; -} - -.hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; -} - -.hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; -} - -.hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; -} - -.hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; -} - -.hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; -} - -.hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; -} - -.hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; -} - -.hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; -} - -.hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; -} - -.hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; -} - -.hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; -} - -.hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; -} - -.hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; -} - -.hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; -} - -.hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; -} - -.hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; -} - -.hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; -} - -.hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; -} - -.focus\:from-transparent:focus { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.focus\:from-current:focus { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.focus\:from-black:focus { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } -.focus\:from-white:focus { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } -.focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } -.focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } -.focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } -.focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } -.focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } -.focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } -.focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } -.focus\:from-gray-700:focus { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } -.focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } -.focus\:from-gray-900:focus { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } -.focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } -.focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } -.focus\:from-red-200:focus { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } -.focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } -.focus\:from-red-400:focus { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } -.focus\:from-red-500:focus { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } -.focus\:from-red-600:focus { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } -.focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } -.focus\:from-red-800:focus { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } -.focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } -.focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } -.focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } -.focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } -.focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } -.focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } -.focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } -.focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } -.focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } -.focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } -.focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } -.focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } -.focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } -.focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } -.focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } -.focus\:from-green-400:focus { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } -.focus\:from-green-500:focus { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } -.focus\:from-green-600:focus { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } -.focus\:from-green-700:focus { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } -.focus\:from-green-800:focus { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } -.focus\:from-green-900:focus { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } -.focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } -.focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } -.focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } -.focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } -.focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } -.focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } -.focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } -.focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } -.focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } -.focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } -.focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } -.focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } -.focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } -.focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } -.focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } -.focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } -.focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } -.focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } -.focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } -.focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } -.focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; +.hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } -.focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; +.hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } -.focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; +.hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } -.focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; +.hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } -.focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; +.hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } -.focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; +.hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } -.focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; +.hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } -.focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; +.hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } -.focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; +.hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } -.focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; +.hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } -.focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; +.hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } -.focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; +.hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } -.focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; +.hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } -.focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; +.hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } -.focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; +.hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } -.focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; +.hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } -.focus\:from-pink-600:focus { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; +.hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } -.focus\:from-pink-700:focus { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; +.hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } -.focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; +.hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } -.focus\:from-pink-900:focus { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; +.hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } .focus\:via-transparent:focus { @@ -20557,6 +19885,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } +.to-transparent { + --tw-gradient-to: transparent !important; +} + +.to-current { + --tw-gradient-to: currentColor !important; +} + +.to-black { + --tw-gradient-to: #000 !important; +} + +.to-white { + --tw-gradient-to: #fff !important; +} + +.to-gray-50 { + --tw-gradient-to: #f9fafb !important; +} + +.to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; +} + +.to-gray-200 { + --tw-gradient-to: #e5e7eb !important; +} + +.to-gray-300 { + --tw-gradient-to: #d1d5db !important; +} + +.to-gray-400 { + --tw-gradient-to: #9ca3af !important; +} + +.to-gray-500 { + --tw-gradient-to: #6b7280 !important; +} + +.to-gray-600 { + --tw-gradient-to: #4b5563 !important; +} + +.to-gray-700 { + --tw-gradient-to: #374151 !important; +} + +.to-gray-800 { + --tw-gradient-to: #1f2937 !important; +} + +.to-gray-900 { + --tw-gradient-to: #111827 !important; +} + +.to-red-50 { + --tw-gradient-to: #fef2f2 !important; +} + +.to-red-100 { + --tw-gradient-to: #fee2e2 !important; +} + +.to-red-200 { + --tw-gradient-to: #fecaca !important; +} + +.to-red-300 { + --tw-gradient-to: #fca5a5 !important; +} + +.to-red-400 { + --tw-gradient-to: #f87171 !important; +} + +.to-red-500 { + --tw-gradient-to: #ef4444 !important; +} + +.to-red-600 { + --tw-gradient-to: #dc2626 !important; +} + +.to-red-700 { + --tw-gradient-to: #b91c1c !important; +} + +.to-red-800 { + --tw-gradient-to: #991b1b !important; +} + +.to-red-900 { + --tw-gradient-to: #7f1d1d !important; +} + +.to-yellow-50 { + --tw-gradient-to: #fffbeb !important; +} + +.to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; +} + +.to-yellow-200 { + --tw-gradient-to: #fde68a !important; +} + +.to-yellow-300 { + --tw-gradient-to: #fcd34d !important; +} + +.to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; +} + +.to-yellow-500 { + --tw-gradient-to: #f59e0b !important; +} + +.to-yellow-600 { + --tw-gradient-to: #d97706 !important; +} + +.to-yellow-700 { + --tw-gradient-to: #b45309 !important; +} + +.to-yellow-800 { + --tw-gradient-to: #92400e !important; +} + +.to-yellow-900 { + --tw-gradient-to: #78350f !important; +} + +.to-green-50 { + --tw-gradient-to: #ecfdf5 !important; +} + +.to-green-100 { + --tw-gradient-to: #d1fae5 !important; +} + +.to-green-200 { + --tw-gradient-to: #a7f3d0 !important; +} + +.to-green-300 { + --tw-gradient-to: #6ee7b7 !important; +} + +.to-green-400 { + --tw-gradient-to: #34d399 !important; +} + +.to-green-500 { + --tw-gradient-to: #10b981 !important; +} + +.to-green-600 { + --tw-gradient-to: #059669 !important; +} + +.to-green-700 { + --tw-gradient-to: #047857 !important; +} + +.to-green-800 { + --tw-gradient-to: #065f46 !important; +} + +.to-green-900 { + --tw-gradient-to: #064e3b !important; +} + +.to-blue-50 { + --tw-gradient-to: #eff6ff !important; +} + +.to-blue-100 { + --tw-gradient-to: #dbeafe !important; +} + +.to-blue-200 { + --tw-gradient-to: #bfdbfe !important; +} + +.to-blue-300 { + --tw-gradient-to: #93c5fd !important; +} + +.to-blue-400 { + --tw-gradient-to: #60a5fa !important; +} + +.to-blue-500 { + --tw-gradient-to: #3b82f6 !important; +} + +.to-blue-600 { + --tw-gradient-to: #2563eb !important; +} + +.to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; +} + +.to-blue-800 { + --tw-gradient-to: #1e40af !important; +} + +.to-blue-900 { + --tw-gradient-to: #1e3a8a !important; +} + +.to-indigo-50 { + --tw-gradient-to: #eef2ff !important; +} + +.to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; +} + +.to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; +} + +.to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; +} + +.to-indigo-400 { + --tw-gradient-to: #818cf8 !important; +} + +.to-indigo-500 { + --tw-gradient-to: #6366f1 !important; +} + +.to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; +} + +.to-indigo-700 { + --tw-gradient-to: #4338ca !important; +} + +.to-indigo-800 { + --tw-gradient-to: #3730a3 !important; +} + +.to-indigo-900 { + --tw-gradient-to: #312e81 !important; +} + +.to-purple-50 { + --tw-gradient-to: #f5f3ff !important; +} + +.to-purple-100 { + --tw-gradient-to: #ede9fe !important; +} + +.to-purple-200 { + --tw-gradient-to: #ddd6fe !important; +} + +.to-purple-300 { + --tw-gradient-to: #c4b5fd !important; +} + +.to-purple-400 { + --tw-gradient-to: #a78bfa !important; +} + +.to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; +} + +.to-purple-600 { + --tw-gradient-to: #7c3aed !important; +} + +.to-purple-700 { + --tw-gradient-to: #6d28d9 !important; +} + +.to-purple-800 { + --tw-gradient-to: #5b21b6 !important; +} + +.to-purple-900 { + --tw-gradient-to: #4c1d95 !important; +} + +.to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; +} + +.to-pink-100 { + --tw-gradient-to: #fce7f3 !important; +} + +.to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; +} + +.to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; +} + +.to-pink-400 { + --tw-gradient-to: #f472b6 !important; +} + +.to-pink-500 { + --tw-gradient-to: #ec4899 !important; +} + +.to-pink-600 { + --tw-gradient-to: #db2777 !important; +} + +.to-pink-700 { + --tw-gradient-to: #be185d !important; +} + +.to-pink-800 { + --tw-gradient-to: #9d174d !important; +} + +.to-pink-900 { + --tw-gradient-to: #831843 !important; +} + +.hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; +} + +.hover\:to-current:hover { + --tw-gradient-to: currentColor !important; +} + +.hover\:to-black:hover { + --tw-gradient-to: #000 !important; +} + +.hover\:to-white:hover { + --tw-gradient-to: #fff !important; +} + +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; +} + +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; +} + +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; +} + +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; +} + +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; +} + +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; +} + +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; +} + +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; +} + +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; +} + +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; +} + +.hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; +} + +.hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; +} + +.hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; +} + +.hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; +} + +.hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; +} + +.hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; +} + +.hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; +} + +.hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; +} + +.hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; +} + +.hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; +} + +.hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; +} + +.hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; +} + +.hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; +} + +.hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; +} + +.hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; +} + +.hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; +} + +.hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; +} + +.hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; +} + +.hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; +} + +.hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; +} + +.hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; +} + +.hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; +} + +.hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; +} + +.hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; +} + +.hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; +} + +.hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; +} + +.hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; +} + +.hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; +} + +.hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; +} + +.hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; +} + +.hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; +} + +.hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; +} + +.hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; +} + +.hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; +} + +.hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; +} + +.hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; +} + +.hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; +} + +.hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; +} + +.hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; +} + +.hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; +} + +.hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; +} + +.hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; +} + +.hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; +} + +.hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; +} + +.hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; +} + +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; +} + +.hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; +} + +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; +} + +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; +} + +.hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; +} + +.hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; +} + +.hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; +} + +.hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; +} + +.hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; +} + +.hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; +} + +.hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; +} + +.hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; +} + +.hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; +} + +.hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; +} + +.hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; +} + +.hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; +} + +.hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; +} + +.hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; +} + +.hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; +} + +.hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; +} + +.hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; +} + +.hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; +} + +.hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; +} + +.hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; +} + +.hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; +} + .focus\:to-transparent:focus { --tw-gradient-to: transparent !important; } @@ -26579,10 +26579,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.ring-inset { - --tw-ring-inset: inset !important; -} - .focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -26619,10 +26615,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } -.focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !important; -} - .focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -26659,6 +26651,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } +.ring-inset { + --tw-ring-inset: inset !important; +} + +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; +} + .focus\:ring-inset:focus { --tw-ring-inset: inset !important; } @@ -30419,116 +30419,541 @@ video { left: -0.375rem !important; } - .sm\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; + .sm\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .sm\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .sm\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .sm\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .sm\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .sm\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .sm\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .sm\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .sm\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .sm\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .sm\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .sm\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .sm\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .sm\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .sm\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .sm\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .sm\:inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .sm\:inset-x-1 { + left: 0.25rem !important; + right: 0.25rem !important; + } + + .sm\:inset-x-2 { + left: 0.5rem !important; + right: 0.5rem !important; + } + + .sm\:inset-x-3 { + left: 0.75rem !important; + right: 0.75rem !important; + } + + .sm\:inset-x-4 { + left: 1rem !important; + right: 1rem !important; + } + + .sm\:inset-x-5 { + left: 1.25rem !important; + right: 1.25rem !important; + } + + .sm\:inset-x-6 { + left: 1.5rem !important; + right: 1.5rem !important; + } + + .sm\:inset-x-7 { + left: 1.75rem !important; + right: 1.75rem !important; + } + + .sm\:inset-x-8 { + left: 2rem !important; + right: 2rem !important; + } + + .sm\:inset-x-9 { + left: 2.25rem !important; + right: 2.25rem !important; + } + + .sm\:inset-x-10 { + left: 2.5rem !important; + right: 2.5rem !important; + } + + .sm\:inset-x-11 { + left: 2.75rem !important; + right: 2.75rem !important; + } + + .sm\:inset-x-12 { + left: 3rem !important; + right: 3rem !important; + } + + .sm\:inset-x-14 { + left: 3.5rem !important; + right: 3.5rem !important; + } + + .sm\:inset-x-16 { + left: 4rem !important; + right: 4rem !important; + } + + .sm\:inset-x-20 { + left: 5rem !important; + right: 5rem !important; + } + + .sm\:inset-x-24 { + left: 6rem !important; + right: 6rem !important; + } + + .sm\:inset-x-28 { + left: 7rem !important; + right: 7rem !important; + } + + .sm\:inset-x-32 { + left: 8rem !important; + right: 8rem !important; + } + + .sm\:inset-x-36 { + left: 9rem !important; + right: 9rem !important; + } + + .sm\:inset-x-40 { + left: 10rem !important; + right: 10rem !important; + } + + .sm\:inset-x-44 { + left: 11rem !important; + right: 11rem !important; + } + + .sm\:inset-x-48 { + left: 12rem !important; + right: 12rem !important; + } + + .sm\:inset-x-52 { + left: 13rem !important; + right: 13rem !important; + } + + .sm\:inset-x-56 { + left: 14rem !important; + right: 14rem !important; + } + + .sm\:inset-x-60 { + left: 15rem !important; + right: 15rem !important; + } + + .sm\:inset-x-64 { + left: 16rem !important; + right: 16rem !important; + } + + .sm\:inset-x-72 { + left: 18rem !important; + right: 18rem !important; + } + + .sm\:inset-x-80 { + left: 20rem !important; + right: 20rem !important; + } + + .sm\:inset-x-96 { + left: 24rem !important; + right: 24rem !important; + } + + .sm\:inset-x-auto { + left: auto !important; + right: auto !important; + } + + .sm\:inset-x-px { + left: 1px !important; + right: 1px !important; + } + + .sm\:inset-x-0\.5 { + left: 0.125rem !important; + right: 0.125rem !important; + } + + .sm\:inset-x-1\.5 { + left: 0.375rem !important; + right: 0.375rem !important; + } + + .sm\:inset-x-2\.5 { + left: 0.625rem !important; + right: 0.625rem !important; + } + + .sm\:inset-x-3\.5 { + left: 0.875rem !important; + right: 0.875rem !important; + } + + .sm\:-inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .sm\:-inset-x-1 { + left: -0.25rem !important; + right: -0.25rem !important; + } + + .sm\:-inset-x-2 { + left: -0.5rem !important; + right: -0.5rem !important; + } + + .sm\:-inset-x-3 { + left: -0.75rem !important; + right: -0.75rem !important; + } + + .sm\:-inset-x-4 { + left: -1rem !important; + right: -1rem !important; + } + + .sm\:-inset-x-5 { + left: -1.25rem !important; + right: -1.25rem !important; + } + + .sm\:-inset-x-6 { + left: -1.5rem !important; + right: -1.5rem !important; + } + + .sm\:-inset-x-7 { + left: -1.75rem !important; + right: -1.75rem !important; + } + + .sm\:-inset-x-8 { + left: -2rem !important; + right: -2rem !important; + } + + .sm\:-inset-x-9 { + left: -2.25rem !important; + right: -2.25rem !important; + } + + .sm\:-inset-x-10 { + left: -2.5rem !important; + right: -2.5rem !important; + } + + .sm\:-inset-x-11 { + left: -2.75rem !important; + right: -2.75rem !important; + } + + .sm\:-inset-x-12 { + left: -3rem !important; + right: -3rem !important; + } + + .sm\:-inset-x-14 { + left: -3.5rem !important; + right: -3.5rem !important; + } + + .sm\:-inset-x-16 { + left: -4rem !important; + right: -4rem !important; + } + + .sm\:-inset-x-20 { + left: -5rem !important; + right: -5rem !important; + } + + .sm\:-inset-x-24 { + left: -6rem !important; + right: -6rem !important; + } + + .sm\:-inset-x-28 { + left: -7rem !important; + right: -7rem !important; + } + + .sm\:-inset-x-32 { + left: -8rem !important; + right: -8rem !important; + } + + .sm\:-inset-x-36 { + left: -9rem !important; + right: -9rem !important; + } + + .sm\:-inset-x-40 { + left: -10rem !important; + right: -10rem !important; + } + + .sm\:-inset-x-44 { + left: -11rem !important; + right: -11rem !important; + } + + .sm\:-inset-x-48 { + left: -12rem !important; + right: -12rem !important; + } + + .sm\:-inset-x-52 { + left: -13rem !important; + right: -13rem !important; + } + + .sm\:-inset-x-56 { + left: -14rem !important; + right: -14rem !important; + } + + .sm\:-inset-x-60 { + left: -15rem !important; + right: -15rem !important; + } + + .sm\:-inset-x-64 { + left: -16rem !important; + right: -16rem !important; + } + + .sm\:-inset-x-72 { + left: -18rem !important; + right: -18rem !important; + } + + .sm\:-inset-x-80 { + left: -20rem !important; + right: -20rem !important; + } + + .sm\:-inset-x-96 { + left: -24rem !important; + right: -24rem !important; + } + + .sm\:-inset-x-px { + left: -1px !important; + right: -1px !important; + } + + .sm\:-inset-x-0\.5 { + left: -0.125rem !important; + right: -0.125rem !important; + } + + .sm\:-inset-x-1\.5 { + left: -0.375rem !important; + right: -0.375rem !important; + } + + .sm\:-inset-x-2\.5 { left: -0.625rem !important; + right: -0.625rem !important; } - .sm\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; + .sm\:-inset-x-3\.5 { left: -0.875rem !important; + right: -0.875rem !important; } - .sm\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .sm\:inset-x-1\/2 { left: 50% !important; + right: 50% !important; } - .sm\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; + .sm\:inset-x-1\/3 { left: 33.333333% !important; + right: 33.333333% !important; } - .sm\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; + .sm\:inset-x-2\/3 { left: 66.666667% !important; + right: 66.666667% !important; } - .sm\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; + .sm\:inset-x-1\/4 { left: 25% !important; + right: 25% !important; } - .sm\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .sm\:inset-x-2\/4 { left: 50% !important; + right: 50% !important; } - .sm\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; + .sm\:inset-x-3\/4 { left: 75% !important; + right: 75% !important; } - .sm\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; + .sm\:inset-x-full { left: 100% !important; + right: 100% !important; } - .sm\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .sm\:-inset-x-1\/2 { left: -50% !important; + right: -50% !important; } - .sm\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; + .sm\:-inset-x-1\/3 { left: -33.333333% !important; + right: -33.333333% !important; } - .sm\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; + .sm\:-inset-x-2\/3 { left: -66.666667% !important; + right: -66.666667% !important; } - .sm\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; + .sm\:-inset-x-1\/4 { left: -25% !important; + right: -25% !important; } - .sm\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .sm\:-inset-x-2\/4 { left: -50% !important; + right: -50% !important; } - .sm\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; + .sm\:-inset-x-3\/4 { left: -75% !important; + right: -75% !important; } - .sm\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; + .sm\:-inset-x-full { left: -100% !important; + right: -100% !important; } .sm\:inset-y-0 { @@ -30536,2205 +30961,1780 @@ video { bottom: 0px !important; } - .sm\:inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .sm\:inset-y-1 { top: 0.25rem !important; bottom: 0.25rem !important; } - .sm\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; - } - .sm\:inset-y-2 { top: 0.5rem !important; bottom: 0.5rem !important; } - .sm\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; - } - .sm\:inset-y-3 { top: 0.75rem !important; bottom: 0.75rem !important; } - .sm\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; - } - .sm\:inset-y-4 { top: 1rem !important; bottom: 1rem !important; } - .sm\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; - } - .sm\:inset-y-5 { top: 1.25rem !important; bottom: 1.25rem !important; } - .sm\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; - } - .sm\:inset-y-6 { top: 1.5rem !important; bottom: 1.5rem !important; } - .sm\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; - } - .sm\:inset-y-7 { top: 1.75rem !important; bottom: 1.75rem !important; } - .sm\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; - } - .sm\:inset-y-8 { top: 2rem !important; bottom: 2rem !important; } - .sm\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; - } - .sm\:inset-y-9 { top: 2.25rem !important; bottom: 2.25rem !important; } - .sm\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; - } - .sm\:inset-y-10 { top: 2.5rem !important; bottom: 2.5rem !important; } - .sm\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; - } - .sm\:inset-y-11 { top: 2.75rem !important; bottom: 2.75rem !important; } - .sm\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; - } - .sm\:inset-y-12 { top: 3rem !important; bottom: 3rem !important; } - .sm\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; - } - .sm\:inset-y-14 { top: 3.5rem !important; bottom: 3.5rem !important; } - .sm\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; - } - .sm\:inset-y-16 { top: 4rem !important; bottom: 4rem !important; } - .sm\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; - } - .sm\:inset-y-20 { top: 5rem !important; bottom: 5rem !important; } - .sm\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; - } - .sm\:inset-y-24 { top: 6rem !important; bottom: 6rem !important; } - .sm\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; - } - .sm\:inset-y-28 { top: 7rem !important; bottom: 7rem !important; } - .sm\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; - } - .sm\:inset-y-32 { top: 8rem !important; bottom: 8rem !important; } - .sm\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; - } - .sm\:inset-y-36 { top: 9rem !important; bottom: 9rem !important; } - .sm\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; - } - .sm\:inset-y-40 { top: 10rem !important; bottom: 10rem !important; } - .sm\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; - } - .sm\:inset-y-44 { top: 11rem !important; bottom: 11rem !important; } - .sm\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; - } - .sm\:inset-y-48 { top: 12rem !important; bottom: 12rem !important; } - .sm\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; - } - .sm\:inset-y-52 { top: 13rem !important; bottom: 13rem !important; } - .sm\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; - } - .sm\:inset-y-56 { top: 14rem !important; bottom: 14rem !important; } - .sm\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; - } - .sm\:inset-y-60 { top: 15rem !important; bottom: 15rem !important; } - .sm\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; - } - .sm\:inset-y-64 { top: 16rem !important; bottom: 16rem !important; } - .sm\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; - } - .sm\:inset-y-72 { top: 18rem !important; bottom: 18rem !important; } - .sm\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; - } - .sm\:inset-y-80 { top: 20rem !important; bottom: 20rem !important; } - .sm\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; - } - .sm\:inset-y-96 { top: 24rem !important; bottom: 24rem !important; } - .sm\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; - } - .sm\:inset-y-auto { top: auto !important; bottom: auto !important; } - .sm\:inset-x-auto { - right: auto !important; - left: auto !important; - } - .sm\:inset-y-px { top: 1px !important; bottom: 1px !important; } - .sm\:inset-x-px { - right: 1px !important; - left: 1px !important; - } - .sm\:inset-y-0\.5 { top: 0.125rem !important; bottom: 0.125rem !important; } - .sm\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; - } - .sm\:inset-y-1\.5 { top: 0.375rem !important; bottom: 0.375rem !important; } - .sm\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; - } - .sm\:inset-y-2\.5 { top: 0.625rem !important; bottom: 0.625rem !important; } - .sm\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; - } - .sm\:inset-y-3\.5 { top: 0.875rem !important; bottom: 0.875rem !important; } - .sm\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; - } - .sm\:-inset-y-0 { top: 0px !important; bottom: 0px !important; } - .sm\:-inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .sm\:-inset-y-1 { top: -0.25rem !important; bottom: -0.25rem !important; } - .sm\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; - } - .sm\:-inset-y-2 { top: -0.5rem !important; bottom: -0.5rem !important; } - .sm\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; - } - .sm\:-inset-y-3 { top: -0.75rem !important; bottom: -0.75rem !important; } - .sm\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; - } - .sm\:-inset-y-4 { top: -1rem !important; bottom: -1rem !important; } - .sm\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; - } - .sm\:-inset-y-5 { top: -1.25rem !important; bottom: -1.25rem !important; } - .sm\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; - } - .sm\:-inset-y-6 { top: -1.5rem !important; bottom: -1.5rem !important; } - .sm\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; - } - .sm\:-inset-y-7 { top: -1.75rem !important; bottom: -1.75rem !important; } - .sm\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; - } - .sm\:-inset-y-8 { top: -2rem !important; bottom: -2rem !important; } - .sm\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; - } - .sm\:-inset-y-9 { top: -2.25rem !important; bottom: -2.25rem !important; } - .sm\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; - } - .sm\:-inset-y-10 { top: -2.5rem !important; bottom: -2.5rem !important; } - .sm\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; - } - .sm\:-inset-y-11 { top: -2.75rem !important; bottom: -2.75rem !important; } - .sm\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; - } - .sm\:-inset-y-12 { top: -3rem !important; bottom: -3rem !important; } - .sm\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; - } - .sm\:-inset-y-14 { top: -3.5rem !important; bottom: -3.5rem !important; } - .sm\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; - } - .sm\:-inset-y-16 { top: -4rem !important; bottom: -4rem !important; } - .sm\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; - } - .sm\:-inset-y-20 { top: -5rem !important; bottom: -5rem !important; } - .sm\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; - } - .sm\:-inset-y-24 { top: -6rem !important; bottom: -6rem !important; } - .sm\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; - } - .sm\:-inset-y-28 { top: -7rem !important; bottom: -7rem !important; } - .sm\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; - } - .sm\:-inset-y-32 { top: -8rem !important; bottom: -8rem !important; } - .sm\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; - } - .sm\:-inset-y-36 { top: -9rem !important; bottom: -9rem !important; } - .sm\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; - } - .sm\:-inset-y-40 { top: -10rem !important; bottom: -10rem !important; } - .sm\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; - } - .sm\:-inset-y-44 { top: -11rem !important; bottom: -11rem !important; } - .sm\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; - } - .sm\:-inset-y-48 { top: -12rem !important; bottom: -12rem !important; } - .sm\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; - } - .sm\:-inset-y-52 { top: -13rem !important; bottom: -13rem !important; } - .sm\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; - } - .sm\:-inset-y-56 { top: -14rem !important; bottom: -14rem !important; } - .sm\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; - } - .sm\:-inset-y-60 { top: -15rem !important; bottom: -15rem !important; } - .sm\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; - } - .sm\:-inset-y-64 { top: -16rem !important; bottom: -16rem !important; } - .sm\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; - } - .sm\:-inset-y-72 { top: -18rem !important; bottom: -18rem !important; } - .sm\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; - } - .sm\:-inset-y-80 { top: -20rem !important; bottom: -20rem !important; } - .sm\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; - } - .sm\:-inset-y-96 { top: -24rem !important; bottom: -24rem !important; } - .sm\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; - } - .sm\:-inset-y-px { top: -1px !important; bottom: -1px !important; } - .sm\:-inset-x-px { - right: -1px !important; - left: -1px !important; - } - .sm\:-inset-y-0\.5 { top: -0.125rem !important; bottom: -0.125rem !important; } - .sm\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; - } - .sm\:-inset-y-1\.5 { top: -0.375rem !important; bottom: -0.375rem !important; } - .sm\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; - } - .sm\:-inset-y-2\.5 { top: -0.625rem !important; bottom: -0.625rem !important; } - .sm\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; - } - .sm\:-inset-y-3\.5 { top: -0.875rem !important; bottom: -0.875rem !important; } - .sm\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; - } - .sm\:inset-y-1\/2 { top: 50% !important; bottom: 50% !important; } - .sm\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; - } - .sm\:inset-y-1\/3 { top: 33.333333% !important; bottom: 33.333333% !important; } - .sm\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; - } - .sm\:inset-y-2\/3 { top: 66.666667% !important; bottom: 66.666667% !important; } - .sm\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; - } - .sm\:inset-y-1\/4 { top: 25% !important; bottom: 25% !important; } - .sm\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; - } - .sm\:inset-y-2\/4 { top: 50% !important; bottom: 50% !important; } - .sm\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; - } - .sm\:inset-y-3\/4 { top: 75% !important; bottom: 75% !important; } - .sm\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; - } - .sm\:inset-y-full { top: 100% !important; bottom: 100% !important; } - .sm\:inset-x-full { - right: 100% !important; - left: 100% !important; - } - .sm\:-inset-y-1\/2 { top: -50% !important; bottom: -50% !important; } - .sm\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; - } - .sm\:-inset-y-1\/3 { top: -33.333333% !important; bottom: -33.333333% !important; } - .sm\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; - } - .sm\:-inset-y-2\/3 { top: -66.666667% !important; bottom: -66.666667% !important; } - .sm\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; - } - .sm\:-inset-y-1\/4 { top: -25% !important; bottom: -25% !important; } - .sm\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; - } - .sm\:-inset-y-2\/4 { top: -50% !important; bottom: -50% !important; } - .sm\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; - } - .sm\:-inset-y-3\/4 { top: -75% !important; bottom: -75% !important; } - .sm\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; - } - .sm\:-inset-y-full { top: -100% !important; bottom: -100% !important; } - .sm\:-inset-x-full { - right: -100% !important; - left: -100% !important; - } - .sm\:top-0 { top: 0px !important; } - .sm\:right-0 { - right: 0px !important; + .sm\:top-1 { + top: 0.25rem !important; } - .sm\:bottom-0 { - bottom: 0px !important; + .sm\:top-2 { + top: 0.5rem !important; } - .sm\:left-0 { - left: 0px !important; + .sm\:top-3 { + top: 0.75rem !important; } - .sm\:top-1 { - top: 0.25rem !important; + .sm\:top-4 { + top: 1rem !important; } - .sm\:right-1 { - right: 0.25rem !important; + .sm\:top-5 { + top: 1.25rem !important; } - .sm\:bottom-1 { - bottom: 0.25rem !important; + .sm\:top-6 { + top: 1.5rem !important; } - .sm\:left-1 { - left: 0.25rem !important; + .sm\:top-7 { + top: 1.75rem !important; } - .sm\:top-2 { - top: 0.5rem !important; + .sm\:top-8 { + top: 2rem !important; } - .sm\:right-2 { - right: 0.5rem !important; + .sm\:top-9 { + top: 2.25rem !important; } - .sm\:bottom-2 { - bottom: 0.5rem !important; + .sm\:top-10 { + top: 2.5rem !important; } - .sm\:left-2 { - left: 0.5rem !important; + .sm\:top-11 { + top: 2.75rem !important; } - .sm\:top-3 { - top: 0.75rem !important; + .sm\:top-12 { + top: 3rem !important; } - .sm\:right-3 { - right: 0.75rem !important; + .sm\:top-14 { + top: 3.5rem !important; } - .sm\:bottom-3 { - bottom: 0.75rem !important; + .sm\:top-16 { + top: 4rem !important; } - .sm\:left-3 { - left: 0.75rem !important; + .sm\:top-20 { + top: 5rem !important; } - .sm\:top-4 { - top: 1rem !important; + .sm\:top-24 { + top: 6rem !important; } - .sm\:right-4 { - right: 1rem !important; + .sm\:top-28 { + top: 7rem !important; } - .sm\:bottom-4 { - bottom: 1rem !important; + .sm\:top-32 { + top: 8rem !important; } - .sm\:left-4 { - left: 1rem !important; + .sm\:top-36 { + top: 9rem !important; } - .sm\:top-5 { - top: 1.25rem !important; + .sm\:top-40 { + top: 10rem !important; } - .sm\:right-5 { - right: 1.25rem !important; + .sm\:top-44 { + top: 11rem !important; } - .sm\:bottom-5 { - bottom: 1.25rem !important; + .sm\:top-48 { + top: 12rem !important; } - .sm\:left-5 { - left: 1.25rem !important; + .sm\:top-52 { + top: 13rem !important; } - .sm\:top-6 { - top: 1.5rem !important; + .sm\:top-56 { + top: 14rem !important; } - .sm\:right-6 { - right: 1.5rem !important; + .sm\:top-60 { + top: 15rem !important; } - .sm\:bottom-6 { - bottom: 1.5rem !important; + .sm\:top-64 { + top: 16rem !important; } - .sm\:left-6 { - left: 1.5rem !important; + .sm\:top-72 { + top: 18rem !important; } - .sm\:top-7 { - top: 1.75rem !important; + .sm\:top-80 { + top: 20rem !important; } - .sm\:right-7 { - right: 1.75rem !important; + .sm\:top-96 { + top: 24rem !important; } - .sm\:bottom-7 { - bottom: 1.75rem !important; + .sm\:top-auto { + top: auto !important; } - .sm\:left-7 { - left: 1.75rem !important; + .sm\:top-px { + top: 1px !important; } - .sm\:top-8 { - top: 2rem !important; + .sm\:top-0\.5 { + top: 0.125rem !important; } - .sm\:right-8 { - right: 2rem !important; + .sm\:top-1\.5 { + top: 0.375rem !important; } - .sm\:bottom-8 { - bottom: 2rem !important; + .sm\:top-2\.5 { + top: 0.625rem !important; } - .sm\:left-8 { - left: 2rem !important; + .sm\:top-3\.5 { + top: 0.875rem !important; } - .sm\:top-9 { - top: 2.25rem !important; + .sm\:-top-0 { + top: 0px !important; } - .sm\:right-9 { - right: 2.25rem !important; + .sm\:-top-1 { + top: -0.25rem !important; } - .sm\:bottom-9 { - bottom: 2.25rem !important; + .sm\:-top-2 { + top: -0.5rem !important; } - .sm\:left-9 { - left: 2.25rem !important; + .sm\:-top-3 { + top: -0.75rem !important; } - .sm\:top-10 { - top: 2.5rem !important; + .sm\:-top-4 { + top: -1rem !important; } - .sm\:right-10 { - right: 2.5rem !important; + .sm\:-top-5 { + top: -1.25rem !important; } - .sm\:bottom-10 { - bottom: 2.5rem !important; + .sm\:-top-6 { + top: -1.5rem !important; } - .sm\:left-10 { - left: 2.5rem !important; + .sm\:-top-7 { + top: -1.75rem !important; } - .sm\:top-11 { - top: 2.75rem !important; + .sm\:-top-8 { + top: -2rem !important; } - .sm\:right-11 { - right: 2.75rem !important; + .sm\:-top-9 { + top: -2.25rem !important; } - .sm\:bottom-11 { - bottom: 2.75rem !important; + .sm\:-top-10 { + top: -2.5rem !important; } - .sm\:left-11 { - left: 2.75rem !important; + .sm\:-top-11 { + top: -2.75rem !important; } - .sm\:top-12 { - top: 3rem !important; + .sm\:-top-12 { + top: -3rem !important; } - .sm\:right-12 { - right: 3rem !important; + .sm\:-top-14 { + top: -3.5rem !important; } - .sm\:bottom-12 { - bottom: 3rem !important; + .sm\:-top-16 { + top: -4rem !important; } - .sm\:left-12 { - left: 3rem !important; + .sm\:-top-20 { + top: -5rem !important; } - .sm\:top-14 { - top: 3.5rem !important; + .sm\:-top-24 { + top: -6rem !important; } - .sm\:right-14 { - right: 3.5rem !important; + .sm\:-top-28 { + top: -7rem !important; } - .sm\:bottom-14 { - bottom: 3.5rem !important; + .sm\:-top-32 { + top: -8rem !important; } - .sm\:left-14 { - left: 3.5rem !important; + .sm\:-top-36 { + top: -9rem !important; } - .sm\:top-16 { - top: 4rem !important; + .sm\:-top-40 { + top: -10rem !important; } - .sm\:right-16 { - right: 4rem !important; + .sm\:-top-44 { + top: -11rem !important; } - .sm\:bottom-16 { - bottom: 4rem !important; + .sm\:-top-48 { + top: -12rem !important; } - .sm\:left-16 { - left: 4rem !important; + .sm\:-top-52 { + top: -13rem !important; } - .sm\:top-20 { - top: 5rem !important; + .sm\:-top-56 { + top: -14rem !important; } - .sm\:right-20 { - right: 5rem !important; + .sm\:-top-60 { + top: -15rem !important; } - .sm\:bottom-20 { - bottom: 5rem !important; + .sm\:-top-64 { + top: -16rem !important; } - .sm\:left-20 { - left: 5rem !important; + .sm\:-top-72 { + top: -18rem !important; } - .sm\:top-24 { - top: 6rem !important; + .sm\:-top-80 { + top: -20rem !important; } - .sm\:right-24 { - right: 6rem !important; + .sm\:-top-96 { + top: -24rem !important; } - .sm\:bottom-24 { - bottom: 6rem !important; + .sm\:-top-px { + top: -1px !important; } - .sm\:left-24 { - left: 6rem !important; + .sm\:-top-0\.5 { + top: -0.125rem !important; } - .sm\:top-28 { - top: 7rem !important; + .sm\:-top-1\.5 { + top: -0.375rem !important; } - .sm\:right-28 { - right: 7rem !important; + .sm\:-top-2\.5 { + top: -0.625rem !important; } - .sm\:bottom-28 { - bottom: 7rem !important; + .sm\:-top-3\.5 { + top: -0.875rem !important; } - .sm\:left-28 { - left: 7rem !important; + .sm\:top-1\/2 { + top: 50% !important; } - .sm\:top-32 { - top: 8rem !important; + .sm\:top-1\/3 { + top: 33.333333% !important; } - .sm\:right-32 { - right: 8rem !important; + .sm\:top-2\/3 { + top: 66.666667% !important; } - .sm\:bottom-32 { - bottom: 8rem !important; + .sm\:top-1\/4 { + top: 25% !important; } - .sm\:left-32 { - left: 8rem !important; + .sm\:top-2\/4 { + top: 50% !important; } - .sm\:top-36 { - top: 9rem !important; + .sm\:top-3\/4 { + top: 75% !important; } - .sm\:right-36 { - right: 9rem !important; + .sm\:top-full { + top: 100% !important; } - .sm\:bottom-36 { - bottom: 9rem !important; + .sm\:-top-1\/2 { + top: -50% !important; } - .sm\:left-36 { - left: 9rem !important; + .sm\:-top-1\/3 { + top: -33.333333% !important; } - .sm\:top-40 { - top: 10rem !important; + .sm\:-top-2\/3 { + top: -66.666667% !important; } - .sm\:right-40 { - right: 10rem !important; + .sm\:-top-1\/4 { + top: -25% !important; } - .sm\:bottom-40 { - bottom: 10rem !important; + .sm\:-top-2\/4 { + top: -50% !important; } - .sm\:left-40 { - left: 10rem !important; + .sm\:-top-3\/4 { + top: -75% !important; } - .sm\:top-44 { - top: 11rem !important; + .sm\:-top-full { + top: -100% !important; } - .sm\:right-44 { - right: 11rem !important; + .sm\:right-0 { + right: 0px !important; } - .sm\:bottom-44 { - bottom: 11rem !important; + .sm\:right-1 { + right: 0.25rem !important; } - .sm\:left-44 { - left: 11rem !important; + .sm\:right-2 { + right: 0.5rem !important; } - .sm\:top-48 { - top: 12rem !important; + .sm\:right-3 { + right: 0.75rem !important; } - .sm\:right-48 { - right: 12rem !important; + .sm\:right-4 { + right: 1rem !important; } - .sm\:bottom-48 { - bottom: 12rem !important; + .sm\:right-5 { + right: 1.25rem !important; } - .sm\:left-48 { - left: 12rem !important; + .sm\:right-6 { + right: 1.5rem !important; } - .sm\:top-52 { - top: 13rem !important; + .sm\:right-7 { + right: 1.75rem !important; } - .sm\:right-52 { - right: 13rem !important; + .sm\:right-8 { + right: 2rem !important; } - .sm\:bottom-52 { - bottom: 13rem !important; + .sm\:right-9 { + right: 2.25rem !important; } - .sm\:left-52 { - left: 13rem !important; + .sm\:right-10 { + right: 2.5rem !important; } - .sm\:top-56 { - top: 14rem !important; + .sm\:right-11 { + right: 2.75rem !important; } - .sm\:right-56 { - right: 14rem !important; + .sm\:right-12 { + right: 3rem !important; } - .sm\:bottom-56 { - bottom: 14rem !important; + .sm\:right-14 { + right: 3.5rem !important; } - .sm\:left-56 { - left: 14rem !important; + .sm\:right-16 { + right: 4rem !important; } - .sm\:top-60 { - top: 15rem !important; + .sm\:right-20 { + right: 5rem !important; } - .sm\:right-60 { - right: 15rem !important; + .sm\:right-24 { + right: 6rem !important; } - .sm\:bottom-60 { - bottom: 15rem !important; + .sm\:right-28 { + right: 7rem !important; } - .sm\:left-60 { - left: 15rem !important; + .sm\:right-32 { + right: 8rem !important; } - .sm\:top-64 { - top: 16rem !important; + .sm\:right-36 { + right: 9rem !important; } - .sm\:right-64 { - right: 16rem !important; + .sm\:right-40 { + right: 10rem !important; } - .sm\:bottom-64 { - bottom: 16rem !important; + .sm\:right-44 { + right: 11rem !important; } - .sm\:left-64 { - left: 16rem !important; + .sm\:right-48 { + right: 12rem !important; } - .sm\:top-72 { - top: 18rem !important; + .sm\:right-52 { + right: 13rem !important; } - .sm\:right-72 { - right: 18rem !important; + .sm\:right-56 { + right: 14rem !important; } - .sm\:bottom-72 { - bottom: 18rem !important; + .sm\:right-60 { + right: 15rem !important; } - .sm\:left-72 { - left: 18rem !important; + .sm\:right-64 { + right: 16rem !important; } - .sm\:top-80 { - top: 20rem !important; + .sm\:right-72 { + right: 18rem !important; } .sm\:right-80 { right: 20rem !important; } - .sm\:bottom-80 { - bottom: 20rem !important; + .sm\:right-96 { + right: 24rem !important; } - .sm\:left-80 { - left: 20rem !important; + .sm\:right-auto { + right: auto !important; } - .sm\:top-96 { - top: 24rem !important; + .sm\:right-px { + right: 1px !important; } - .sm\:right-96 { - right: 24rem !important; + .sm\:right-0\.5 { + right: 0.125rem !important; } - .sm\:bottom-96 { - bottom: 24rem !important; + .sm\:right-1\.5 { + right: 0.375rem !important; } - .sm\:left-96 { - left: 24rem !important; + .sm\:right-2\.5 { + right: 0.625rem !important; } - .sm\:top-auto { - top: auto !important; + .sm\:right-3\.5 { + right: 0.875rem !important; } - .sm\:right-auto { - right: auto !important; + .sm\:-right-0 { + right: 0px !important; } - .sm\:bottom-auto { - bottom: auto !important; + .sm\:-right-1 { + right: -0.25rem !important; } - .sm\:left-auto { - left: auto !important; + .sm\:-right-2 { + right: -0.5rem !important; } - .sm\:top-px { - top: 1px !important; + .sm\:-right-3 { + right: -0.75rem !important; } - .sm\:right-px { - right: 1px !important; + .sm\:-right-4 { + right: -1rem !important; } - .sm\:bottom-px { - bottom: 1px !important; + .sm\:-right-5 { + right: -1.25rem !important; } - .sm\:left-px { - left: 1px !important; + .sm\:-right-6 { + right: -1.5rem !important; } - .sm\:top-0\.5 { - top: 0.125rem !important; + .sm\:-right-7 { + right: -1.75rem !important; } - .sm\:right-0\.5 { - right: 0.125rem !important; + .sm\:-right-8 { + right: -2rem !important; } - .sm\:bottom-0\.5 { - bottom: 0.125rem !important; + .sm\:-right-9 { + right: -2.25rem !important; } - .sm\:left-0\.5 { - left: 0.125rem !important; + .sm\:-right-10 { + right: -2.5rem !important; } - .sm\:top-1\.5 { - top: 0.375rem !important; + .sm\:-right-11 { + right: -2.75rem !important; } - .sm\:right-1\.5 { - right: 0.375rem !important; + .sm\:-right-12 { + right: -3rem !important; } - .sm\:bottom-1\.5 { - bottom: 0.375rem !important; + .sm\:-right-14 { + right: -3.5rem !important; } - .sm\:left-1\.5 { - left: 0.375rem !important; + .sm\:-right-16 { + right: -4rem !important; } - .sm\:top-2\.5 { - top: 0.625rem !important; + .sm\:-right-20 { + right: -5rem !important; } - .sm\:right-2\.5 { - right: 0.625rem !important; + .sm\:-right-24 { + right: -6rem !important; } - .sm\:bottom-2\.5 { - bottom: 0.625rem !important; + .sm\:-right-28 { + right: -7rem !important; } - .sm\:left-2\.5 { - left: 0.625rem !important; + .sm\:-right-32 { + right: -8rem !important; } - .sm\:top-3\.5 { - top: 0.875rem !important; + .sm\:-right-36 { + right: -9rem !important; } - .sm\:right-3\.5 { - right: 0.875rem !important; + .sm\:-right-40 { + right: -10rem !important; } - .sm\:bottom-3\.5 { - bottom: 0.875rem !important; + .sm\:-right-44 { + right: -11rem !important; } - .sm\:left-3\.5 { - left: 0.875rem !important; + .sm\:-right-48 { + right: -12rem !important; } - .sm\:-top-0 { - top: 0px !important; + .sm\:-right-52 { + right: -13rem !important; } - .sm\:-right-0 { - right: 0px !important; + .sm\:-right-56 { + right: -14rem !important; } - .sm\:-bottom-0 { - bottom: 0px !important; + .sm\:-right-60 { + right: -15rem !important; } - .sm\:-left-0 { - left: 0px !important; + .sm\:-right-64 { + right: -16rem !important; } - .sm\:-top-1 { - top: -0.25rem !important; + .sm\:-right-72 { + right: -18rem !important; } - .sm\:-right-1 { - right: -0.25rem !important; + .sm\:-right-80 { + right: -20rem !important; } - .sm\:-bottom-1 { - bottom: -0.25rem !important; + .sm\:-right-96 { + right: -24rem !important; } - .sm\:-left-1 { - left: -0.25rem !important; + .sm\:-right-px { + right: -1px !important; } - .sm\:-top-2 { - top: -0.5rem !important; + .sm\:-right-0\.5 { + right: -0.125rem !important; } - .sm\:-right-2 { - right: -0.5rem !important; + .sm\:-right-1\.5 { + right: -0.375rem !important; } - .sm\:-bottom-2 { - bottom: -0.5rem !important; + .sm\:-right-2\.5 { + right: -0.625rem !important; } - .sm\:-left-2 { - left: -0.5rem !important; + .sm\:-right-3\.5 { + right: -0.875rem !important; } - .sm\:-top-3 { - top: -0.75rem !important; + .sm\:right-1\/2 { + right: 50% !important; } - .sm\:-right-3 { - right: -0.75rem !important; + .sm\:right-1\/3 { + right: 33.333333% !important; } - .sm\:-bottom-3 { - bottom: -0.75rem !important; + .sm\:right-2\/3 { + right: 66.666667% !important; } - .sm\:-left-3 { - left: -0.75rem !important; + .sm\:right-1\/4 { + right: 25% !important; } - .sm\:-top-4 { - top: -1rem !important; + .sm\:right-2\/4 { + right: 50% !important; } - .sm\:-right-4 { - right: -1rem !important; + .sm\:right-3\/4 { + right: 75% !important; } - .sm\:-bottom-4 { - bottom: -1rem !important; + .sm\:right-full { + right: 100% !important; } - .sm\:-left-4 { - left: -1rem !important; + .sm\:-right-1\/2 { + right: -50% !important; } - .sm\:-top-5 { - top: -1.25rem !important; + .sm\:-right-1\/3 { + right: -33.333333% !important; } - .sm\:-right-5 { - right: -1.25rem !important; + .sm\:-right-2\/3 { + right: -66.666667% !important; } - .sm\:-bottom-5 { - bottom: -1.25rem !important; + .sm\:-right-1\/4 { + right: -25% !important; } - .sm\:-left-5 { - left: -1.25rem !important; + .sm\:-right-2\/4 { + right: -50% !important; } - .sm\:-top-6 { - top: -1.5rem !important; + .sm\:-right-3\/4 { + right: -75% !important; } - .sm\:-right-6 { - right: -1.5rem !important; + .sm\:-right-full { + right: -100% !important; } - .sm\:-bottom-6 { - bottom: -1.5rem !important; + .sm\:bottom-0 { + bottom: 0px !important; } - .sm\:-left-6 { - left: -1.5rem !important; + .sm\:bottom-1 { + bottom: 0.25rem !important; } - .sm\:-top-7 { - top: -1.75rem !important; + .sm\:bottom-2 { + bottom: 0.5rem !important; } - .sm\:-right-7 { - right: -1.75rem !important; + .sm\:bottom-3 { + bottom: 0.75rem !important; } - .sm\:-bottom-7 { - bottom: -1.75rem !important; + .sm\:bottom-4 { + bottom: 1rem !important; } - .sm\:-left-7 { - left: -1.75rem !important; + .sm\:bottom-5 { + bottom: 1.25rem !important; } - .sm\:-top-8 { - top: -2rem !important; + .sm\:bottom-6 { + bottom: 1.5rem !important; } - .sm\:-right-8 { - right: -2rem !important; + .sm\:bottom-7 { + bottom: 1.75rem !important; } - .sm\:-bottom-8 { - bottom: -2rem !important; + .sm\:bottom-8 { + bottom: 2rem !important; } - .sm\:-left-8 { - left: -2rem !important; + .sm\:bottom-9 { + bottom: 2.25rem !important; } - .sm\:-top-9 { - top: -2.25rem !important; + .sm\:bottom-10 { + bottom: 2.5rem !important; } - .sm\:-right-9 { - right: -2.25rem !important; + .sm\:bottom-11 { + bottom: 2.75rem !important; } - .sm\:-bottom-9 { - bottom: -2.25rem !important; + .sm\:bottom-12 { + bottom: 3rem !important; } - .sm\:-left-9 { - left: -2.25rem !important; + .sm\:bottom-14 { + bottom: 3.5rem !important; } - .sm\:-top-10 { - top: -2.5rem !important; + .sm\:bottom-16 { + bottom: 4rem !important; } - .sm\:-right-10 { - right: -2.5rem !important; + .sm\:bottom-20 { + bottom: 5rem !important; } - .sm\:-bottom-10 { - bottom: -2.5rem !important; + .sm\:bottom-24 { + bottom: 6rem !important; } - .sm\:-left-10 { - left: -2.5rem !important; + .sm\:bottom-28 { + bottom: 7rem !important; } - .sm\:-top-11 { - top: -2.75rem !important; + .sm\:bottom-32 { + bottom: 8rem !important; } - .sm\:-right-11 { - right: -2.75rem !important; + .sm\:bottom-36 { + bottom: 9rem !important; } - .sm\:-bottom-11 { - bottom: -2.75rem !important; + .sm\:bottom-40 { + bottom: 10rem !important; } - .sm\:-left-11 { - left: -2.75rem !important; + .sm\:bottom-44 { + bottom: 11rem !important; } - .sm\:-top-12 { - top: -3rem !important; + .sm\:bottom-48 { + bottom: 12rem !important; } - .sm\:-right-12 { - right: -3rem !important; + .sm\:bottom-52 { + bottom: 13rem !important; } - .sm\:-bottom-12 { - bottom: -3rem !important; + .sm\:bottom-56 { + bottom: 14rem !important; } - .sm\:-left-12 { - left: -3rem !important; + .sm\:bottom-60 { + bottom: 15rem !important; } - .sm\:-top-14 { - top: -3.5rem !important; + .sm\:bottom-64 { + bottom: 16rem !important; } - .sm\:-right-14 { - right: -3.5rem !important; + .sm\:bottom-72 { + bottom: 18rem !important; } - .sm\:-bottom-14 { - bottom: -3.5rem !important; + .sm\:bottom-80 { + bottom: 20rem !important; } - .sm\:-left-14 { - left: -3.5rem !important; + .sm\:bottom-96 { + bottom: 24rem !important; } - .sm\:-top-16 { - top: -4rem !important; + .sm\:bottom-auto { + bottom: auto !important; } - .sm\:-right-16 { - right: -4rem !important; + .sm\:bottom-px { + bottom: 1px !important; } - .sm\:-bottom-16 { - bottom: -4rem !important; + .sm\:bottom-0\.5 { + bottom: 0.125rem !important; } - .sm\:-left-16 { - left: -4rem !important; + .sm\:bottom-1\.5 { + bottom: 0.375rem !important; } - .sm\:-top-20 { - top: -5rem !important; + .sm\:bottom-2\.5 { + bottom: 0.625rem !important; } - .sm\:-right-20 { - right: -5rem !important; + .sm\:bottom-3\.5 { + bottom: 0.875rem !important; } - .sm\:-bottom-20 { - bottom: -5rem !important; + .sm\:-bottom-0 { + bottom: 0px !important; } - .sm\:-left-20 { - left: -5rem !important; + .sm\:-bottom-1 { + bottom: -0.25rem !important; } - .sm\:-top-24 { - top: -6rem !important; + .sm\:-bottom-2 { + bottom: -0.5rem !important; } - .sm\:-right-24 { - right: -6rem !important; + .sm\:-bottom-3 { + bottom: -0.75rem !important; } - .sm\:-bottom-24 { - bottom: -6rem !important; + .sm\:-bottom-4 { + bottom: -1rem !important; } - .sm\:-left-24 { - left: -6rem !important; + .sm\:-bottom-5 { + bottom: -1.25rem !important; } - .sm\:-top-28 { - top: -7rem !important; + .sm\:-bottom-6 { + bottom: -1.5rem !important; } - .sm\:-right-28 { - right: -7rem !important; + .sm\:-bottom-7 { + bottom: -1.75rem !important; } - .sm\:-bottom-28 { - bottom: -7rem !important; + .sm\:-bottom-8 { + bottom: -2rem !important; } - .sm\:-left-28 { - left: -7rem !important; + .sm\:-bottom-9 { + bottom: -2.25rem !important; } - .sm\:-top-32 { - top: -8rem !important; + .sm\:-bottom-10 { + bottom: -2.5rem !important; } - .sm\:-right-32 { - right: -8rem !important; + .sm\:-bottom-11 { + bottom: -2.75rem !important; } - .sm\:-bottom-32 { - bottom: -8rem !important; + .sm\:-bottom-12 { + bottom: -3rem !important; } - .sm\:-left-32 { - left: -8rem !important; + .sm\:-bottom-14 { + bottom: -3.5rem !important; } - .sm\:-top-36 { - top: -9rem !important; + .sm\:-bottom-16 { + bottom: -4rem !important; } - .sm\:-right-36 { - right: -9rem !important; + .sm\:-bottom-20 { + bottom: -5rem !important; } - .sm\:-bottom-36 { - bottom: -9rem !important; + .sm\:-bottom-24 { + bottom: -6rem !important; } - .sm\:-left-36 { - left: -9rem !important; + .sm\:-bottom-28 { + bottom: -7rem !important; } - .sm\:-top-40 { - top: -10rem !important; + .sm\:-bottom-32 { + bottom: -8rem !important; } - .sm\:-right-40 { - right: -10rem !important; + .sm\:-bottom-36 { + bottom: -9rem !important; } .sm\:-bottom-40 { bottom: -10rem !important; } - .sm\:-left-40 { - left: -10rem !important; + .sm\:-bottom-44 { + bottom: -11rem !important; } - .sm\:-top-44 { - top: -11rem !important; + .sm\:-bottom-48 { + bottom: -12rem !important; } - .sm\:-right-44 { - right: -11rem !important; + .sm\:-bottom-52 { + bottom: -13rem !important; } - .sm\:-bottom-44 { - bottom: -11rem !important; + .sm\:-bottom-56 { + bottom: -14rem !important; } - .sm\:-left-44 { - left: -11rem !important; + .sm\:-bottom-60 { + bottom: -15rem !important; } - .sm\:-top-48 { - top: -12rem !important; + .sm\:-bottom-64 { + bottom: -16rem !important; } - .sm\:-right-48 { - right: -12rem !important; + .sm\:-bottom-72 { + bottom: -18rem !important; } - .sm\:-bottom-48 { - bottom: -12rem !important; + .sm\:-bottom-80 { + bottom: -20rem !important; } - .sm\:-left-48 { - left: -12rem !important; + .sm\:-bottom-96 { + bottom: -24rem !important; } - .sm\:-top-52 { - top: -13rem !important; + .sm\:-bottom-px { + bottom: -1px !important; } - .sm\:-right-52 { - right: -13rem !important; + .sm\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .sm\:-bottom-52 { - bottom: -13rem !important; + .sm\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .sm\:-left-52 { - left: -13rem !important; + .sm\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .sm\:-top-56 { - top: -14rem !important; + .sm\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .sm\:-right-56 { - right: -14rem !important; + .sm\:bottom-1\/2 { + bottom: 50% !important; } - .sm\:-bottom-56 { - bottom: -14rem !important; + .sm\:bottom-1\/3 { + bottom: 33.333333% !important; } - .sm\:-left-56 { - left: -14rem !important; + .sm\:bottom-2\/3 { + bottom: 66.666667% !important; } - .sm\:-top-60 { - top: -15rem !important; + .sm\:bottom-1\/4 { + bottom: 25% !important; } - .sm\:-right-60 { - right: -15rem !important; + .sm\:bottom-2\/4 { + bottom: 50% !important; } - .sm\:-bottom-60 { - bottom: -15rem !important; + .sm\:bottom-3\/4 { + bottom: 75% !important; } - .sm\:-left-60 { - left: -15rem !important; + .sm\:bottom-full { + bottom: 100% !important; } - .sm\:-top-64 { - top: -16rem !important; + .sm\:-bottom-1\/2 { + bottom: -50% !important; } - .sm\:-right-64 { - right: -16rem !important; + .sm\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .sm\:-bottom-64 { - bottom: -16rem !important; + .sm\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .sm\:-left-64 { - left: -16rem !important; + .sm\:-bottom-1\/4 { + bottom: -25% !important; } - .sm\:-top-72 { - top: -18rem !important; + .sm\:-bottom-2\/4 { + bottom: -50% !important; } - .sm\:-right-72 { - right: -18rem !important; + .sm\:-bottom-3\/4 { + bottom: -75% !important; } - .sm\:-bottom-72 { - bottom: -18rem !important; + .sm\:-bottom-full { + bottom: -100% !important; } - .sm\:-left-72 { - left: -18rem !important; + .sm\:left-0 { + left: 0px !important; } - .sm\:-top-80 { - top: -20rem !important; + .sm\:left-1 { + left: 0.25rem !important; } - .sm\:-right-80 { - right: -20rem !important; + .sm\:left-2 { + left: 0.5rem !important; } - .sm\:-bottom-80 { - bottom: -20rem !important; + .sm\:left-3 { + left: 0.75rem !important; } - .sm\:-left-80 { - left: -20rem !important; + .sm\:left-4 { + left: 1rem !important; } - .sm\:-top-96 { - top: -24rem !important; + .sm\:left-5 { + left: 1.25rem !important; } - .sm\:-right-96 { - right: -24rem !important; + .sm\:left-6 { + left: 1.5rem !important; } - .sm\:-bottom-96 { - bottom: -24rem !important; + .sm\:left-7 { + left: 1.75rem !important; } - .sm\:-left-96 { - left: -24rem !important; + .sm\:left-8 { + left: 2rem !important; } - .sm\:-top-px { - top: -1px !important; + .sm\:left-9 { + left: 2.25rem !important; } - .sm\:-right-px { - right: -1px !important; + .sm\:left-10 { + left: 2.5rem !important; } - .sm\:-bottom-px { - bottom: -1px !important; + .sm\:left-11 { + left: 2.75rem !important; } - .sm\:-left-px { - left: -1px !important; + .sm\:left-12 { + left: 3rem !important; } - .sm\:-top-0\.5 { - top: -0.125rem !important; + .sm\:left-14 { + left: 3.5rem !important; } - .sm\:-right-0\.5 { - right: -0.125rem !important; + .sm\:left-16 { + left: 4rem !important; } - .sm\:-bottom-0\.5 { - bottom: -0.125rem !important; + .sm\:left-20 { + left: 5rem !important; } - .sm\:-left-0\.5 { - left: -0.125rem !important; + .sm\:left-24 { + left: 6rem !important; } - .sm\:-top-1\.5 { - top: -0.375rem !important; + .sm\:left-28 { + left: 7rem !important; } - .sm\:-right-1\.5 { - right: -0.375rem !important; + .sm\:left-32 { + left: 8rem !important; } - .sm\:-bottom-1\.5 { - bottom: -0.375rem !important; + .sm\:left-36 { + left: 9rem !important; } - .sm\:-left-1\.5 { - left: -0.375rem !important; + .sm\:left-40 { + left: 10rem !important; } - .sm\:-top-2\.5 { - top: -0.625rem !important; + .sm\:left-44 { + left: 11rem !important; } - .sm\:-right-2\.5 { - right: -0.625rem !important; + .sm\:left-48 { + left: 12rem !important; } - .sm\:-bottom-2\.5 { - bottom: -0.625rem !important; + .sm\:left-52 { + left: 13rem !important; } - .sm\:-left-2\.5 { - left: -0.625rem !important; + .sm\:left-56 { + left: 14rem !important; } - .sm\:-top-3\.5 { - top: -0.875rem !important; + .sm\:left-60 { + left: 15rem !important; } - .sm\:-right-3\.5 { - right: -0.875rem !important; + .sm\:left-64 { + left: 16rem !important; } - .sm\:-bottom-3\.5 { - bottom: -0.875rem !important; + .sm\:left-72 { + left: 18rem !important; } - .sm\:-left-3\.5 { - left: -0.875rem !important; + .sm\:left-80 { + left: 20rem !important; } - .sm\:top-1\/2 { - top: 50% !important; + .sm\:left-96 { + left: 24rem !important; } - .sm\:right-1\/2 { - right: 50% !important; + .sm\:left-auto { + left: auto !important; } - .sm\:bottom-1\/2 { - bottom: 50% !important; + .sm\:left-px { + left: 1px !important; } - .sm\:left-1\/2 { - left: 50% !important; + .sm\:left-0\.5 { + left: 0.125rem !important; } - .sm\:top-1\/3 { - top: 33.333333% !important; + .sm\:left-1\.5 { + left: 0.375rem !important; } - .sm\:right-1\/3 { - right: 33.333333% !important; + .sm\:left-2\.5 { + left: 0.625rem !important; } - .sm\:bottom-1\/3 { - bottom: 33.333333% !important; + .sm\:left-3\.5 { + left: 0.875rem !important; } - .sm\:left-1\/3 { - left: 33.333333% !important; + .sm\:-left-0 { + left: 0px !important; } - .sm\:top-2\/3 { - top: 66.666667% !important; + .sm\:-left-1 { + left: -0.25rem !important; } - .sm\:right-2\/3 { - right: 66.666667% !important; + .sm\:-left-2 { + left: -0.5rem !important; } - .sm\:bottom-2\/3 { - bottom: 66.666667% !important; + .sm\:-left-3 { + left: -0.75rem !important; } - .sm\:left-2\/3 { - left: 66.666667% !important; + .sm\:-left-4 { + left: -1rem !important; } - .sm\:top-1\/4 { - top: 25% !important; + .sm\:-left-5 { + left: -1.25rem !important; } - .sm\:right-1\/4 { - right: 25% !important; + .sm\:-left-6 { + left: -1.5rem !important; } - .sm\:bottom-1\/4 { - bottom: 25% !important; + .sm\:-left-7 { + left: -1.75rem !important; } - .sm\:left-1\/4 { - left: 25% !important; + .sm\:-left-8 { + left: -2rem !important; } - .sm\:top-2\/4 { - top: 50% !important; + .sm\:-left-9 { + left: -2.25rem !important; } - .sm\:right-2\/4 { - right: 50% !important; + .sm\:-left-10 { + left: -2.5rem !important; } - .sm\:bottom-2\/4 { - bottom: 50% !important; + .sm\:-left-11 { + left: -2.75rem !important; } - .sm\:left-2\/4 { - left: 50% !important; + .sm\:-left-12 { + left: -3rem !important; } - .sm\:top-3\/4 { - top: 75% !important; + .sm\:-left-14 { + left: -3.5rem !important; } - .sm\:right-3\/4 { - right: 75% !important; + .sm\:-left-16 { + left: -4rem !important; } - .sm\:bottom-3\/4 { - bottom: 75% !important; + .sm\:-left-20 { + left: -5rem !important; } - .sm\:left-3\/4 { - left: 75% !important; + .sm\:-left-24 { + left: -6rem !important; } - .sm\:top-full { - top: 100% !important; + .sm\:-left-28 { + left: -7rem !important; } - .sm\:right-full { - right: 100% !important; + .sm\:-left-32 { + left: -8rem !important; } - .sm\:bottom-full { - bottom: 100% !important; + .sm\:-left-36 { + left: -9rem !important; } - .sm\:left-full { - left: 100% !important; + .sm\:-left-40 { + left: -10rem !important; } - .sm\:-top-1\/2 { - top: -50% !important; + .sm\:-left-44 { + left: -11rem !important; } - .sm\:-right-1\/2 { - right: -50% !important; + .sm\:-left-48 { + left: -12rem !important; } - .sm\:-bottom-1\/2 { - bottom: -50% !important; + .sm\:-left-52 { + left: -13rem !important; } - .sm\:-left-1\/2 { - left: -50% !important; + .sm\:-left-56 { + left: -14rem !important; } - .sm\:-top-1\/3 { - top: -33.333333% !important; + .sm\:-left-60 { + left: -15rem !important; } - .sm\:-right-1\/3 { - right: -33.333333% !important; + .sm\:-left-64 { + left: -16rem !important; } - .sm\:-bottom-1\/3 { - bottom: -33.333333% !important; + .sm\:-left-72 { + left: -18rem !important; } - .sm\:-left-1\/3 { - left: -33.333333% !important; + .sm\:-left-80 { + left: -20rem !important; } - .sm\:-top-2\/3 { - top: -66.666667% !important; + .sm\:-left-96 { + left: -24rem !important; } - .sm\:-right-2\/3 { - right: -66.666667% !important; + .sm\:-left-px { + left: -1px !important; } - .sm\:-bottom-2\/3 { - bottom: -66.666667% !important; + .sm\:-left-0\.5 { + left: -0.125rem !important; } - .sm\:-left-2\/3 { - left: -66.666667% !important; + .sm\:-left-1\.5 { + left: -0.375rem !important; } - .sm\:-top-1\/4 { - top: -25% !important; + .sm\:-left-2\.5 { + left: -0.625rem !important; } - .sm\:-right-1\/4 { - right: -25% !important; + .sm\:-left-3\.5 { + left: -0.875rem !important; } - .sm\:-bottom-1\/4 { - bottom: -25% !important; + .sm\:left-1\/2 { + left: 50% !important; } - .sm\:-left-1\/4 { - left: -25% !important; + .sm\:left-1\/3 { + left: 33.333333% !important; } - .sm\:-top-2\/4 { - top: -50% !important; + .sm\:left-2\/3 { + left: 66.666667% !important; } - .sm\:-right-2\/4 { - right: -50% !important; + .sm\:left-1\/4 { + left: 25% !important; } - .sm\:-bottom-2\/4 { - bottom: -50% !important; + .sm\:left-2\/4 { + left: 50% !important; } - .sm\:-left-2\/4 { - left: -50% !important; + .sm\:left-3\/4 { + left: 75% !important; } - .sm\:-top-3\/4 { - top: -75% !important; + .sm\:left-full { + left: 100% !important; } - .sm\:-right-3\/4 { - right: -75% !important; + .sm\:-left-1\/2 { + left: -50% !important; } - .sm\:-bottom-3\/4 { - bottom: -75% !important; + .sm\:-left-1\/3 { + left: -33.333333% !important; } - .sm\:-left-3\/4 { - left: -75% !important; + .sm\:-left-2\/3 { + left: -66.666667% !important; } - .sm\:-top-full { - top: -100% !important; + .sm\:-left-1\/4 { + left: -25% !important; } - .sm\:-right-full { - right: -100% !important; + .sm\:-left-2\/4 { + left: -50% !important; } - .sm\:-bottom-full { - bottom: -100% !important; + .sm\:-left-3\/4 { + left: -75% !important; } .sm\:-left-full { @@ -38791,133 +38791,183 @@ video { --tw-scale-y: 1.5 !important; } - .sm\:scale-x-0 { + .sm\:hover\:scale-0:hover { --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .sm\:scale-x-50 { + .sm\:hover\:scale-50:hover { --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .sm\:scale-x-75 { + .sm\:hover\:scale-75:hover { --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .sm\:scale-x-90 { + .sm\:hover\:scale-90:hover { --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .sm\:scale-x-95 { + .sm\:hover\:scale-95:hover { --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .sm\:scale-x-100 { + .sm\:hover\:scale-100:hover { --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .sm\:scale-x-105 { + .sm\:hover\:scale-105:hover { --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .sm\:scale-x-110 { + .sm\:hover\:scale-110:hover { --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .sm\:scale-x-125 { + .sm\:hover\:scale-125:hover { --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .sm\:scale-x-150 { + .sm\:hover\:scale-150:hover { --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .sm\:scale-y-0 { + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; --tw-scale-y: 0 !important; } - .sm\:scale-y-50 { + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; --tw-scale-y: .5 !important; } - .sm\:scale-y-75 { + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; --tw-scale-y: .75 !important; } - .sm\:scale-y-90 { + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; --tw-scale-y: .9 !important; } - .sm\:scale-y-95 { + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; --tw-scale-y: .95 !important; } - .sm\:scale-y-100 { + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; --tw-scale-y: 1 !important; } - .sm\:scale-y-105 { + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; --tw-scale-y: 1.05 !important; } - .sm\:scale-y-110 { + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; --tw-scale-y: 1.1 !important; } - .sm\:scale-y-125 { + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; --tw-scale-y: 1.25 !important; } - .sm\:scale-y-150 { + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; --tw-scale-y: 1.5 !important; } - .sm\:hover\:scale-0:hover { + .sm\:scale-x-0 { --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; } - .sm\:hover\:scale-50:hover { + .sm\:scale-x-50 { --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; } - .sm\:hover\:scale-75:hover { + .sm\:scale-x-75 { --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; } - .sm\:hover\:scale-90:hover { + .sm\:scale-x-90 { --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; } - .sm\:hover\:scale-95:hover { + .sm\:scale-x-95 { --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; } - .sm\:hover\:scale-100:hover { + .sm\:scale-x-100 { --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; } - .sm\:hover\:scale-105:hover { + .sm\:scale-x-105 { --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; } - .sm\:hover\:scale-110:hover { + .sm\:scale-x-110 { --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; } - .sm\:hover\:scale-125:hover { + .sm\:scale-x-125 { --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; } - .sm\:hover\:scale-150:hover { + .sm\:scale-x-150 { --tw-scale-x: 1.5 !important; + } + + .sm\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .sm\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .sm\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .sm\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .sm\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .sm\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .sm\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .sm\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .sm\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .sm\:scale-y-150 { --tw-scale-y: 1.5 !important; } @@ -39001,56 +39051,6 @@ video { --tw-scale-y: 1.5 !important; } - .sm\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; - } - - .sm\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; - } - - .sm\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; - } - - .sm\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; - } - - .sm\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; - } - - .sm\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - } - - .sm\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; - } - - .sm\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; - } - - .sm\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; - } - - .sm\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; - } - .sm\:focus\:scale-x-0:focus { --tw-scale-x: 0 !important; } @@ -39943,436 +39943,640 @@ video { row-gap: 0.875rem !important; } - .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0px * var(--tw-space-x-reverse)) !important; margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1px * var(--tw-space-x-reverse)) !important; margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; - } - .sm\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(0px * var(--tw-space-x-reverse)) !important; - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } .sm\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -40381,408 +40585,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; } - .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1 !important; } @@ -40791,66 +40791,66 @@ video { --tw-space-x-reverse: 1 !important; } - .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; - } - .sm\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; - } - .sm\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; - } - .sm\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; - } - .sm\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; - } - .sm\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; } + .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1 !important; } @@ -47264,2188 +47264,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .sm\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .sm\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .sm\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .sm\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .sm\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; - } - - .sm\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; - } - - .sm\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; - } - - .sm\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; - } - - .sm\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; - } - - .sm\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; - } - - .sm\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; - } - - .sm\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; - } - - .sm\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; - } - - .sm\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; - } - - .sm\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; - } - - .sm\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; - } - - .sm\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; - } - - .sm\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; - } - - .sm\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; - } - - .sm\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; - } - - .sm\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; - } - - .sm\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; - } - - .sm\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; - } - - .sm\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; - } - - .sm\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; - } - - .sm\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; - } - - .sm\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; - } - - .sm\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; - } - - .sm\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; - } - - .sm\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; - } - - .sm\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; - } - - .sm\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; - } - - .sm\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; - } - - .sm\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; - } - - .sm\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; - } - - .sm\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; - } - - .sm\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; - } - - .sm\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; - } - - .sm\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; - } - - .sm\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; - } - - .sm\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; - } - - .sm\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; - } - - .sm\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; - } - - .sm\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; - } - - .sm\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; - } - - .sm\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; - } - - .sm\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; - } - - .sm\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; - } - - .sm\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; - } - - .sm\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; - } - - .sm\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; - } - - .sm\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; - } - - .sm\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; - } - - .sm\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; - } - - .sm\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; - } - - .sm\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; - } - - .sm\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; - } - - .sm\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; - } - - .sm\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; - } - - .sm\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; - } - - .sm\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; - } - - .sm\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; - } - - .sm\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; - } - - .sm\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; - } - - .sm\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; - } - - .sm\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; - } - - .sm\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; - } - - .sm\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; - } - - .sm\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; - } - - .sm\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; - } - - .sm\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; - } - - .sm\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; - } - - .sm\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; - } - - .sm\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; - } - - .sm\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; - } - - .sm\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; - } - - .sm\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; - } - - .sm\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; - } - - .sm\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; - } - - .sm\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; - } - - .sm\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; - } - - .sm\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; - } - - .sm\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; - } - - .sm\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; - } - - .sm\:to-transparent { - --tw-gradient-to: transparent !important; + .sm\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:to-current { - --tw-gradient-to: currentColor !important; + .sm\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:to-black { - --tw-gradient-to: #000 !important; + .sm\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:to-white { - --tw-gradient-to: #fff !important; + .sm\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .sm\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .sm\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .sm\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .sm\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .sm\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .sm\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .sm\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .sm\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .sm\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .sm\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .sm\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .sm\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .sm\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .sm\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .sm\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .sm\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .sm\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .sm\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .sm\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .sm\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .sm\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .sm\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .sm\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .sm\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .sm\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .sm\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .sm\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .sm\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .sm\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .sm\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .sm\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .sm\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .sm\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .sm\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .sm\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .sm\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .sm\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .sm\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .sm\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .sm\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .sm\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .sm\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .sm\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .sm\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .sm\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .sm\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .sm\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .sm\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .sm\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .sm\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .sm\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .sm\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .sm\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .sm\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .sm\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .sm\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .sm\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .sm\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .sm\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .sm\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .sm\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .sm\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .sm\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .sm\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .sm\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .sm\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .sm\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .sm\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .sm\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .sm\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .sm\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .sm\:to-green-600 { - --tw-gradient-to: #059669 !important; + .sm\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .sm\:to-green-700 { - --tw-gradient-to: #047857 !important; + .sm\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .sm\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .sm\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .sm\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .sm\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .sm\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .sm\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .sm\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .sm\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .sm\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .sm\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .sm\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .sm\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .sm\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .sm\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .sm\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .sm\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .sm\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .sm\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .sm\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .sm\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .sm\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .sm\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .sm\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .sm\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .sm\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .sm\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .sm\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .sm\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .sm\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .sm\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .sm\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .sm\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .sm\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .sm\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .sm\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .sm\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .sm\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .sm\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .sm\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .sm\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .sm\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .sm\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .sm\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .sm\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .sm\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .sm\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .sm\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .sm\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .sm\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .sm\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .sm\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .sm\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .sm\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .sm\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .sm\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .sm\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .sm\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .sm\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .sm\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .sm\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .sm\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .sm\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .sm\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .sm\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .sm\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .sm\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .sm\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .sm\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .sm\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .sm\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .sm\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .sm\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .sm\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .sm\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .sm\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .sm\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .sm\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .sm\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .sm\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .sm\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .sm\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .sm\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .sm\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .sm\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .sm\:hover\:from-transparent:hover { + .sm\:focus\:from-transparent:focus { --tw-gradient-from: transparent !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:hover\:from-current:hover { + .sm\:focus\:from-current:focus { --tw-gradient-from: currentColor !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:hover\:from-black:hover { + .sm\:focus\:from-black:focus { --tw-gradient-from: #000 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:hover\:from-white:hover { + .sm\:focus\:from-white:focus { --tw-gradient-from: #fff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:hover\:from-gray-50:hover { + .sm\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .sm\:hover\:from-gray-100:hover { + .sm\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .sm\:hover\:from-gray-200:hover { + .sm\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .sm\:hover\:from-gray-300:hover { + .sm\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .sm\:hover\:from-gray-400:hover { + .sm\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .sm\:hover\:from-gray-500:hover { + .sm\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .sm\:hover\:from-gray-600:hover { + .sm\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .sm\:hover\:from-gray-700:hover { + .sm\:focus\:from-gray-700:focus { --tw-gradient-from: #374151 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .sm\:hover\:from-gray-800:hover { + .sm\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .sm\:hover\:from-gray-900:hover { + .sm\:focus\:from-gray-900:focus { --tw-gradient-from: #111827 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .sm\:hover\:from-red-50:hover { + .sm\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .sm\:hover\:from-red-100:hover { + .sm\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .sm\:hover\:from-red-200:hover { + .sm\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .sm\:hover\:from-red-300:hover { + .sm\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .sm\:hover\:from-red-400:hover { + .sm\:focus\:from-red-400:focus { --tw-gradient-from: #f87171 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .sm\:hover\:from-red-500:hover { + .sm\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .sm\:hover\:from-red-600:hover { + .sm\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .sm\:hover\:from-red-700:hover { + .sm\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .sm\:hover\:from-red-800:hover { + .sm\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .sm\:hover\:from-red-900:hover { + .sm\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .sm\:hover\:from-yellow-50:hover { + .sm\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .sm\:hover\:from-yellow-100:hover { + .sm\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .sm\:hover\:from-yellow-200:hover { + .sm\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .sm\:hover\:from-yellow-300:hover { + .sm\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .sm\:hover\:from-yellow-400:hover { + .sm\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .sm\:hover\:from-yellow-500:hover { + .sm\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .sm\:hover\:from-yellow-600:hover { + .sm\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .sm\:hover\:from-yellow-700:hover { + .sm\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .sm\:hover\:from-yellow-800:hover { + .sm\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .sm\:hover\:from-yellow-900:hover { + .sm\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .sm\:hover\:from-green-50:hover { + .sm\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .sm\:hover\:from-green-100:hover { + .sm\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .sm\:hover\:from-green-200:hover { + .sm\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .sm\:hover\:from-green-300:hover { + .sm\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .sm\:hover\:from-green-400:hover { + .sm\:focus\:from-green-400:focus { --tw-gradient-from: #34d399 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .sm\:hover\:from-green-500:hover { + .sm\:focus\:from-green-500:focus { --tw-gradient-from: #10b981 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .sm\:hover\:from-green-600:hover { + .sm\:focus\:from-green-600:focus { --tw-gradient-from: #059669 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .sm\:hover\:from-green-700:hover { + .sm\:focus\:from-green-700:focus { --tw-gradient-from: #047857 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .sm\:hover\:from-green-800:hover { + .sm\:focus\:from-green-800:focus { --tw-gradient-from: #065f46 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .sm\:hover\:from-green-900:hover { + .sm\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .sm\:hover\:from-blue-50:hover { + .sm\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .sm\:hover\:from-blue-100:hover { + .sm\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .sm\:hover\:from-blue-200:hover { + .sm\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .sm\:hover\:from-blue-300:hover { + .sm\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .sm\:hover\:from-blue-400:hover { + .sm\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .sm\:hover\:from-blue-500:hover { + .sm\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .sm\:hover\:from-blue-600:hover { + .sm\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .sm\:hover\:from-blue-700:hover { + .sm\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .sm\:hover\:from-blue-800:hover { + .sm\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .sm\:hover\:from-blue-900:hover { + .sm\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .sm\:hover\:from-indigo-50:hover { + .sm\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .sm\:hover\:from-indigo-100:hover { + .sm\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .sm\:hover\:from-indigo-200:hover { + .sm\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .sm\:hover\:from-indigo-300:hover { + .sm\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .sm\:hover\:from-indigo-400:hover { + .sm\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .sm\:hover\:from-indigo-500:hover { + .sm\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .sm\:hover\:from-indigo-600:hover { + .sm\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .sm\:hover\:from-indigo-700:hover { + .sm\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .sm\:hover\:from-indigo-800:hover { + .sm\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .sm\:hover\:from-indigo-900:hover { + .sm\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .sm\:hover\:from-purple-50:hover { + .sm\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .sm\:hover\:from-purple-100:hover { + .sm\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .sm\:hover\:from-purple-200:hover { + .sm\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .sm\:hover\:from-purple-300:hover { + .sm\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .sm\:hover\:from-purple-400:hover { + .sm\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .sm\:hover\:from-purple-500:hover { + .sm\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .sm\:hover\:from-purple-600:hover { + .sm\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .sm\:hover\:from-purple-700:hover { + .sm\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .sm\:hover\:from-purple-800:hover { + .sm\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .sm\:hover\:from-purple-900:hover { + .sm\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .sm\:hover\:from-pink-50:hover { + .sm\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .sm\:hover\:from-pink-100:hover { + .sm\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .sm\:hover\:from-pink-200:hover { + .sm\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .sm\:hover\:from-pink-300:hover { + .sm\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .sm\:hover\:from-pink-400:hover { + .sm\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .sm\:hover\:from-pink-500:hover { + .sm\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .sm\:hover\:from-pink-600:hover { + .sm\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .sm\:hover\:from-pink-700:hover { + .sm\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .sm\:hover\:from-pink-800:hover { + .sm\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .sm\:hover\:from-pink-900:hover { + .sm\:focus\:from-pink-900:focus { --tw-gradient-from: #831843 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .sm\:hover\:via-transparent:hover { + .sm\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:hover\:via-current:hover { + .sm\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:hover\:via-black:hover { + .sm\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:hover\:via-white:hover { + .sm\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:hover\:via-gray-50:hover { + .sm\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .sm\:hover\:via-gray-100:hover { + .sm\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .sm\:hover\:via-gray-200:hover { + .sm\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .sm\:hover\:via-gray-300:hover { + .sm\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .sm\:hover\:via-gray-400:hover { + .sm\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .sm\:hover\:via-gray-500:hover { + .sm\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .sm\:hover\:via-gray-600:hover { + .sm\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .sm\:hover\:via-gray-700:hover { + .sm\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .sm\:hover\:via-gray-800:hover { + .sm\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .sm\:hover\:via-gray-900:hover { + .sm\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .sm\:hover\:via-red-50:hover { + .sm\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .sm\:hover\:via-red-100:hover { + .sm\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .sm\:hover\:via-red-200:hover { + .sm\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .sm\:hover\:via-red-300:hover { + .sm\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .sm\:hover\:via-red-400:hover { + .sm\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .sm\:hover\:via-red-500:hover { + .sm\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .sm\:hover\:via-red-600:hover { + .sm\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .sm\:hover\:via-red-700:hover { + .sm\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .sm\:hover\:via-red-800:hover { + .sm\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .sm\:hover\:via-red-900:hover { + .sm\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .sm\:hover\:via-yellow-50:hover { + .sm\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .sm\:hover\:via-yellow-100:hover { + .sm\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .sm\:hover\:via-yellow-200:hover { + .sm\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .sm\:hover\:via-yellow-300:hover { + .sm\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .sm\:hover\:via-yellow-400:hover { + .sm\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .sm\:hover\:via-yellow-500:hover { + .sm\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .sm\:hover\:via-yellow-600:hover { + .sm\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .sm\:hover\:via-yellow-700:hover { + .sm\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .sm\:hover\:via-yellow-800:hover { + .sm\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .sm\:hover\:via-yellow-900:hover { + .sm\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .sm\:hover\:via-green-50:hover { + .sm\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .sm\:hover\:via-green-100:hover { + .sm\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .sm\:hover\:via-green-200:hover { + .sm\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .sm\:hover\:via-green-300:hover { + .sm\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .sm\:hover\:via-green-400:hover { + .sm\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .sm\:hover\:via-green-500:hover { + .sm\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .sm\:hover\:via-green-600:hover { + .sm\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .sm\:hover\:via-green-700:hover { + .sm\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .sm\:hover\:via-green-800:hover { + .sm\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .sm\:hover\:via-green-900:hover { + .sm\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .sm\:hover\:via-blue-50:hover { + .sm\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .sm\:hover\:via-blue-100:hover { + .sm\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .sm\:hover\:via-blue-200:hover { + .sm\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .sm\:hover\:via-blue-300:hover { + .sm\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .sm\:hover\:via-blue-400:hover { + .sm\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .sm\:hover\:via-blue-500:hover { + .sm\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .sm\:hover\:via-blue-600:hover { + .sm\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .sm\:hover\:via-blue-700:hover { + .sm\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .sm\:hover\:via-blue-800:hover { + .sm\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .sm\:hover\:via-blue-900:hover { + .sm\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .sm\:hover\:via-indigo-50:hover { + .sm\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .sm\:hover\:via-indigo-100:hover { + .sm\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .sm\:hover\:via-indigo-200:hover { + .sm\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .sm\:hover\:via-indigo-300:hover { + .sm\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .sm\:hover\:via-indigo-400:hover { + .sm\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .sm\:hover\:via-indigo-500:hover { + .sm\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .sm\:hover\:via-indigo-600:hover { + .sm\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .sm\:hover\:via-indigo-700:hover { + .sm\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .sm\:hover\:via-indigo-800:hover { + .sm\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .sm\:hover\:via-indigo-900:hover { + .sm\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .sm\:hover\:via-purple-50:hover { + .sm\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .sm\:hover\:via-purple-100:hover { + .sm\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .sm\:hover\:via-purple-200:hover { + .sm\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .sm\:hover\:via-purple-300:hover { + .sm\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .sm\:hover\:via-purple-400:hover { + .sm\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .sm\:hover\:via-purple-500:hover { + .sm\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .sm\:hover\:via-purple-600:hover { + .sm\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .sm\:hover\:via-purple-700:hover { + .sm\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .sm\:hover\:via-purple-800:hover { + .sm\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .sm\:hover\:via-purple-900:hover { + .sm\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .sm\:hover\:via-pink-50:hover { + .sm\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .sm\:hover\:via-pink-100:hover { + .sm\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .sm\:hover\:via-pink-200:hover { + .sm\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .sm\:hover\:via-pink-300:hover { + .sm\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .sm\:hover\:via-pink-400:hover { + .sm\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .sm\:hover\:via-pink-500:hover { + .sm\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .sm\:hover\:via-pink-600:hover { + .sm\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .sm\:hover\:via-pink-700:hover { + .sm\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .sm\:hover\:via-pink-800:hover { + .sm\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .sm\:hover\:via-pink-900:hover { + .sm\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .sm\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; - } - - .sm\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; - } - - .sm\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; - } - - .sm\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; - } - - .sm\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; - } - - .sm\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; - } - - .sm\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; - } - - .sm\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; - } - - .sm\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; - } - - .sm\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; - } - - .sm\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; - } - - .sm\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; - } - - .sm\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; - } - - .sm\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; - } - - .sm\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; - } - - .sm\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; - } - - .sm\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; - } - - .sm\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; - } - - .sm\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; - } - - .sm\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; - } - - .sm\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; - } - - .sm\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; - } - - .sm\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; - } - - .sm\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; - } - - .sm\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; - } - - .sm\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; - } - - .sm\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; - } - - .sm\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; - } - - .sm\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; - } - - .sm\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; - } - - .sm\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; - } - - .sm\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; - } - - .sm\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; - } - - .sm\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; - } - - .sm\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; - } - - .sm\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; - } - - .sm\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; - } - - .sm\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; - } - - .sm\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; - } - - .sm\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; - } - - .sm\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; - } - - .sm\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; - } - - .sm\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; - } - - .sm\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; - } - - .sm\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; - } - - .sm\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; - } - - .sm\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; - } - - .sm\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; - } - - .sm\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; - } - - .sm\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; - } - - .sm\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; - } - - .sm\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; - } - - .sm\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; - } - - .sm\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; - } - - .sm\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; - } - - .sm\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; - } - - .sm\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; - } - - .sm\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; - } - - .sm\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; - } - - .sm\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; - } - - .sm\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; - } - - .sm\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; - } - - .sm\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; - } - - .sm\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; - } - - .sm\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; - } - - .sm\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; - } - - .sm\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; - } - - .sm\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; - } - - .sm\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; - } - - .sm\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; - } - - .sm\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; - } - - .sm\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; - } - - .sm\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; - } - - .sm\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; - } - - .sm\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; - } - - .sm\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; - } - - .sm\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; - } - - .sm\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; - } - - .sm\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; - } - - .sm\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; - } - - .sm\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; - } - - .sm\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; - } - - .sm\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; - } - - .sm\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; - } - - .sm\:focus\:from-transparent:focus { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:focus\:from-current:focus { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:focus\:from-black:focus { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .sm\:focus\:from-white:focus { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .sm\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .sm\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .sm\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .sm\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .sm\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .sm\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .sm\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .sm\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .sm\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .sm\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .sm\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .sm\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .sm\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .sm\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .sm\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .sm\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .sm\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .sm\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .sm\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .sm\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .sm\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .sm\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .sm\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .sm\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .sm\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .sm\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .sm\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .sm\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .sm\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .sm\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .sm\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .sm\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .sm\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .sm\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .sm\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .sm\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .sm\:focus\:from-green-600:focus { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .sm\:focus\:from-green-700:focus { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .sm\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .sm\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .sm\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .sm\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .sm\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .sm\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .sm\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .sm\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .sm\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .sm\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .sm\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .sm\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .sm\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .sm\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .sm\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .sm\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .sm\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .sm\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .sm\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .sm\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .sm\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .sm\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .sm\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .sm\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .sm\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .sm\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .sm\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .sm\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .sm\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .sm\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .sm\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .sm\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .sm\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .sm\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .sm\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .sm\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .sm\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .sm\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .sm\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .sm\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .sm\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .sm\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .sm\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .sm\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .sm\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .sm\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .sm\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .sm\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .sm\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .sm\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .sm\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .sm\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .sm\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .sm\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .sm\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .sm\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .sm\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .sm\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .sm\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .sm\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .sm\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .sm\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } .sm\:focus\:via-transparent:focus { @@ -49784,6 +49112,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } + .sm\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .sm\:to-current { + --tw-gradient-to: currentColor !important; + } + + .sm\:to-black { + --tw-gradient-to: #000 !important; + } + + .sm\:to-white { + --tw-gradient-to: #fff !important; + } + + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .sm\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .sm\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .sm\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .sm\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .sm\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .sm\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .sm\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .sm\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .sm\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .sm\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .sm\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .sm\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .sm\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .sm\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .sm\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .sm\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .sm\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .sm\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .sm\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .sm\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .sm\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .sm\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .sm\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .sm\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .sm\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .sm\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .sm\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .sm\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .sm\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .sm\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .sm\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .sm\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .sm\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .sm\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .sm\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .sm\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .sm\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .sm\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .sm\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .sm\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .sm\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .sm\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .sm\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .sm\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .sm\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .sm\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .sm\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .sm\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .sm\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .sm\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .sm\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .sm\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .sm\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .sm\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .sm\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .sm\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .sm\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .sm\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .sm\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .sm\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .sm\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .sm\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .sm\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .sm\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .sm\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .sm\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .sm\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .sm\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .sm\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .sm\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .sm\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .sm\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .sm\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .sm\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .sm\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .sm\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .sm\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .sm\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .sm\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .sm\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .sm\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .sm\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .sm\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .sm\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .sm\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .sm\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .sm\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .sm\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .sm\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .sm\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .sm\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .sm\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + .sm\:focus\:to-transparent:focus { --tw-gradient-to: transparent !important; } @@ -55793,10 +55793,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:ring-inset { - --tw-ring-inset: inset !important; - } - .sm\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -55833,10 +55829,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .sm\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !important; - } - .sm\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -55873,6 +55865,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } + .sm\:ring-inset { + --tw-ring-inset: inset !important; + } + + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + .sm\:focus\:ring-inset:focus { --tw-ring-inset: inset !important; } @@ -58633,6 +58633,38 @@ video { backdrop-filter: none !important; } + .sm\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0) !important; + } + + .sm\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px) !important; + } + + .sm\:backdrop-blur { + --tw-backdrop-blur: blur(8px) !important; + } + + .sm\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px) !important; + } + + .sm\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px) !important; + } + + .sm\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px) !important; + } + + .sm\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px) !important; + } + + .sm\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px) !important; + } + .sm\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0) !important; } @@ -59542,116 +59574,541 @@ video { left: -0.375rem !important; } - .md\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; + .md\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .md\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .md\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .md\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .md\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .md\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .md\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .md\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .md\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .md\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .md\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .md\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .md\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .md\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .md\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .md\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .md\:inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .md\:inset-x-1 { + left: 0.25rem !important; + right: 0.25rem !important; + } + + .md\:inset-x-2 { + left: 0.5rem !important; + right: 0.5rem !important; + } + + .md\:inset-x-3 { + left: 0.75rem !important; + right: 0.75rem !important; + } + + .md\:inset-x-4 { + left: 1rem !important; + right: 1rem !important; + } + + .md\:inset-x-5 { + left: 1.25rem !important; + right: 1.25rem !important; + } + + .md\:inset-x-6 { + left: 1.5rem !important; + right: 1.5rem !important; + } + + .md\:inset-x-7 { + left: 1.75rem !important; + right: 1.75rem !important; + } + + .md\:inset-x-8 { + left: 2rem !important; + right: 2rem !important; + } + + .md\:inset-x-9 { + left: 2.25rem !important; + right: 2.25rem !important; + } + + .md\:inset-x-10 { + left: 2.5rem !important; + right: 2.5rem !important; + } + + .md\:inset-x-11 { + left: 2.75rem !important; + right: 2.75rem !important; + } + + .md\:inset-x-12 { + left: 3rem !important; + right: 3rem !important; + } + + .md\:inset-x-14 { + left: 3.5rem !important; + right: 3.5rem !important; + } + + .md\:inset-x-16 { + left: 4rem !important; + right: 4rem !important; + } + + .md\:inset-x-20 { + left: 5rem !important; + right: 5rem !important; + } + + .md\:inset-x-24 { + left: 6rem !important; + right: 6rem !important; + } + + .md\:inset-x-28 { + left: 7rem !important; + right: 7rem !important; + } + + .md\:inset-x-32 { + left: 8rem !important; + right: 8rem !important; + } + + .md\:inset-x-36 { + left: 9rem !important; + right: 9rem !important; + } + + .md\:inset-x-40 { + left: 10rem !important; + right: 10rem !important; + } + + .md\:inset-x-44 { + left: 11rem !important; + right: 11rem !important; + } + + .md\:inset-x-48 { + left: 12rem !important; + right: 12rem !important; + } + + .md\:inset-x-52 { + left: 13rem !important; + right: 13rem !important; + } + + .md\:inset-x-56 { + left: 14rem !important; + right: 14rem !important; + } + + .md\:inset-x-60 { + left: 15rem !important; + right: 15rem !important; + } + + .md\:inset-x-64 { + left: 16rem !important; + right: 16rem !important; + } + + .md\:inset-x-72 { + left: 18rem !important; + right: 18rem !important; + } + + .md\:inset-x-80 { + left: 20rem !important; + right: 20rem !important; + } + + .md\:inset-x-96 { + left: 24rem !important; + right: 24rem !important; + } + + .md\:inset-x-auto { + left: auto !important; + right: auto !important; + } + + .md\:inset-x-px { + left: 1px !important; + right: 1px !important; + } + + .md\:inset-x-0\.5 { + left: 0.125rem !important; + right: 0.125rem !important; + } + + .md\:inset-x-1\.5 { + left: 0.375rem !important; + right: 0.375rem !important; + } + + .md\:inset-x-2\.5 { + left: 0.625rem !important; + right: 0.625rem !important; + } + + .md\:inset-x-3\.5 { + left: 0.875rem !important; + right: 0.875rem !important; + } + + .md\:-inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .md\:-inset-x-1 { + left: -0.25rem !important; + right: -0.25rem !important; + } + + .md\:-inset-x-2 { + left: -0.5rem !important; + right: -0.5rem !important; + } + + .md\:-inset-x-3 { + left: -0.75rem !important; + right: -0.75rem !important; + } + + .md\:-inset-x-4 { + left: -1rem !important; + right: -1rem !important; + } + + .md\:-inset-x-5 { + left: -1.25rem !important; + right: -1.25rem !important; + } + + .md\:-inset-x-6 { + left: -1.5rem !important; + right: -1.5rem !important; + } + + .md\:-inset-x-7 { + left: -1.75rem !important; + right: -1.75rem !important; + } + + .md\:-inset-x-8 { + left: -2rem !important; + right: -2rem !important; + } + + .md\:-inset-x-9 { + left: -2.25rem !important; + right: -2.25rem !important; + } + + .md\:-inset-x-10 { + left: -2.5rem !important; + right: -2.5rem !important; + } + + .md\:-inset-x-11 { + left: -2.75rem !important; + right: -2.75rem !important; + } + + .md\:-inset-x-12 { + left: -3rem !important; + right: -3rem !important; + } + + .md\:-inset-x-14 { + left: -3.5rem !important; + right: -3.5rem !important; + } + + .md\:-inset-x-16 { + left: -4rem !important; + right: -4rem !important; + } + + .md\:-inset-x-20 { + left: -5rem !important; + right: -5rem !important; + } + + .md\:-inset-x-24 { + left: -6rem !important; + right: -6rem !important; + } + + .md\:-inset-x-28 { + left: -7rem !important; + right: -7rem !important; + } + + .md\:-inset-x-32 { + left: -8rem !important; + right: -8rem !important; + } + + .md\:-inset-x-36 { + left: -9rem !important; + right: -9rem !important; + } + + .md\:-inset-x-40 { + left: -10rem !important; + right: -10rem !important; + } + + .md\:-inset-x-44 { + left: -11rem !important; + right: -11rem !important; + } + + .md\:-inset-x-48 { + left: -12rem !important; + right: -12rem !important; + } + + .md\:-inset-x-52 { + left: -13rem !important; + right: -13rem !important; + } + + .md\:-inset-x-56 { + left: -14rem !important; + right: -14rem !important; + } + + .md\:-inset-x-60 { + left: -15rem !important; + right: -15rem !important; + } + + .md\:-inset-x-64 { + left: -16rem !important; + right: -16rem !important; + } + + .md\:-inset-x-72 { + left: -18rem !important; + right: -18rem !important; + } + + .md\:-inset-x-80 { + left: -20rem !important; + right: -20rem !important; + } + + .md\:-inset-x-96 { + left: -24rem !important; + right: -24rem !important; + } + + .md\:-inset-x-px { + left: -1px !important; + right: -1px !important; + } + + .md\:-inset-x-0\.5 { + left: -0.125rem !important; + right: -0.125rem !important; + } + + .md\:-inset-x-1\.5 { + left: -0.375rem !important; + right: -0.375rem !important; + } + + .md\:-inset-x-2\.5 { left: -0.625rem !important; + right: -0.625rem !important; } - .md\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; + .md\:-inset-x-3\.5 { left: -0.875rem !important; + right: -0.875rem !important; } - .md\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .md\:inset-x-1\/2 { left: 50% !important; + right: 50% !important; } - .md\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; + .md\:inset-x-1\/3 { left: 33.333333% !important; + right: 33.333333% !important; } - .md\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; + .md\:inset-x-2\/3 { left: 66.666667% !important; + right: 66.666667% !important; } - .md\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; + .md\:inset-x-1\/4 { left: 25% !important; + right: 25% !important; } - .md\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .md\:inset-x-2\/4 { left: 50% !important; + right: 50% !important; } - .md\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; + .md\:inset-x-3\/4 { left: 75% !important; + right: 75% !important; } - .md\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; + .md\:inset-x-full { left: 100% !important; + right: 100% !important; } - .md\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .md\:-inset-x-1\/2 { left: -50% !important; + right: -50% !important; } - .md\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; + .md\:-inset-x-1\/3 { left: -33.333333% !important; + right: -33.333333% !important; } - .md\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; + .md\:-inset-x-2\/3 { left: -66.666667% !important; + right: -66.666667% !important; } - .md\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; + .md\:-inset-x-1\/4 { left: -25% !important; + right: -25% !important; } - .md\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .md\:-inset-x-2\/4 { left: -50% !important; + right: -50% !important; } - .md\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; + .md\:-inset-x-3\/4 { left: -75% !important; + right: -75% !important; } - .md\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; + .md\:-inset-x-full { left: -100% !important; + right: -100% !important; } .md\:inset-y-0 { @@ -59659,2205 +60116,1780 @@ video { bottom: 0px !important; } - .md\:inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .md\:inset-y-1 { top: 0.25rem !important; bottom: 0.25rem !important; } - .md\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; - } - .md\:inset-y-2 { top: 0.5rem !important; bottom: 0.5rem !important; } - .md\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; - } - .md\:inset-y-3 { top: 0.75rem !important; bottom: 0.75rem !important; } - .md\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; - } - .md\:inset-y-4 { top: 1rem !important; bottom: 1rem !important; } - .md\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; - } - .md\:inset-y-5 { top: 1.25rem !important; bottom: 1.25rem !important; } - .md\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; - } - .md\:inset-y-6 { top: 1.5rem !important; bottom: 1.5rem !important; } - .md\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; - } - .md\:inset-y-7 { top: 1.75rem !important; bottom: 1.75rem !important; } - .md\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; - } - .md\:inset-y-8 { top: 2rem !important; bottom: 2rem !important; } - .md\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; - } - .md\:inset-y-9 { top: 2.25rem !important; bottom: 2.25rem !important; } - .md\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; - } - .md\:inset-y-10 { top: 2.5rem !important; bottom: 2.5rem !important; } - .md\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; - } - .md\:inset-y-11 { top: 2.75rem !important; bottom: 2.75rem !important; } - .md\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; - } - .md\:inset-y-12 { top: 3rem !important; bottom: 3rem !important; } - .md\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; - } - .md\:inset-y-14 { top: 3.5rem !important; bottom: 3.5rem !important; } - .md\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; - } - .md\:inset-y-16 { top: 4rem !important; bottom: 4rem !important; } - .md\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; - } - .md\:inset-y-20 { top: 5rem !important; bottom: 5rem !important; } - .md\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; - } - .md\:inset-y-24 { top: 6rem !important; bottom: 6rem !important; } - .md\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; - } - .md\:inset-y-28 { top: 7rem !important; bottom: 7rem !important; } - .md\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; - } - .md\:inset-y-32 { top: 8rem !important; bottom: 8rem !important; } - .md\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; - } - .md\:inset-y-36 { top: 9rem !important; bottom: 9rem !important; } - .md\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; - } - .md\:inset-y-40 { top: 10rem !important; bottom: 10rem !important; } - .md\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; - } - .md\:inset-y-44 { top: 11rem !important; bottom: 11rem !important; } - .md\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; - } - .md\:inset-y-48 { top: 12rem !important; bottom: 12rem !important; } - .md\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; - } - .md\:inset-y-52 { top: 13rem !important; bottom: 13rem !important; } - .md\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; - } - .md\:inset-y-56 { top: 14rem !important; bottom: 14rem !important; } - .md\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; - } - .md\:inset-y-60 { top: 15rem !important; bottom: 15rem !important; } - .md\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; - } - .md\:inset-y-64 { top: 16rem !important; bottom: 16rem !important; } - .md\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; - } - .md\:inset-y-72 { top: 18rem !important; bottom: 18rem !important; } - .md\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; - } - .md\:inset-y-80 { top: 20rem !important; bottom: 20rem !important; } - .md\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; - } - .md\:inset-y-96 { top: 24rem !important; bottom: 24rem !important; } - .md\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; - } - .md\:inset-y-auto { top: auto !important; bottom: auto !important; } - .md\:inset-x-auto { - right: auto !important; - left: auto !important; - } - .md\:inset-y-px { top: 1px !important; bottom: 1px !important; } - .md\:inset-x-px { - right: 1px !important; - left: 1px !important; - } - .md\:inset-y-0\.5 { top: 0.125rem !important; bottom: 0.125rem !important; } - .md\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; - } - .md\:inset-y-1\.5 { top: 0.375rem !important; bottom: 0.375rem !important; } - .md\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; - } - .md\:inset-y-2\.5 { top: 0.625rem !important; bottom: 0.625rem !important; } - .md\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; - } - .md\:inset-y-3\.5 { top: 0.875rem !important; bottom: 0.875rem !important; } - .md\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; - } - .md\:-inset-y-0 { top: 0px !important; bottom: 0px !important; } - .md\:-inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .md\:-inset-y-1 { top: -0.25rem !important; bottom: -0.25rem !important; } - .md\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; - } - .md\:-inset-y-2 { top: -0.5rem !important; bottom: -0.5rem !important; } - .md\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; - } - .md\:-inset-y-3 { top: -0.75rem !important; bottom: -0.75rem !important; } - .md\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; - } - .md\:-inset-y-4 { top: -1rem !important; bottom: -1rem !important; } - .md\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; - } - .md\:-inset-y-5 { top: -1.25rem !important; bottom: -1.25rem !important; } - .md\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; - } - .md\:-inset-y-6 { top: -1.5rem !important; bottom: -1.5rem !important; } - .md\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; - } - .md\:-inset-y-7 { top: -1.75rem !important; bottom: -1.75rem !important; } - .md\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; - } - .md\:-inset-y-8 { top: -2rem !important; bottom: -2rem !important; } - .md\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; - } - .md\:-inset-y-9 { top: -2.25rem !important; bottom: -2.25rem !important; } - .md\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; - } - .md\:-inset-y-10 { top: -2.5rem !important; bottom: -2.5rem !important; } - .md\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; - } - .md\:-inset-y-11 { top: -2.75rem !important; bottom: -2.75rem !important; } - .md\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; - } - .md\:-inset-y-12 { top: -3rem !important; bottom: -3rem !important; } - .md\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; - } - .md\:-inset-y-14 { top: -3.5rem !important; bottom: -3.5rem !important; } - .md\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; - } - .md\:-inset-y-16 { top: -4rem !important; bottom: -4rem !important; } - .md\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; - } - .md\:-inset-y-20 { top: -5rem !important; bottom: -5rem !important; } - .md\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; - } - .md\:-inset-y-24 { top: -6rem !important; bottom: -6rem !important; } - .md\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; - } - .md\:-inset-y-28 { top: -7rem !important; bottom: -7rem !important; } - .md\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; - } - .md\:-inset-y-32 { top: -8rem !important; bottom: -8rem !important; } - .md\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; - } - .md\:-inset-y-36 { top: -9rem !important; bottom: -9rem !important; } - .md\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; - } - .md\:-inset-y-40 { top: -10rem !important; bottom: -10rem !important; } - .md\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; - } - .md\:-inset-y-44 { top: -11rem !important; bottom: -11rem !important; } - .md\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; - } - .md\:-inset-y-48 { top: -12rem !important; bottom: -12rem !important; } - .md\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; - } - .md\:-inset-y-52 { top: -13rem !important; bottom: -13rem !important; } - .md\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; - } - .md\:-inset-y-56 { top: -14rem !important; bottom: -14rem !important; } - .md\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; - } - .md\:-inset-y-60 { top: -15rem !important; bottom: -15rem !important; } - .md\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; - } - .md\:-inset-y-64 { top: -16rem !important; bottom: -16rem !important; } - .md\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; - } - .md\:-inset-y-72 { top: -18rem !important; bottom: -18rem !important; } - .md\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; - } - .md\:-inset-y-80 { top: -20rem !important; bottom: -20rem !important; } - .md\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; - } - .md\:-inset-y-96 { top: -24rem !important; bottom: -24rem !important; } - .md\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; - } - .md\:-inset-y-px { top: -1px !important; bottom: -1px !important; } - .md\:-inset-x-px { - right: -1px !important; - left: -1px !important; - } - .md\:-inset-y-0\.5 { top: -0.125rem !important; bottom: -0.125rem !important; } - .md\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; - } - .md\:-inset-y-1\.5 { top: -0.375rem !important; bottom: -0.375rem !important; } - .md\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; - } - .md\:-inset-y-2\.5 { top: -0.625rem !important; bottom: -0.625rem !important; } - .md\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; - } - .md\:-inset-y-3\.5 { top: -0.875rem !important; bottom: -0.875rem !important; } - .md\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; - } - .md\:inset-y-1\/2 { top: 50% !important; bottom: 50% !important; } - .md\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; - } - .md\:inset-y-1\/3 { top: 33.333333% !important; bottom: 33.333333% !important; } - .md\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; - } - .md\:inset-y-2\/3 { top: 66.666667% !important; bottom: 66.666667% !important; } - .md\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; - } - .md\:inset-y-1\/4 { top: 25% !important; bottom: 25% !important; } - .md\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; - } - .md\:inset-y-2\/4 { top: 50% !important; bottom: 50% !important; } - .md\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; - } - .md\:inset-y-3\/4 { top: 75% !important; bottom: 75% !important; } - .md\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; - } - .md\:inset-y-full { top: 100% !important; bottom: 100% !important; } - .md\:inset-x-full { - right: 100% !important; - left: 100% !important; - } - .md\:-inset-y-1\/2 { top: -50% !important; bottom: -50% !important; } - .md\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; - } - .md\:-inset-y-1\/3 { top: -33.333333% !important; bottom: -33.333333% !important; } - .md\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; - } - .md\:-inset-y-2\/3 { top: -66.666667% !important; bottom: -66.666667% !important; } - .md\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; - } - .md\:-inset-y-1\/4 { top: -25% !important; bottom: -25% !important; } - .md\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; - } - .md\:-inset-y-2\/4 { top: -50% !important; bottom: -50% !important; } - .md\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; - } - .md\:-inset-y-3\/4 { top: -75% !important; bottom: -75% !important; } - .md\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; - } - .md\:-inset-y-full { top: -100% !important; bottom: -100% !important; } - .md\:-inset-x-full { - right: -100% !important; - left: -100% !important; - } - .md\:top-0 { top: 0px !important; } - .md\:right-0 { - right: 0px !important; + .md\:top-1 { + top: 0.25rem !important; } - .md\:bottom-0 { - bottom: 0px !important; + .md\:top-2 { + top: 0.5rem !important; } - .md\:left-0 { - left: 0px !important; + .md\:top-3 { + top: 0.75rem !important; } - .md\:top-1 { - top: 0.25rem !important; + .md\:top-4 { + top: 1rem !important; } - .md\:right-1 { - right: 0.25rem !important; + .md\:top-5 { + top: 1.25rem !important; } - .md\:bottom-1 { - bottom: 0.25rem !important; + .md\:top-6 { + top: 1.5rem !important; } - .md\:left-1 { - left: 0.25rem !important; + .md\:top-7 { + top: 1.75rem !important; } - .md\:top-2 { - top: 0.5rem !important; + .md\:top-8 { + top: 2rem !important; } - .md\:right-2 { - right: 0.5rem !important; + .md\:top-9 { + top: 2.25rem !important; } - .md\:bottom-2 { - bottom: 0.5rem !important; + .md\:top-10 { + top: 2.5rem !important; } - .md\:left-2 { - left: 0.5rem !important; + .md\:top-11 { + top: 2.75rem !important; } - .md\:top-3 { - top: 0.75rem !important; + .md\:top-12 { + top: 3rem !important; } - .md\:right-3 { - right: 0.75rem !important; + .md\:top-14 { + top: 3.5rem !important; } - .md\:bottom-3 { - bottom: 0.75rem !important; + .md\:top-16 { + top: 4rem !important; } - .md\:left-3 { - left: 0.75rem !important; + .md\:top-20 { + top: 5rem !important; } - .md\:top-4 { - top: 1rem !important; + .md\:top-24 { + top: 6rem !important; } - .md\:right-4 { - right: 1rem !important; + .md\:top-28 { + top: 7rem !important; } - .md\:bottom-4 { - bottom: 1rem !important; + .md\:top-32 { + top: 8rem !important; } - .md\:left-4 { - left: 1rem !important; + .md\:top-36 { + top: 9rem !important; } - .md\:top-5 { - top: 1.25rem !important; + .md\:top-40 { + top: 10rem !important; } - .md\:right-5 { - right: 1.25rem !important; + .md\:top-44 { + top: 11rem !important; } - .md\:bottom-5 { - bottom: 1.25rem !important; + .md\:top-48 { + top: 12rem !important; } - .md\:left-5 { - left: 1.25rem !important; + .md\:top-52 { + top: 13rem !important; } - .md\:top-6 { - top: 1.5rem !important; + .md\:top-56 { + top: 14rem !important; } - .md\:right-6 { - right: 1.5rem !important; + .md\:top-60 { + top: 15rem !important; } - .md\:bottom-6 { - bottom: 1.5rem !important; + .md\:top-64 { + top: 16rem !important; } - .md\:left-6 { - left: 1.5rem !important; + .md\:top-72 { + top: 18rem !important; } - .md\:top-7 { - top: 1.75rem !important; + .md\:top-80 { + top: 20rem !important; } - .md\:right-7 { - right: 1.75rem !important; + .md\:top-96 { + top: 24rem !important; } - .md\:bottom-7 { - bottom: 1.75rem !important; + .md\:top-auto { + top: auto !important; } - .md\:left-7 { - left: 1.75rem !important; + .md\:top-px { + top: 1px !important; } - .md\:top-8 { - top: 2rem !important; + .md\:top-0\.5 { + top: 0.125rem !important; } - .md\:right-8 { - right: 2rem !important; + .md\:top-1\.5 { + top: 0.375rem !important; } - .md\:bottom-8 { - bottom: 2rem !important; + .md\:top-2\.5 { + top: 0.625rem !important; } - .md\:left-8 { - left: 2rem !important; + .md\:top-3\.5 { + top: 0.875rem !important; } - .md\:top-9 { - top: 2.25rem !important; + .md\:-top-0 { + top: 0px !important; } - .md\:right-9 { - right: 2.25rem !important; + .md\:-top-1 { + top: -0.25rem !important; } - .md\:bottom-9 { - bottom: 2.25rem !important; + .md\:-top-2 { + top: -0.5rem !important; } - .md\:left-9 { - left: 2.25rem !important; + .md\:-top-3 { + top: -0.75rem !important; } - .md\:top-10 { - top: 2.5rem !important; + .md\:-top-4 { + top: -1rem !important; } - .md\:right-10 { - right: 2.5rem !important; + .md\:-top-5 { + top: -1.25rem !important; } - .md\:bottom-10 { - bottom: 2.5rem !important; + .md\:-top-6 { + top: -1.5rem !important; } - .md\:left-10 { - left: 2.5rem !important; + .md\:-top-7 { + top: -1.75rem !important; } - .md\:top-11 { - top: 2.75rem !important; + .md\:-top-8 { + top: -2rem !important; } - .md\:right-11 { - right: 2.75rem !important; + .md\:-top-9 { + top: -2.25rem !important; } - .md\:bottom-11 { - bottom: 2.75rem !important; + .md\:-top-10 { + top: -2.5rem !important; } - .md\:left-11 { - left: 2.75rem !important; + .md\:-top-11 { + top: -2.75rem !important; } - .md\:top-12 { - top: 3rem !important; + .md\:-top-12 { + top: -3rem !important; } - .md\:right-12 { - right: 3rem !important; + .md\:-top-14 { + top: -3.5rem !important; } - .md\:bottom-12 { - bottom: 3rem !important; + .md\:-top-16 { + top: -4rem !important; } - .md\:left-12 { - left: 3rem !important; + .md\:-top-20 { + top: -5rem !important; } - .md\:top-14 { - top: 3.5rem !important; + .md\:-top-24 { + top: -6rem !important; } - .md\:right-14 { - right: 3.5rem !important; + .md\:-top-28 { + top: -7rem !important; } - .md\:bottom-14 { - bottom: 3.5rem !important; + .md\:-top-32 { + top: -8rem !important; } - .md\:left-14 { - left: 3.5rem !important; + .md\:-top-36 { + top: -9rem !important; } - .md\:top-16 { - top: 4rem !important; + .md\:-top-40 { + top: -10rem !important; } - .md\:right-16 { - right: 4rem !important; + .md\:-top-44 { + top: -11rem !important; } - .md\:bottom-16 { - bottom: 4rem !important; + .md\:-top-48 { + top: -12rem !important; } - .md\:left-16 { - left: 4rem !important; + .md\:-top-52 { + top: -13rem !important; } - .md\:top-20 { - top: 5rem !important; + .md\:-top-56 { + top: -14rem !important; } - .md\:right-20 { - right: 5rem !important; + .md\:-top-60 { + top: -15rem !important; } - .md\:bottom-20 { - bottom: 5rem !important; + .md\:-top-64 { + top: -16rem !important; } - .md\:left-20 { - left: 5rem !important; + .md\:-top-72 { + top: -18rem !important; } - .md\:top-24 { - top: 6rem !important; + .md\:-top-80 { + top: -20rem !important; } - .md\:right-24 { - right: 6rem !important; + .md\:-top-96 { + top: -24rem !important; } - .md\:bottom-24 { - bottom: 6rem !important; + .md\:-top-px { + top: -1px !important; } - .md\:left-24 { - left: 6rem !important; + .md\:-top-0\.5 { + top: -0.125rem !important; } - .md\:top-28 { - top: 7rem !important; + .md\:-top-1\.5 { + top: -0.375rem !important; } - .md\:right-28 { - right: 7rem !important; + .md\:-top-2\.5 { + top: -0.625rem !important; } - .md\:bottom-28 { - bottom: 7rem !important; + .md\:-top-3\.5 { + top: -0.875rem !important; } - .md\:left-28 { - left: 7rem !important; + .md\:top-1\/2 { + top: 50% !important; } - .md\:top-32 { - top: 8rem !important; + .md\:top-1\/3 { + top: 33.333333% !important; } - .md\:right-32 { - right: 8rem !important; + .md\:top-2\/3 { + top: 66.666667% !important; } - .md\:bottom-32 { - bottom: 8rem !important; + .md\:top-1\/4 { + top: 25% !important; } - .md\:left-32 { - left: 8rem !important; + .md\:top-2\/4 { + top: 50% !important; } - .md\:top-36 { - top: 9rem !important; + .md\:top-3\/4 { + top: 75% !important; } - .md\:right-36 { - right: 9rem !important; + .md\:top-full { + top: 100% !important; } - .md\:bottom-36 { - bottom: 9rem !important; + .md\:-top-1\/2 { + top: -50% !important; } - .md\:left-36 { - left: 9rem !important; + .md\:-top-1\/3 { + top: -33.333333% !important; } - .md\:top-40 { - top: 10rem !important; + .md\:-top-2\/3 { + top: -66.666667% !important; } - .md\:right-40 { - right: 10rem !important; + .md\:-top-1\/4 { + top: -25% !important; } - .md\:bottom-40 { - bottom: 10rem !important; + .md\:-top-2\/4 { + top: -50% !important; } - .md\:left-40 { - left: 10rem !important; + .md\:-top-3\/4 { + top: -75% !important; } - .md\:top-44 { - top: 11rem !important; + .md\:-top-full { + top: -100% !important; } - .md\:right-44 { - right: 11rem !important; + .md\:right-0 { + right: 0px !important; } - .md\:bottom-44 { - bottom: 11rem !important; + .md\:right-1 { + right: 0.25rem !important; } - .md\:left-44 { - left: 11rem !important; + .md\:right-2 { + right: 0.5rem !important; } - .md\:top-48 { - top: 12rem !important; + .md\:right-3 { + right: 0.75rem !important; } - .md\:right-48 { - right: 12rem !important; + .md\:right-4 { + right: 1rem !important; } - .md\:bottom-48 { - bottom: 12rem !important; + .md\:right-5 { + right: 1.25rem !important; } - .md\:left-48 { - left: 12rem !important; + .md\:right-6 { + right: 1.5rem !important; } - .md\:top-52 { - top: 13rem !important; + .md\:right-7 { + right: 1.75rem !important; } - .md\:right-52 { - right: 13rem !important; + .md\:right-8 { + right: 2rem !important; } - .md\:bottom-52 { - bottom: 13rem !important; + .md\:right-9 { + right: 2.25rem !important; } - .md\:left-52 { - left: 13rem !important; + .md\:right-10 { + right: 2.5rem !important; } - .md\:top-56 { - top: 14rem !important; + .md\:right-11 { + right: 2.75rem !important; } - .md\:right-56 { - right: 14rem !important; + .md\:right-12 { + right: 3rem !important; } - .md\:bottom-56 { - bottom: 14rem !important; + .md\:right-14 { + right: 3.5rem !important; } - .md\:left-56 { - left: 14rem !important; + .md\:right-16 { + right: 4rem !important; } - .md\:top-60 { - top: 15rem !important; + .md\:right-20 { + right: 5rem !important; } - .md\:right-60 { - right: 15rem !important; + .md\:right-24 { + right: 6rem !important; } - .md\:bottom-60 { - bottom: 15rem !important; + .md\:right-28 { + right: 7rem !important; } - .md\:left-60 { - left: 15rem !important; + .md\:right-32 { + right: 8rem !important; } - .md\:top-64 { - top: 16rem !important; + .md\:right-36 { + right: 9rem !important; } - .md\:right-64 { - right: 16rem !important; + .md\:right-40 { + right: 10rem !important; } - .md\:bottom-64 { - bottom: 16rem !important; + .md\:right-44 { + right: 11rem !important; } - .md\:left-64 { - left: 16rem !important; + .md\:right-48 { + right: 12rem !important; } - .md\:top-72 { - top: 18rem !important; + .md\:right-52 { + right: 13rem !important; } - .md\:right-72 { - right: 18rem !important; + .md\:right-56 { + right: 14rem !important; } - .md\:bottom-72 { - bottom: 18rem !important; + .md\:right-60 { + right: 15rem !important; } - .md\:left-72 { - left: 18rem !important; + .md\:right-64 { + right: 16rem !important; } - .md\:top-80 { - top: 20rem !important; + .md\:right-72 { + right: 18rem !important; } .md\:right-80 { right: 20rem !important; } - .md\:bottom-80 { - bottom: 20rem !important; + .md\:right-96 { + right: 24rem !important; } - .md\:left-80 { - left: 20rem !important; + .md\:right-auto { + right: auto !important; } - .md\:top-96 { - top: 24rem !important; + .md\:right-px { + right: 1px !important; } - .md\:right-96 { - right: 24rem !important; + .md\:right-0\.5 { + right: 0.125rem !important; } - .md\:bottom-96 { - bottom: 24rem !important; + .md\:right-1\.5 { + right: 0.375rem !important; } - .md\:left-96 { - left: 24rem !important; + .md\:right-2\.5 { + right: 0.625rem !important; } - .md\:top-auto { - top: auto !important; + .md\:right-3\.5 { + right: 0.875rem !important; } - .md\:right-auto { - right: auto !important; + .md\:-right-0 { + right: 0px !important; } - .md\:bottom-auto { - bottom: auto !important; + .md\:-right-1 { + right: -0.25rem !important; } - .md\:left-auto { - left: auto !important; + .md\:-right-2 { + right: -0.5rem !important; } - .md\:top-px { - top: 1px !important; + .md\:-right-3 { + right: -0.75rem !important; } - .md\:right-px { - right: 1px !important; + .md\:-right-4 { + right: -1rem !important; } - .md\:bottom-px { - bottom: 1px !important; + .md\:-right-5 { + right: -1.25rem !important; } - .md\:left-px { - left: 1px !important; + .md\:-right-6 { + right: -1.5rem !important; } - .md\:top-0\.5 { - top: 0.125rem !important; + .md\:-right-7 { + right: -1.75rem !important; } - .md\:right-0\.5 { - right: 0.125rem !important; + .md\:-right-8 { + right: -2rem !important; } - .md\:bottom-0\.5 { - bottom: 0.125rem !important; + .md\:-right-9 { + right: -2.25rem !important; } - .md\:left-0\.5 { - left: 0.125rem !important; + .md\:-right-10 { + right: -2.5rem !important; } - .md\:top-1\.5 { - top: 0.375rem !important; + .md\:-right-11 { + right: -2.75rem !important; } - .md\:right-1\.5 { - right: 0.375rem !important; + .md\:-right-12 { + right: -3rem !important; } - .md\:bottom-1\.5 { - bottom: 0.375rem !important; + .md\:-right-14 { + right: -3.5rem !important; } - .md\:left-1\.5 { - left: 0.375rem !important; + .md\:-right-16 { + right: -4rem !important; } - .md\:top-2\.5 { - top: 0.625rem !important; + .md\:-right-20 { + right: -5rem !important; } - .md\:right-2\.5 { - right: 0.625rem !important; + .md\:-right-24 { + right: -6rem !important; } - .md\:bottom-2\.5 { - bottom: 0.625rem !important; + .md\:-right-28 { + right: -7rem !important; } - .md\:left-2\.5 { - left: 0.625rem !important; + .md\:-right-32 { + right: -8rem !important; } - .md\:top-3\.5 { - top: 0.875rem !important; + .md\:-right-36 { + right: -9rem !important; } - .md\:right-3\.5 { - right: 0.875rem !important; + .md\:-right-40 { + right: -10rem !important; } - .md\:bottom-3\.5 { - bottom: 0.875rem !important; + .md\:-right-44 { + right: -11rem !important; } - .md\:left-3\.5 { - left: 0.875rem !important; + .md\:-right-48 { + right: -12rem !important; } - .md\:-top-0 { - top: 0px !important; + .md\:-right-52 { + right: -13rem !important; } - .md\:-right-0 { - right: 0px !important; + .md\:-right-56 { + right: -14rem !important; } - .md\:-bottom-0 { - bottom: 0px !important; + .md\:-right-60 { + right: -15rem !important; } - .md\:-left-0 { - left: 0px !important; + .md\:-right-64 { + right: -16rem !important; } - .md\:-top-1 { - top: -0.25rem !important; + .md\:-right-72 { + right: -18rem !important; } - .md\:-right-1 { - right: -0.25rem !important; + .md\:-right-80 { + right: -20rem !important; } - .md\:-bottom-1 { - bottom: -0.25rem !important; + .md\:-right-96 { + right: -24rem !important; } - .md\:-left-1 { - left: -0.25rem !important; + .md\:-right-px { + right: -1px !important; } - .md\:-top-2 { - top: -0.5rem !important; + .md\:-right-0\.5 { + right: -0.125rem !important; } - .md\:-right-2 { - right: -0.5rem !important; + .md\:-right-1\.5 { + right: -0.375rem !important; } - .md\:-bottom-2 { - bottom: -0.5rem !important; + .md\:-right-2\.5 { + right: -0.625rem !important; } - .md\:-left-2 { - left: -0.5rem !important; + .md\:-right-3\.5 { + right: -0.875rem !important; } - .md\:-top-3 { - top: -0.75rem !important; + .md\:right-1\/2 { + right: 50% !important; } - .md\:-right-3 { - right: -0.75rem !important; + .md\:right-1\/3 { + right: 33.333333% !important; } - .md\:-bottom-3 { - bottom: -0.75rem !important; + .md\:right-2\/3 { + right: 66.666667% !important; } - .md\:-left-3 { - left: -0.75rem !important; + .md\:right-1\/4 { + right: 25% !important; } - .md\:-top-4 { - top: -1rem !important; + .md\:right-2\/4 { + right: 50% !important; } - .md\:-right-4 { - right: -1rem !important; + .md\:right-3\/4 { + right: 75% !important; } - .md\:-bottom-4 { - bottom: -1rem !important; + .md\:right-full { + right: 100% !important; } - .md\:-left-4 { - left: -1rem !important; + .md\:-right-1\/2 { + right: -50% !important; } - .md\:-top-5 { - top: -1.25rem !important; + .md\:-right-1\/3 { + right: -33.333333% !important; } - .md\:-right-5 { - right: -1.25rem !important; + .md\:-right-2\/3 { + right: -66.666667% !important; } - .md\:-bottom-5 { - bottom: -1.25rem !important; + .md\:-right-1\/4 { + right: -25% !important; } - .md\:-left-5 { - left: -1.25rem !important; + .md\:-right-2\/4 { + right: -50% !important; } - .md\:-top-6 { - top: -1.5rem !important; + .md\:-right-3\/4 { + right: -75% !important; } - .md\:-right-6 { - right: -1.5rem !important; + .md\:-right-full { + right: -100% !important; } - .md\:-bottom-6 { - bottom: -1.5rem !important; + .md\:bottom-0 { + bottom: 0px !important; } - .md\:-left-6 { - left: -1.5rem !important; + .md\:bottom-1 { + bottom: 0.25rem !important; } - .md\:-top-7 { - top: -1.75rem !important; + .md\:bottom-2 { + bottom: 0.5rem !important; } - .md\:-right-7 { - right: -1.75rem !important; + .md\:bottom-3 { + bottom: 0.75rem !important; } - .md\:-bottom-7 { - bottom: -1.75rem !important; + .md\:bottom-4 { + bottom: 1rem !important; } - .md\:-left-7 { - left: -1.75rem !important; + .md\:bottom-5 { + bottom: 1.25rem !important; } - .md\:-top-8 { - top: -2rem !important; + .md\:bottom-6 { + bottom: 1.5rem !important; } - .md\:-right-8 { - right: -2rem !important; + .md\:bottom-7 { + bottom: 1.75rem !important; } - .md\:-bottom-8 { - bottom: -2rem !important; + .md\:bottom-8 { + bottom: 2rem !important; } - .md\:-left-8 { - left: -2rem !important; + .md\:bottom-9 { + bottom: 2.25rem !important; } - .md\:-top-9 { - top: -2.25rem !important; + .md\:bottom-10 { + bottom: 2.5rem !important; } - .md\:-right-9 { - right: -2.25rem !important; + .md\:bottom-11 { + bottom: 2.75rem !important; } - .md\:-bottom-9 { - bottom: -2.25rem !important; + .md\:bottom-12 { + bottom: 3rem !important; } - .md\:-left-9 { - left: -2.25rem !important; + .md\:bottom-14 { + bottom: 3.5rem !important; } - .md\:-top-10 { - top: -2.5rem !important; + .md\:bottom-16 { + bottom: 4rem !important; } - .md\:-right-10 { - right: -2.5rem !important; + .md\:bottom-20 { + bottom: 5rem !important; } - .md\:-bottom-10 { - bottom: -2.5rem !important; + .md\:bottom-24 { + bottom: 6rem !important; } - .md\:-left-10 { - left: -2.5rem !important; + .md\:bottom-28 { + bottom: 7rem !important; } - .md\:-top-11 { - top: -2.75rem !important; + .md\:bottom-32 { + bottom: 8rem !important; } - .md\:-right-11 { - right: -2.75rem !important; + .md\:bottom-36 { + bottom: 9rem !important; } - .md\:-bottom-11 { - bottom: -2.75rem !important; + .md\:bottom-40 { + bottom: 10rem !important; } - .md\:-left-11 { - left: -2.75rem !important; + .md\:bottom-44 { + bottom: 11rem !important; } - .md\:-top-12 { - top: -3rem !important; + .md\:bottom-48 { + bottom: 12rem !important; } - .md\:-right-12 { - right: -3rem !important; + .md\:bottom-52 { + bottom: 13rem !important; } - .md\:-bottom-12 { - bottom: -3rem !important; + .md\:bottom-56 { + bottom: 14rem !important; } - .md\:-left-12 { - left: -3rem !important; + .md\:bottom-60 { + bottom: 15rem !important; } - .md\:-top-14 { - top: -3.5rem !important; + .md\:bottom-64 { + bottom: 16rem !important; } - .md\:-right-14 { - right: -3.5rem !important; + .md\:bottom-72 { + bottom: 18rem !important; } - .md\:-bottom-14 { - bottom: -3.5rem !important; + .md\:bottom-80 { + bottom: 20rem !important; } - .md\:-left-14 { - left: -3.5rem !important; + .md\:bottom-96 { + bottom: 24rem !important; } - .md\:-top-16 { - top: -4rem !important; + .md\:bottom-auto { + bottom: auto !important; } - .md\:-right-16 { - right: -4rem !important; + .md\:bottom-px { + bottom: 1px !important; } - .md\:-bottom-16 { - bottom: -4rem !important; + .md\:bottom-0\.5 { + bottom: 0.125rem !important; } - .md\:-left-16 { - left: -4rem !important; + .md\:bottom-1\.5 { + bottom: 0.375rem !important; } - .md\:-top-20 { - top: -5rem !important; + .md\:bottom-2\.5 { + bottom: 0.625rem !important; } - .md\:-right-20 { - right: -5rem !important; + .md\:bottom-3\.5 { + bottom: 0.875rem !important; } - .md\:-bottom-20 { - bottom: -5rem !important; + .md\:-bottom-0 { + bottom: 0px !important; } - .md\:-left-20 { - left: -5rem !important; + .md\:-bottom-1 { + bottom: -0.25rem !important; } - .md\:-top-24 { - top: -6rem !important; + .md\:-bottom-2 { + bottom: -0.5rem !important; } - .md\:-right-24 { - right: -6rem !important; + .md\:-bottom-3 { + bottom: -0.75rem !important; } - .md\:-bottom-24 { - bottom: -6rem !important; + .md\:-bottom-4 { + bottom: -1rem !important; } - .md\:-left-24 { - left: -6rem !important; + .md\:-bottom-5 { + bottom: -1.25rem !important; } - .md\:-top-28 { - top: -7rem !important; + .md\:-bottom-6 { + bottom: -1.5rem !important; } - .md\:-right-28 { - right: -7rem !important; + .md\:-bottom-7 { + bottom: -1.75rem !important; } - .md\:-bottom-28 { - bottom: -7rem !important; + .md\:-bottom-8 { + bottom: -2rem !important; } - .md\:-left-28 { - left: -7rem !important; + .md\:-bottom-9 { + bottom: -2.25rem !important; } - .md\:-top-32 { - top: -8rem !important; + .md\:-bottom-10 { + bottom: -2.5rem !important; } - .md\:-right-32 { - right: -8rem !important; + .md\:-bottom-11 { + bottom: -2.75rem !important; } - .md\:-bottom-32 { - bottom: -8rem !important; + .md\:-bottom-12 { + bottom: -3rem !important; } - .md\:-left-32 { - left: -8rem !important; + .md\:-bottom-14 { + bottom: -3.5rem !important; } - .md\:-top-36 { - top: -9rem !important; + .md\:-bottom-16 { + bottom: -4rem !important; } - .md\:-right-36 { - right: -9rem !important; + .md\:-bottom-20 { + bottom: -5rem !important; } - .md\:-bottom-36 { - bottom: -9rem !important; + .md\:-bottom-24 { + bottom: -6rem !important; } - .md\:-left-36 { - left: -9rem !important; + .md\:-bottom-28 { + bottom: -7rem !important; } - .md\:-top-40 { - top: -10rem !important; + .md\:-bottom-32 { + bottom: -8rem !important; } - .md\:-right-40 { - right: -10rem !important; + .md\:-bottom-36 { + bottom: -9rem !important; } .md\:-bottom-40 { bottom: -10rem !important; } - .md\:-left-40 { - left: -10rem !important; + .md\:-bottom-44 { + bottom: -11rem !important; } - .md\:-top-44 { - top: -11rem !important; + .md\:-bottom-48 { + bottom: -12rem !important; } - .md\:-right-44 { - right: -11rem !important; + .md\:-bottom-52 { + bottom: -13rem !important; } - .md\:-bottom-44 { - bottom: -11rem !important; + .md\:-bottom-56 { + bottom: -14rem !important; } - .md\:-left-44 { - left: -11rem !important; + .md\:-bottom-60 { + bottom: -15rem !important; } - .md\:-top-48 { - top: -12rem !important; + .md\:-bottom-64 { + bottom: -16rem !important; } - .md\:-right-48 { - right: -12rem !important; + .md\:-bottom-72 { + bottom: -18rem !important; } - .md\:-bottom-48 { - bottom: -12rem !important; + .md\:-bottom-80 { + bottom: -20rem !important; } - .md\:-left-48 { - left: -12rem !important; + .md\:-bottom-96 { + bottom: -24rem !important; } - .md\:-top-52 { - top: -13rem !important; + .md\:-bottom-px { + bottom: -1px !important; } - .md\:-right-52 { - right: -13rem !important; + .md\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .md\:-bottom-52 { - bottom: -13rem !important; + .md\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .md\:-left-52 { - left: -13rem !important; + .md\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .md\:-top-56 { - top: -14rem !important; + .md\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .md\:-right-56 { - right: -14rem !important; + .md\:bottom-1\/2 { + bottom: 50% !important; } - .md\:-bottom-56 { - bottom: -14rem !important; + .md\:bottom-1\/3 { + bottom: 33.333333% !important; } - .md\:-left-56 { - left: -14rem !important; + .md\:bottom-2\/3 { + bottom: 66.666667% !important; } - .md\:-top-60 { - top: -15rem !important; + .md\:bottom-1\/4 { + bottom: 25% !important; } - .md\:-right-60 { - right: -15rem !important; + .md\:bottom-2\/4 { + bottom: 50% !important; } - .md\:-bottom-60 { - bottom: -15rem !important; + .md\:bottom-3\/4 { + bottom: 75% !important; } - .md\:-left-60 { - left: -15rem !important; + .md\:bottom-full { + bottom: 100% !important; } - .md\:-top-64 { - top: -16rem !important; + .md\:-bottom-1\/2 { + bottom: -50% !important; } - .md\:-right-64 { - right: -16rem !important; + .md\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .md\:-bottom-64 { - bottom: -16rem !important; + .md\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .md\:-left-64 { - left: -16rem !important; + .md\:-bottom-1\/4 { + bottom: -25% !important; } - .md\:-top-72 { - top: -18rem !important; + .md\:-bottom-2\/4 { + bottom: -50% !important; } - .md\:-right-72 { - right: -18rem !important; + .md\:-bottom-3\/4 { + bottom: -75% !important; } - .md\:-bottom-72 { - bottom: -18rem !important; + .md\:-bottom-full { + bottom: -100% !important; } - .md\:-left-72 { - left: -18rem !important; + .md\:left-0 { + left: 0px !important; } - .md\:-top-80 { - top: -20rem !important; + .md\:left-1 { + left: 0.25rem !important; } - .md\:-right-80 { - right: -20rem !important; + .md\:left-2 { + left: 0.5rem !important; } - .md\:-bottom-80 { - bottom: -20rem !important; + .md\:left-3 { + left: 0.75rem !important; } - .md\:-left-80 { - left: -20rem !important; + .md\:left-4 { + left: 1rem !important; } - .md\:-top-96 { - top: -24rem !important; + .md\:left-5 { + left: 1.25rem !important; } - .md\:-right-96 { - right: -24rem !important; + .md\:left-6 { + left: 1.5rem !important; } - .md\:-bottom-96 { - bottom: -24rem !important; + .md\:left-7 { + left: 1.75rem !important; } - .md\:-left-96 { - left: -24rem !important; + .md\:left-8 { + left: 2rem !important; } - .md\:-top-px { - top: -1px !important; + .md\:left-9 { + left: 2.25rem !important; } - .md\:-right-px { - right: -1px !important; + .md\:left-10 { + left: 2.5rem !important; } - .md\:-bottom-px { - bottom: -1px !important; + .md\:left-11 { + left: 2.75rem !important; } - .md\:-left-px { - left: -1px !important; + .md\:left-12 { + left: 3rem !important; } - .md\:-top-0\.5 { - top: -0.125rem !important; + .md\:left-14 { + left: 3.5rem !important; } - .md\:-right-0\.5 { - right: -0.125rem !important; + .md\:left-16 { + left: 4rem !important; } - .md\:-bottom-0\.5 { - bottom: -0.125rem !important; + .md\:left-20 { + left: 5rem !important; } - .md\:-left-0\.5 { - left: -0.125rem !important; + .md\:left-24 { + left: 6rem !important; } - .md\:-top-1\.5 { - top: -0.375rem !important; + .md\:left-28 { + left: 7rem !important; } - .md\:-right-1\.5 { - right: -0.375rem !important; + .md\:left-32 { + left: 8rem !important; } - .md\:-bottom-1\.5 { - bottom: -0.375rem !important; + .md\:left-36 { + left: 9rem !important; } - .md\:-left-1\.5 { - left: -0.375rem !important; + .md\:left-40 { + left: 10rem !important; } - .md\:-top-2\.5 { - top: -0.625rem !important; + .md\:left-44 { + left: 11rem !important; } - .md\:-right-2\.5 { - right: -0.625rem !important; + .md\:left-48 { + left: 12rem !important; } - .md\:-bottom-2\.5 { - bottom: -0.625rem !important; + .md\:left-52 { + left: 13rem !important; } - .md\:-left-2\.5 { - left: -0.625rem !important; + .md\:left-56 { + left: 14rem !important; } - .md\:-top-3\.5 { - top: -0.875rem !important; + .md\:left-60 { + left: 15rem !important; } - .md\:-right-3\.5 { - right: -0.875rem !important; + .md\:left-64 { + left: 16rem !important; } - .md\:-bottom-3\.5 { - bottom: -0.875rem !important; + .md\:left-72 { + left: 18rem !important; } - .md\:-left-3\.5 { - left: -0.875rem !important; + .md\:left-80 { + left: 20rem !important; } - .md\:top-1\/2 { - top: 50% !important; + .md\:left-96 { + left: 24rem !important; } - .md\:right-1\/2 { - right: 50% !important; + .md\:left-auto { + left: auto !important; } - .md\:bottom-1\/2 { - bottom: 50% !important; + .md\:left-px { + left: 1px !important; } - .md\:left-1\/2 { - left: 50% !important; + .md\:left-0\.5 { + left: 0.125rem !important; } - .md\:top-1\/3 { - top: 33.333333% !important; + .md\:left-1\.5 { + left: 0.375rem !important; } - .md\:right-1\/3 { - right: 33.333333% !important; + .md\:left-2\.5 { + left: 0.625rem !important; } - .md\:bottom-1\/3 { - bottom: 33.333333% !important; + .md\:left-3\.5 { + left: 0.875rem !important; } - .md\:left-1\/3 { - left: 33.333333% !important; + .md\:-left-0 { + left: 0px !important; } - .md\:top-2\/3 { - top: 66.666667% !important; + .md\:-left-1 { + left: -0.25rem !important; } - .md\:right-2\/3 { - right: 66.666667% !important; + .md\:-left-2 { + left: -0.5rem !important; } - .md\:bottom-2\/3 { - bottom: 66.666667% !important; + .md\:-left-3 { + left: -0.75rem !important; } - .md\:left-2\/3 { - left: 66.666667% !important; + .md\:-left-4 { + left: -1rem !important; } - .md\:top-1\/4 { - top: 25% !important; + .md\:-left-5 { + left: -1.25rem !important; } - .md\:right-1\/4 { - right: 25% !important; + .md\:-left-6 { + left: -1.5rem !important; } - .md\:bottom-1\/4 { - bottom: 25% !important; + .md\:-left-7 { + left: -1.75rem !important; } - .md\:left-1\/4 { - left: 25% !important; + .md\:-left-8 { + left: -2rem !important; } - .md\:top-2\/4 { - top: 50% !important; + .md\:-left-9 { + left: -2.25rem !important; } - .md\:right-2\/4 { - right: 50% !important; + .md\:-left-10 { + left: -2.5rem !important; } - .md\:bottom-2\/4 { - bottom: 50% !important; + .md\:-left-11 { + left: -2.75rem !important; } - .md\:left-2\/4 { - left: 50% !important; + .md\:-left-12 { + left: -3rem !important; } - .md\:top-3\/4 { - top: 75% !important; + .md\:-left-14 { + left: -3.5rem !important; } - .md\:right-3\/4 { - right: 75% !important; + .md\:-left-16 { + left: -4rem !important; } - .md\:bottom-3\/4 { - bottom: 75% !important; + .md\:-left-20 { + left: -5rem !important; } - .md\:left-3\/4 { - left: 75% !important; + .md\:-left-24 { + left: -6rem !important; } - .md\:top-full { - top: 100% !important; + .md\:-left-28 { + left: -7rem !important; } - .md\:right-full { - right: 100% !important; + .md\:-left-32 { + left: -8rem !important; } - .md\:bottom-full { - bottom: 100% !important; + .md\:-left-36 { + left: -9rem !important; } - .md\:left-full { - left: 100% !important; + .md\:-left-40 { + left: -10rem !important; } - .md\:-top-1\/2 { - top: -50% !important; + .md\:-left-44 { + left: -11rem !important; } - .md\:-right-1\/2 { - right: -50% !important; + .md\:-left-48 { + left: -12rem !important; } - .md\:-bottom-1\/2 { - bottom: -50% !important; + .md\:-left-52 { + left: -13rem !important; } - .md\:-left-1\/2 { - left: -50% !important; + .md\:-left-56 { + left: -14rem !important; } - .md\:-top-1\/3 { - top: -33.333333% !important; + .md\:-left-60 { + left: -15rem !important; } - .md\:-right-1\/3 { - right: -33.333333% !important; + .md\:-left-64 { + left: -16rem !important; } - .md\:-bottom-1\/3 { - bottom: -33.333333% !important; + .md\:-left-72 { + left: -18rem !important; } - .md\:-left-1\/3 { - left: -33.333333% !important; + .md\:-left-80 { + left: -20rem !important; } - .md\:-top-2\/3 { - top: -66.666667% !important; + .md\:-left-96 { + left: -24rem !important; } - .md\:-right-2\/3 { - right: -66.666667% !important; + .md\:-left-px { + left: -1px !important; } - .md\:-bottom-2\/3 { - bottom: -66.666667% !important; + .md\:-left-0\.5 { + left: -0.125rem !important; } - .md\:-left-2\/3 { - left: -66.666667% !important; + .md\:-left-1\.5 { + left: -0.375rem !important; } - .md\:-top-1\/4 { - top: -25% !important; + .md\:-left-2\.5 { + left: -0.625rem !important; } - .md\:-right-1\/4 { - right: -25% !important; + .md\:-left-3\.5 { + left: -0.875rem !important; } - .md\:-bottom-1\/4 { - bottom: -25% !important; + .md\:left-1\/2 { + left: 50% !important; } - .md\:-left-1\/4 { - left: -25% !important; + .md\:left-1\/3 { + left: 33.333333% !important; } - .md\:-top-2\/4 { - top: -50% !important; + .md\:left-2\/3 { + left: 66.666667% !important; } - .md\:-right-2\/4 { - right: -50% !important; + .md\:left-1\/4 { + left: 25% !important; } - .md\:-bottom-2\/4 { - bottom: -50% !important; + .md\:left-2\/4 { + left: 50% !important; } - .md\:-left-2\/4 { - left: -50% !important; + .md\:left-3\/4 { + left: 75% !important; } - .md\:-top-3\/4 { - top: -75% !important; + .md\:left-full { + left: 100% !important; } - .md\:-right-3\/4 { - right: -75% !important; + .md\:-left-1\/2 { + left: -50% !important; } - .md\:-bottom-3\/4 { - bottom: -75% !important; + .md\:-left-1\/3 { + left: -33.333333% !important; } - .md\:-left-3\/4 { - left: -75% !important; + .md\:-left-2\/3 { + left: -66.666667% !important; } - .md\:-top-full { - top: -100% !important; + .md\:-left-1\/4 { + left: -25% !important; } - .md\:-right-full { - right: -100% !important; + .md\:-left-2\/4 { + left: -50% !important; } - .md\:-bottom-full { - bottom: -100% !important; + .md\:-left-3\/4 { + left: -75% !important; } .md\:-left-full { @@ -67914,133 +67946,183 @@ video { --tw-scale-y: 1.5 !important; } - .md\:scale-x-0 { + .md\:hover\:scale-0:hover { --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .md\:scale-x-50 { + .md\:hover\:scale-50:hover { --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .md\:scale-x-75 { + .md\:hover\:scale-75:hover { --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .md\:scale-x-90 { + .md\:hover\:scale-90:hover { --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .md\:scale-x-95 { + .md\:hover\:scale-95:hover { --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .md\:scale-x-100 { + .md\:hover\:scale-100:hover { --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .md\:scale-x-105 { + .md\:hover\:scale-105:hover { --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .md\:scale-x-110 { + .md\:hover\:scale-110:hover { --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .md\:scale-x-125 { + .md\:hover\:scale-125:hover { --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .md\:scale-x-150 { + .md\:hover\:scale-150:hover { --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .md\:scale-y-0 { + .md\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; --tw-scale-y: 0 !important; } - .md\:scale-y-50 { + .md\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; --tw-scale-y: .5 !important; } - .md\:scale-y-75 { + .md\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; --tw-scale-y: .75 !important; } - .md\:scale-y-90 { + .md\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; --tw-scale-y: .9 !important; } - .md\:scale-y-95 { + .md\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; --tw-scale-y: .95 !important; } - .md\:scale-y-100 { + .md\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; --tw-scale-y: 1 !important; } - .md\:scale-y-105 { + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; --tw-scale-y: 1.05 !important; } - .md\:scale-y-110 { + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; --tw-scale-y: 1.1 !important; } - .md\:scale-y-125 { + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; --tw-scale-y: 1.25 !important; } - .md\:scale-y-150 { + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; --tw-scale-y: 1.5 !important; } - .md\:hover\:scale-0:hover { + .md\:scale-x-0 { --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; } - .md\:hover\:scale-50:hover { + .md\:scale-x-50 { --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; } - .md\:hover\:scale-75:hover { + .md\:scale-x-75 { --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; } - .md\:hover\:scale-90:hover { + .md\:scale-x-90 { --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; } - .md\:hover\:scale-95:hover { + .md\:scale-x-95 { --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; } - .md\:hover\:scale-100:hover { + .md\:scale-x-100 { --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; } - .md\:hover\:scale-105:hover { + .md\:scale-x-105 { --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; } - .md\:hover\:scale-110:hover { + .md\:scale-x-110 { --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; } - .md\:hover\:scale-125:hover { + .md\:scale-x-125 { --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; } - .md\:hover\:scale-150:hover { + .md\:scale-x-150 { --tw-scale-x: 1.5 !important; + } + + .md\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .md\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .md\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .md\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .md\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .md\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .md\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .md\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .md\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .md\:scale-y-150 { --tw-scale-y: 1.5 !important; } @@ -68124,56 +68206,6 @@ video { --tw-scale-y: 1.5 !important; } - .md\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; - } - - .md\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; - } - - .md\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; - } - - .md\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; - } - - .md\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; - } - - .md\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - } - - .md\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; - } - - .md\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; - } - - .md\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; - } - - .md\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; - } - .md\:focus\:scale-x-0:focus { --tw-scale-x: 0 !important; } @@ -69066,436 +69098,640 @@ video { row-gap: 0.875rem !important; } - .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0px * var(--tw-space-x-reverse)) !important; margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1px * var(--tw-space-x-reverse)) !important; margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; - } - .md\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(0px * var(--tw-space-x-reverse)) !important; - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } .md\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -69504,408 +69740,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; } - .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1 !important; } @@ -69914,66 +69946,66 @@ video { --tw-space-x-reverse: 1 !important; } - .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; - } - .md\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; - } - .md\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; - } - .md\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; - } - .md\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .md\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; - } - .md\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; } + .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .md\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1 !important; } @@ -76387,2188 +76419,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .md\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .md\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .md\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .md\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .md\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; - } - - .md\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; - } - - .md\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; - } - - .md\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; - } - - .md\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; - } - - .md\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; - } - - .md\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; - } - - .md\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; - } - - .md\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; - } - - .md\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; - } - - .md\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; - } - - .md\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; - } - - .md\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; - } - - .md\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; - } - - .md\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; - } - - .md\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; - } - - .md\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; - } - - .md\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; - } - - .md\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; - } - - .md\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; - } - - .md\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; - } - - .md\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; - } - - .md\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; - } - - .md\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; - } - - .md\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; - } - - .md\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; - } - - .md\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; - } - - .md\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; - } - - .md\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; - } - - .md\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; - } - - .md\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; - } - - .md\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; - } - - .md\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; - } - - .md\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; - } - - .md\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; - } - - .md\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; - } - - .md\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; - } - - .md\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; - } - - .md\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; - } - - .md\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; - } - - .md\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; - } - - .md\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; - } - - .md\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; - } - - .md\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; - } - - .md\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; - } - - .md\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; - } - - .md\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; - } - - .md\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; - } - - .md\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; - } - - .md\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; - } - - .md\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; - } - - .md\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; - } - - .md\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; - } - - .md\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; - } - - .md\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; - } - - .md\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; - } - - .md\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; - } - - .md\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; - } - - .md\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; - } - - .md\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; - } - - .md\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; - } - - .md\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; - } - - .md\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; - } - - .md\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; - } - - .md\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; - } - - .md\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; - } - - .md\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; - } - - .md\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; - } - - .md\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; - } - - .md\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; - } - - .md\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; - } - - .md\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; - } - - .md\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; - } - - .md\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; - } - - .md\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; - } - - .md\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; - } - - .md\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; - } - - .md\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; - } - - .md\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; - } - - .md\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; - } - - .md\:to-transparent { - --tw-gradient-to: transparent !important; + .md\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:to-current { - --tw-gradient-to: currentColor !important; + .md\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:to-black { - --tw-gradient-to: #000 !important; + .md\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:to-white { - --tw-gradient-to: #fff !important; + .md\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .md\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .md\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .md\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .md\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .md\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .md\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .md\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .md\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .md\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .md\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .md\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .md\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .md\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .md\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .md\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .md\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .md\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .md\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .md\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .md\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .md\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .md\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .md\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .md\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .md\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .md\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .md\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .md\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .md\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .md\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .md\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .md\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .md\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .md\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .md\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .md\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .md\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .md\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .md\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .md\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .md\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .md\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .md\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .md\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .md\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .md\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .md\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .md\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .md\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .md\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .md\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .md\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .md\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .md\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .md\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .md\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .md\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .md\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .md\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .md\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .md\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .md\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .md\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .md\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .md\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .md\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .md\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .md\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .md\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .md\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .md\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .md\:to-green-600 { - --tw-gradient-to: #059669 !important; + .md\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .md\:to-green-700 { - --tw-gradient-to: #047857 !important; + .md\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .md\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .md\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .md\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .md\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .md\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .md\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .md\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .md\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .md\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .md\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .md\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .md\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .md\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .md\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .md\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .md\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .md\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .md\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .md\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .md\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .md\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .md\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .md\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .md\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .md\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .md\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .md\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .md\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .md\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .md\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .md\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .md\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .md\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .md\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .md\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .md\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .md\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .md\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .md\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .md\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .md\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .md\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .md\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .md\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .md\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .md\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .md\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .md\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .md\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .md\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .md\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .md\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .md\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .md\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .md\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .md\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .md\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .md\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .md\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .md\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .md\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .md\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .md\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .md\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .md\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .md\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .md\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .md\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .md\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .md\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .md\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .md\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .md\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .md\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .md\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .md\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .md\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .md\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .md\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .md\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .md\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .md\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .md\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .md\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .md\:hover\:from-transparent:hover { + .md\:focus\:from-transparent:focus { --tw-gradient-from: transparent !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:hover\:from-current:hover { + .md\:focus\:from-current:focus { --tw-gradient-from: currentColor !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:hover\:from-black:hover { + .md\:focus\:from-black:focus { --tw-gradient-from: #000 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:hover\:from-white:hover { + .md\:focus\:from-white:focus { --tw-gradient-from: #fff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:hover\:from-gray-50:hover { + .md\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .md\:hover\:from-gray-100:hover { + .md\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .md\:hover\:from-gray-200:hover { + .md\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .md\:hover\:from-gray-300:hover { + .md\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .md\:hover\:from-gray-400:hover { + .md\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .md\:hover\:from-gray-500:hover { + .md\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .md\:hover\:from-gray-600:hover { + .md\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .md\:hover\:from-gray-700:hover { + .md\:focus\:from-gray-700:focus { --tw-gradient-from: #374151 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .md\:hover\:from-gray-800:hover { + .md\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .md\:hover\:from-gray-900:hover { + .md\:focus\:from-gray-900:focus { --tw-gradient-from: #111827 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .md\:hover\:from-red-50:hover { + .md\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .md\:hover\:from-red-100:hover { + .md\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .md\:hover\:from-red-200:hover { + .md\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .md\:hover\:from-red-300:hover { + .md\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .md\:hover\:from-red-400:hover { + .md\:focus\:from-red-400:focus { --tw-gradient-from: #f87171 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .md\:hover\:from-red-500:hover { + .md\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .md\:hover\:from-red-600:hover { + .md\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .md\:hover\:from-red-700:hover { + .md\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .md\:hover\:from-red-800:hover { + .md\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .md\:hover\:from-red-900:hover { + .md\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .md\:hover\:from-yellow-50:hover { + .md\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .md\:hover\:from-yellow-100:hover { + .md\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .md\:hover\:from-yellow-200:hover { + .md\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .md\:hover\:from-yellow-300:hover { + .md\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .md\:hover\:from-yellow-400:hover { + .md\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .md\:hover\:from-yellow-500:hover { + .md\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .md\:hover\:from-yellow-600:hover { + .md\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .md\:hover\:from-yellow-700:hover { + .md\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .md\:hover\:from-yellow-800:hover { + .md\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .md\:hover\:from-yellow-900:hover { + .md\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .md\:hover\:from-green-50:hover { + .md\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .md\:hover\:from-green-100:hover { + .md\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .md\:hover\:from-green-200:hover { + .md\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .md\:hover\:from-green-300:hover { + .md\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .md\:hover\:from-green-400:hover { + .md\:focus\:from-green-400:focus { --tw-gradient-from: #34d399 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .md\:hover\:from-green-500:hover { + .md\:focus\:from-green-500:focus { --tw-gradient-from: #10b981 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .md\:hover\:from-green-600:hover { + .md\:focus\:from-green-600:focus { --tw-gradient-from: #059669 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .md\:hover\:from-green-700:hover { + .md\:focus\:from-green-700:focus { --tw-gradient-from: #047857 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .md\:hover\:from-green-800:hover { + .md\:focus\:from-green-800:focus { --tw-gradient-from: #065f46 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .md\:hover\:from-green-900:hover { + .md\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .md\:hover\:from-blue-50:hover { + .md\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .md\:hover\:from-blue-100:hover { + .md\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .md\:hover\:from-blue-200:hover { + .md\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .md\:hover\:from-blue-300:hover { + .md\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .md\:hover\:from-blue-400:hover { + .md\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .md\:hover\:from-blue-500:hover { + .md\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .md\:hover\:from-blue-600:hover { + .md\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .md\:hover\:from-blue-700:hover { + .md\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .md\:hover\:from-blue-800:hover { + .md\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .md\:hover\:from-blue-900:hover { + .md\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .md\:hover\:from-indigo-50:hover { + .md\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .md\:hover\:from-indigo-100:hover { + .md\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .md\:hover\:from-indigo-200:hover { + .md\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .md\:hover\:from-indigo-300:hover { + .md\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .md\:hover\:from-indigo-400:hover { + .md\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .md\:hover\:from-indigo-500:hover { + .md\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .md\:hover\:from-indigo-600:hover { + .md\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .md\:hover\:from-indigo-700:hover { + .md\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .md\:hover\:from-indigo-800:hover { + .md\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .md\:hover\:from-indigo-900:hover { + .md\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .md\:hover\:from-purple-50:hover { + .md\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .md\:hover\:from-purple-100:hover { + .md\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .md\:hover\:from-purple-200:hover { + .md\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .md\:hover\:from-purple-300:hover { + .md\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .md\:hover\:from-purple-400:hover { + .md\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .md\:hover\:from-purple-500:hover { + .md\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .md\:hover\:from-purple-600:hover { + .md\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .md\:hover\:from-purple-700:hover { + .md\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .md\:hover\:from-purple-800:hover { + .md\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .md\:hover\:from-purple-900:hover { + .md\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .md\:hover\:from-pink-50:hover { + .md\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .md\:hover\:from-pink-100:hover { + .md\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .md\:hover\:from-pink-200:hover { + .md\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .md\:hover\:from-pink-300:hover { + .md\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .md\:hover\:from-pink-400:hover { + .md\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .md\:hover\:from-pink-500:hover { + .md\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .md\:hover\:from-pink-600:hover { + .md\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .md\:hover\:from-pink-700:hover { + .md\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .md\:hover\:from-pink-800:hover { + .md\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .md\:hover\:from-pink-900:hover { + .md\:focus\:from-pink-900:focus { --tw-gradient-from: #831843 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .md\:hover\:via-transparent:hover { + .md\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:hover\:via-current:hover { + .md\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:hover\:via-black:hover { + .md\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:hover\:via-white:hover { + .md\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:hover\:via-gray-50:hover { + .md\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .md\:hover\:via-gray-100:hover { + .md\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .md\:hover\:via-gray-200:hover { + .md\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .md\:hover\:via-gray-300:hover { + .md\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .md\:hover\:via-gray-400:hover { + .md\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .md\:hover\:via-gray-500:hover { + .md\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .md\:hover\:via-gray-600:hover { + .md\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .md\:hover\:via-gray-700:hover { + .md\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .md\:hover\:via-gray-800:hover { + .md\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .md\:hover\:via-gray-900:hover { + .md\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .md\:hover\:via-red-50:hover { + .md\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .md\:hover\:via-red-100:hover { + .md\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .md\:hover\:via-red-200:hover { + .md\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .md\:hover\:via-red-300:hover { + .md\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .md\:hover\:via-red-400:hover { + .md\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .md\:hover\:via-red-500:hover { + .md\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .md\:hover\:via-red-600:hover { + .md\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .md\:hover\:via-red-700:hover { + .md\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .md\:hover\:via-red-800:hover { + .md\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .md\:hover\:via-red-900:hover { + .md\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .md\:hover\:via-yellow-50:hover { + .md\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .md\:hover\:via-yellow-100:hover { + .md\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .md\:hover\:via-yellow-200:hover { + .md\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .md\:hover\:via-yellow-300:hover { + .md\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .md\:hover\:via-yellow-400:hover { + .md\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .md\:hover\:via-yellow-500:hover { + .md\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .md\:hover\:via-yellow-600:hover { + .md\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .md\:hover\:via-yellow-700:hover { + .md\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .md\:hover\:via-yellow-800:hover { + .md\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .md\:hover\:via-yellow-900:hover { + .md\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .md\:hover\:via-green-50:hover { + .md\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .md\:hover\:via-green-100:hover { + .md\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .md\:hover\:via-green-200:hover { + .md\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .md\:hover\:via-green-300:hover { + .md\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .md\:hover\:via-green-400:hover { + .md\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .md\:hover\:via-green-500:hover { + .md\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .md\:hover\:via-green-600:hover { + .md\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .md\:hover\:via-green-700:hover { + .md\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .md\:hover\:via-green-800:hover { + .md\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .md\:hover\:via-green-900:hover { + .md\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .md\:hover\:via-blue-50:hover { + .md\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .md\:hover\:via-blue-100:hover { + .md\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .md\:hover\:via-blue-200:hover { + .md\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .md\:hover\:via-blue-300:hover { + .md\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .md\:hover\:via-blue-400:hover { + .md\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .md\:hover\:via-blue-500:hover { + .md\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .md\:hover\:via-blue-600:hover { + .md\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .md\:hover\:via-blue-700:hover { + .md\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .md\:hover\:via-blue-800:hover { + .md\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .md\:hover\:via-blue-900:hover { + .md\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .md\:hover\:via-indigo-50:hover { + .md\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .md\:hover\:via-indigo-100:hover { + .md\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .md\:hover\:via-indigo-200:hover { + .md\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .md\:hover\:via-indigo-300:hover { + .md\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .md\:hover\:via-indigo-400:hover { + .md\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .md\:hover\:via-indigo-500:hover { + .md\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .md\:hover\:via-indigo-600:hover { + .md\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .md\:hover\:via-indigo-700:hover { + .md\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .md\:hover\:via-indigo-800:hover { + .md\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .md\:hover\:via-indigo-900:hover { + .md\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .md\:hover\:via-purple-50:hover { + .md\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .md\:hover\:via-purple-100:hover { + .md\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .md\:hover\:via-purple-200:hover { + .md\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .md\:hover\:via-purple-300:hover { + .md\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .md\:hover\:via-purple-400:hover { + .md\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .md\:hover\:via-purple-500:hover { + .md\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .md\:hover\:via-purple-600:hover { + .md\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .md\:hover\:via-purple-700:hover { + .md\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .md\:hover\:via-purple-800:hover { + .md\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .md\:hover\:via-purple-900:hover { + .md\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .md\:hover\:via-pink-50:hover { + .md\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .md\:hover\:via-pink-100:hover { + .md\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .md\:hover\:via-pink-200:hover { + .md\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .md\:hover\:via-pink-300:hover { + .md\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .md\:hover\:via-pink-400:hover { + .md\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .md\:hover\:via-pink-500:hover { + .md\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .md\:hover\:via-pink-600:hover { + .md\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .md\:hover\:via-pink-700:hover { + .md\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .md\:hover\:via-pink-800:hover { + .md\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .md\:hover\:via-pink-900:hover { + .md\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .md\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; - } - - .md\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; - } - - .md\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; - } - - .md\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; - } - - .md\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; - } - - .md\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; - } - - .md\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; - } - - .md\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; - } - - .md\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; - } - - .md\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; - } - - .md\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; - } - - .md\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; - } - - .md\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; - } - - .md\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; - } - - .md\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; - } - - .md\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; - } - - .md\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; - } - - .md\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; - } - - .md\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; - } - - .md\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; - } - - .md\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; - } - - .md\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; - } - - .md\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; - } - - .md\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; - } - - .md\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; - } - - .md\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; - } - - .md\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; - } - - .md\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; - } - - .md\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; - } - - .md\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; - } - - .md\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; - } - - .md\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; - } - - .md\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; - } - - .md\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; - } - - .md\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; - } - - .md\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; - } - - .md\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; - } - - .md\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; - } - - .md\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; - } - - .md\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; - } - - .md\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; - } - - .md\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; - } - - .md\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; - } - - .md\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; - } - - .md\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; - } - - .md\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; - } - - .md\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; - } - - .md\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; - } - - .md\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; - } - - .md\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; - } - - .md\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; - } - - .md\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; - } - - .md\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; - } - - .md\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; - } - - .md\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; - } - - .md\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; - } - - .md\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; - } - - .md\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; - } - - .md\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; - } - - .md\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; - } - - .md\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; - } - - .md\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; - } - - .md\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; - } - - .md\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; - } - - .md\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; - } - - .md\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; - } - - .md\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; - } - - .md\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; - } - - .md\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; - } - - .md\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; - } - - .md\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; - } - - .md\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; - } - - .md\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; - } - - .md\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; - } - - .md\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; - } - - .md\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; - } - - .md\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; - } - - .md\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; - } - - .md\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; - } - - .md\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; - } - - .md\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; - } - - .md\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; - } - - .md\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; - } - - .md\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; - } - - .md\:focus\:from-transparent:focus { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:focus\:from-current:focus { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:focus\:from-black:focus { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .md\:focus\:from-white:focus { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .md\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .md\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .md\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .md\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .md\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .md\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .md\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .md\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .md\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .md\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .md\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .md\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .md\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .md\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .md\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .md\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .md\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .md\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .md\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .md\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .md\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .md\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .md\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .md\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .md\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .md\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .md\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .md\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .md\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .md\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .md\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .md\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .md\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .md\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .md\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .md\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .md\:focus\:from-green-600:focus { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .md\:focus\:from-green-700:focus { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .md\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .md\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .md\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .md\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .md\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .md\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .md\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .md\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .md\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .md\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .md\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .md\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .md\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .md\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .md\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .md\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .md\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .md\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .md\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .md\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .md\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .md\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .md\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .md\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .md\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .md\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .md\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .md\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .md\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .md\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .md\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .md\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .md\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .md\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .md\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .md\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .md\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .md\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .md\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .md\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .md\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .md\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .md\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .md\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .md\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .md\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .md\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .md\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .md\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .md\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .md\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .md\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .md\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .md\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .md\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .md\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .md\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .md\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .md\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .md\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .md\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .md\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } .md\:focus\:via-transparent:focus { @@ -78907,6 +78267,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } + .md\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .md\:to-current { + --tw-gradient-to: currentColor !important; + } + + .md\:to-black { + --tw-gradient-to: #000 !important; + } + + .md\:to-white { + --tw-gradient-to: #fff !important; + } + + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .md\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .md\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .md\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .md\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .md\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .md\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .md\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .md\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .md\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .md\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .md\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .md\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .md\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .md\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .md\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .md\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .md\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .md\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .md\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .md\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .md\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .md\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .md\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .md\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .md\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .md\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .md\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .md\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .md\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .md\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .md\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .md\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .md\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .md\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .md\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .md\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .md\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .md\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .md\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .md\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .md\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .md\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .md\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .md\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .md\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .md\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .md\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .md\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .md\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .md\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .md\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .md\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .md\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .md\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .md\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .md\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .md\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .md\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .md\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .md\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .md\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .md\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .md\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .md\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .md\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .md\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .md\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .md\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .md\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .md\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .md\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .md\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .md\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .md\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .md\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .md\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .md\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .md\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .md\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .md\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .md\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .md\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .md\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .md\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .md\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .md\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .md\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .md\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .md\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .md\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .md\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .md\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .md\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .md\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .md\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .md\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + .md\:focus\:to-transparent:focus { --tw-gradient-to: transparent !important; } @@ -84916,10 +84948,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:ring-inset { - --tw-ring-inset: inset !important; - } - .md\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -84956,10 +84984,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .md\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !important; - } - .md\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -84996,6 +85020,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } + .md\:ring-inset { + --tw-ring-inset: inset !important; + } + + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + .md\:focus\:ring-inset:focus { --tw-ring-inset: inset !important; } @@ -87756,6 +87788,38 @@ video { backdrop-filter: none !important; } + .md\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0) !important; + } + + .md\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px) !important; + } + + .md\:backdrop-blur { + --tw-backdrop-blur: blur(8px) !important; + } + + .md\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px) !important; + } + + .md\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px) !important; + } + + .md\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px) !important; + } + + .md\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px) !important; + } + + .md\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px) !important; + } + .md\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0) !important; } @@ -88665,116 +88729,541 @@ video { left: -0.375rem !important; } - .lg\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; + .lg\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .lg\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .lg\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .lg\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .lg\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .lg\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .lg\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .lg\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .lg\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .lg\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .lg\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .lg\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .lg\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .lg\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .lg\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .lg\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .lg\:inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .lg\:inset-x-1 { + left: 0.25rem !important; + right: 0.25rem !important; + } + + .lg\:inset-x-2 { + left: 0.5rem !important; + right: 0.5rem !important; + } + + .lg\:inset-x-3 { + left: 0.75rem !important; + right: 0.75rem !important; + } + + .lg\:inset-x-4 { + left: 1rem !important; + right: 1rem !important; + } + + .lg\:inset-x-5 { + left: 1.25rem !important; + right: 1.25rem !important; + } + + .lg\:inset-x-6 { + left: 1.5rem !important; + right: 1.5rem !important; + } + + .lg\:inset-x-7 { + left: 1.75rem !important; + right: 1.75rem !important; + } + + .lg\:inset-x-8 { + left: 2rem !important; + right: 2rem !important; + } + + .lg\:inset-x-9 { + left: 2.25rem !important; + right: 2.25rem !important; + } + + .lg\:inset-x-10 { + left: 2.5rem !important; + right: 2.5rem !important; + } + + .lg\:inset-x-11 { + left: 2.75rem !important; + right: 2.75rem !important; + } + + .lg\:inset-x-12 { + left: 3rem !important; + right: 3rem !important; + } + + .lg\:inset-x-14 { + left: 3.5rem !important; + right: 3.5rem !important; + } + + .lg\:inset-x-16 { + left: 4rem !important; + right: 4rem !important; + } + + .lg\:inset-x-20 { + left: 5rem !important; + right: 5rem !important; + } + + .lg\:inset-x-24 { + left: 6rem !important; + right: 6rem !important; + } + + .lg\:inset-x-28 { + left: 7rem !important; + right: 7rem !important; + } + + .lg\:inset-x-32 { + left: 8rem !important; + right: 8rem !important; + } + + .lg\:inset-x-36 { + left: 9rem !important; + right: 9rem !important; + } + + .lg\:inset-x-40 { + left: 10rem !important; + right: 10rem !important; + } + + .lg\:inset-x-44 { + left: 11rem !important; + right: 11rem !important; + } + + .lg\:inset-x-48 { + left: 12rem !important; + right: 12rem !important; + } + + .lg\:inset-x-52 { + left: 13rem !important; + right: 13rem !important; + } + + .lg\:inset-x-56 { + left: 14rem !important; + right: 14rem !important; + } + + .lg\:inset-x-60 { + left: 15rem !important; + right: 15rem !important; + } + + .lg\:inset-x-64 { + left: 16rem !important; + right: 16rem !important; + } + + .lg\:inset-x-72 { + left: 18rem !important; + right: 18rem !important; + } + + .lg\:inset-x-80 { + left: 20rem !important; + right: 20rem !important; + } + + .lg\:inset-x-96 { + left: 24rem !important; + right: 24rem !important; + } + + .lg\:inset-x-auto { + left: auto !important; + right: auto !important; + } + + .lg\:inset-x-px { + left: 1px !important; + right: 1px !important; + } + + .lg\:inset-x-0\.5 { + left: 0.125rem !important; + right: 0.125rem !important; + } + + .lg\:inset-x-1\.5 { + left: 0.375rem !important; + right: 0.375rem !important; + } + + .lg\:inset-x-2\.5 { + left: 0.625rem !important; + right: 0.625rem !important; + } + + .lg\:inset-x-3\.5 { + left: 0.875rem !important; + right: 0.875rem !important; + } + + .lg\:-inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .lg\:-inset-x-1 { + left: -0.25rem !important; + right: -0.25rem !important; + } + + .lg\:-inset-x-2 { + left: -0.5rem !important; + right: -0.5rem !important; + } + + .lg\:-inset-x-3 { + left: -0.75rem !important; + right: -0.75rem !important; + } + + .lg\:-inset-x-4 { + left: -1rem !important; + right: -1rem !important; + } + + .lg\:-inset-x-5 { + left: -1.25rem !important; + right: -1.25rem !important; + } + + .lg\:-inset-x-6 { + left: -1.5rem !important; + right: -1.5rem !important; + } + + .lg\:-inset-x-7 { + left: -1.75rem !important; + right: -1.75rem !important; + } + + .lg\:-inset-x-8 { + left: -2rem !important; + right: -2rem !important; + } + + .lg\:-inset-x-9 { + left: -2.25rem !important; + right: -2.25rem !important; + } + + .lg\:-inset-x-10 { + left: -2.5rem !important; + right: -2.5rem !important; + } + + .lg\:-inset-x-11 { + left: -2.75rem !important; + right: -2.75rem !important; + } + + .lg\:-inset-x-12 { + left: -3rem !important; + right: -3rem !important; + } + + .lg\:-inset-x-14 { + left: -3.5rem !important; + right: -3.5rem !important; + } + + .lg\:-inset-x-16 { + left: -4rem !important; + right: -4rem !important; + } + + .lg\:-inset-x-20 { + left: -5rem !important; + right: -5rem !important; + } + + .lg\:-inset-x-24 { + left: -6rem !important; + right: -6rem !important; + } + + .lg\:-inset-x-28 { + left: -7rem !important; + right: -7rem !important; + } + + .lg\:-inset-x-32 { + left: -8rem !important; + right: -8rem !important; + } + + .lg\:-inset-x-36 { + left: -9rem !important; + right: -9rem !important; + } + + .lg\:-inset-x-40 { + left: -10rem !important; + right: -10rem !important; + } + + .lg\:-inset-x-44 { + left: -11rem !important; + right: -11rem !important; + } + + .lg\:-inset-x-48 { + left: -12rem !important; + right: -12rem !important; + } + + .lg\:-inset-x-52 { + left: -13rem !important; + right: -13rem !important; + } + + .lg\:-inset-x-56 { + left: -14rem !important; + right: -14rem !important; + } + + .lg\:-inset-x-60 { + left: -15rem !important; + right: -15rem !important; + } + + .lg\:-inset-x-64 { + left: -16rem !important; + right: -16rem !important; + } + + .lg\:-inset-x-72 { + left: -18rem !important; + right: -18rem !important; + } + + .lg\:-inset-x-80 { + left: -20rem !important; + right: -20rem !important; + } + + .lg\:-inset-x-96 { + left: -24rem !important; + right: -24rem !important; + } + + .lg\:-inset-x-px { + left: -1px !important; + right: -1px !important; + } + + .lg\:-inset-x-0\.5 { + left: -0.125rem !important; + right: -0.125rem !important; + } + + .lg\:-inset-x-1\.5 { + left: -0.375rem !important; + right: -0.375rem !important; + } + + .lg\:-inset-x-2\.5 { left: -0.625rem !important; + right: -0.625rem !important; } - .lg\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; + .lg\:-inset-x-3\.5 { left: -0.875rem !important; + right: -0.875rem !important; } - .lg\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .lg\:inset-x-1\/2 { left: 50% !important; + right: 50% !important; } - .lg\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; + .lg\:inset-x-1\/3 { left: 33.333333% !important; + right: 33.333333% !important; } - .lg\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; + .lg\:inset-x-2\/3 { left: 66.666667% !important; + right: 66.666667% !important; } - .lg\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; + .lg\:inset-x-1\/4 { left: 25% !important; + right: 25% !important; } - .lg\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .lg\:inset-x-2\/4 { left: 50% !important; + right: 50% !important; } - .lg\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; + .lg\:inset-x-3\/4 { left: 75% !important; + right: 75% !important; } - .lg\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; + .lg\:inset-x-full { left: 100% !important; + right: 100% !important; } - .lg\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .lg\:-inset-x-1\/2 { left: -50% !important; + right: -50% !important; } - .lg\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; + .lg\:-inset-x-1\/3 { left: -33.333333% !important; + right: -33.333333% !important; } - .lg\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; + .lg\:-inset-x-2\/3 { left: -66.666667% !important; + right: -66.666667% !important; } - .lg\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; + .lg\:-inset-x-1\/4 { left: -25% !important; + right: -25% !important; } - .lg\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .lg\:-inset-x-2\/4 { left: -50% !important; + right: -50% !important; } - .lg\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; + .lg\:-inset-x-3\/4 { left: -75% !important; + right: -75% !important; } - .lg\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; + .lg\:-inset-x-full { left: -100% !important; + right: -100% !important; } .lg\:inset-y-0 { @@ -88782,2205 +89271,1780 @@ video { bottom: 0px !important; } - .lg\:inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .lg\:inset-y-1 { top: 0.25rem !important; bottom: 0.25rem !important; } - .lg\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; - } - .lg\:inset-y-2 { top: 0.5rem !important; bottom: 0.5rem !important; } - .lg\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; - } - .lg\:inset-y-3 { top: 0.75rem !important; bottom: 0.75rem !important; } - .lg\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; - } - .lg\:inset-y-4 { top: 1rem !important; bottom: 1rem !important; } - .lg\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; - } - .lg\:inset-y-5 { top: 1.25rem !important; bottom: 1.25rem !important; } - .lg\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; - } - .lg\:inset-y-6 { top: 1.5rem !important; bottom: 1.5rem !important; } - .lg\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; - } - .lg\:inset-y-7 { top: 1.75rem !important; bottom: 1.75rem !important; } - .lg\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; - } - .lg\:inset-y-8 { top: 2rem !important; bottom: 2rem !important; } - .lg\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; - } - .lg\:inset-y-9 { top: 2.25rem !important; bottom: 2.25rem !important; } - .lg\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; - } - .lg\:inset-y-10 { top: 2.5rem !important; bottom: 2.5rem !important; } - .lg\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; - } - .lg\:inset-y-11 { top: 2.75rem !important; bottom: 2.75rem !important; } - .lg\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; - } - .lg\:inset-y-12 { top: 3rem !important; bottom: 3rem !important; } - .lg\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; - } - .lg\:inset-y-14 { top: 3.5rem !important; bottom: 3.5rem !important; } - .lg\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; - } - .lg\:inset-y-16 { top: 4rem !important; bottom: 4rem !important; } - .lg\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; - } - .lg\:inset-y-20 { top: 5rem !important; bottom: 5rem !important; } - .lg\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; - } - .lg\:inset-y-24 { top: 6rem !important; bottom: 6rem !important; } - .lg\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; - } - .lg\:inset-y-28 { top: 7rem !important; bottom: 7rem !important; } - .lg\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; - } - .lg\:inset-y-32 { top: 8rem !important; bottom: 8rem !important; } - .lg\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; - } - .lg\:inset-y-36 { top: 9rem !important; bottom: 9rem !important; } - .lg\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; - } - .lg\:inset-y-40 { top: 10rem !important; bottom: 10rem !important; } - .lg\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; - } - .lg\:inset-y-44 { top: 11rem !important; bottom: 11rem !important; } - .lg\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; - } - .lg\:inset-y-48 { top: 12rem !important; bottom: 12rem !important; } - .lg\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; - } - .lg\:inset-y-52 { top: 13rem !important; bottom: 13rem !important; } - .lg\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; - } - .lg\:inset-y-56 { top: 14rem !important; bottom: 14rem !important; } - .lg\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; - } - .lg\:inset-y-60 { top: 15rem !important; bottom: 15rem !important; } - .lg\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; - } - .lg\:inset-y-64 { top: 16rem !important; bottom: 16rem !important; } - .lg\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; - } - .lg\:inset-y-72 { top: 18rem !important; bottom: 18rem !important; } - .lg\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; - } - .lg\:inset-y-80 { top: 20rem !important; bottom: 20rem !important; } - .lg\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; - } - .lg\:inset-y-96 { top: 24rem !important; bottom: 24rem !important; } - .lg\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; - } - .lg\:inset-y-auto { top: auto !important; bottom: auto !important; } - .lg\:inset-x-auto { - right: auto !important; - left: auto !important; - } - .lg\:inset-y-px { top: 1px !important; bottom: 1px !important; } - .lg\:inset-x-px { - right: 1px !important; - left: 1px !important; - } - .lg\:inset-y-0\.5 { top: 0.125rem !important; bottom: 0.125rem !important; } - .lg\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; - } - .lg\:inset-y-1\.5 { top: 0.375rem !important; bottom: 0.375rem !important; } - .lg\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; - } - .lg\:inset-y-2\.5 { top: 0.625rem !important; bottom: 0.625rem !important; } - .lg\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; - } - .lg\:inset-y-3\.5 { top: 0.875rem !important; bottom: 0.875rem !important; } - .lg\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; - } - .lg\:-inset-y-0 { top: 0px !important; bottom: 0px !important; } - .lg\:-inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .lg\:-inset-y-1 { top: -0.25rem !important; bottom: -0.25rem !important; } - .lg\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; - } - .lg\:-inset-y-2 { top: -0.5rem !important; bottom: -0.5rem !important; } - .lg\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; - } - .lg\:-inset-y-3 { top: -0.75rem !important; bottom: -0.75rem !important; } - .lg\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; - } - .lg\:-inset-y-4 { top: -1rem !important; bottom: -1rem !important; } - .lg\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; - } - .lg\:-inset-y-5 { top: -1.25rem !important; bottom: -1.25rem !important; } - .lg\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; - } - .lg\:-inset-y-6 { top: -1.5rem !important; bottom: -1.5rem !important; } - .lg\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; - } - .lg\:-inset-y-7 { top: -1.75rem !important; bottom: -1.75rem !important; } - .lg\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; - } - .lg\:-inset-y-8 { top: -2rem !important; bottom: -2rem !important; } - .lg\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; - } - .lg\:-inset-y-9 { top: -2.25rem !important; bottom: -2.25rem !important; } - .lg\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; - } - .lg\:-inset-y-10 { top: -2.5rem !important; bottom: -2.5rem !important; } - .lg\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; - } - .lg\:-inset-y-11 { top: -2.75rem !important; bottom: -2.75rem !important; } - .lg\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; - } - .lg\:-inset-y-12 { top: -3rem !important; bottom: -3rem !important; } - .lg\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; - } - .lg\:-inset-y-14 { top: -3.5rem !important; bottom: -3.5rem !important; } - .lg\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; - } - .lg\:-inset-y-16 { top: -4rem !important; bottom: -4rem !important; } - .lg\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; - } - .lg\:-inset-y-20 { top: -5rem !important; bottom: -5rem !important; } - .lg\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; - } - .lg\:-inset-y-24 { top: -6rem !important; bottom: -6rem !important; } - .lg\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; - } - .lg\:-inset-y-28 { top: -7rem !important; bottom: -7rem !important; } - .lg\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; - } - .lg\:-inset-y-32 { top: -8rem !important; bottom: -8rem !important; } - .lg\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; - } - .lg\:-inset-y-36 { top: -9rem !important; bottom: -9rem !important; } - .lg\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; - } - .lg\:-inset-y-40 { top: -10rem !important; bottom: -10rem !important; } - .lg\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; - } - .lg\:-inset-y-44 { top: -11rem !important; bottom: -11rem !important; } - .lg\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; - } - .lg\:-inset-y-48 { top: -12rem !important; bottom: -12rem !important; } - .lg\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; - } - .lg\:-inset-y-52 { top: -13rem !important; bottom: -13rem !important; } - .lg\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; - } - .lg\:-inset-y-56 { top: -14rem !important; bottom: -14rem !important; } - .lg\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; - } - .lg\:-inset-y-60 { top: -15rem !important; bottom: -15rem !important; } - .lg\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; - } - .lg\:-inset-y-64 { top: -16rem !important; bottom: -16rem !important; } - .lg\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; - } - .lg\:-inset-y-72 { top: -18rem !important; bottom: -18rem !important; } - .lg\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; - } - .lg\:-inset-y-80 { top: -20rem !important; bottom: -20rem !important; } - .lg\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; - } - .lg\:-inset-y-96 { top: -24rem !important; bottom: -24rem !important; } - .lg\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; - } - .lg\:-inset-y-px { top: -1px !important; bottom: -1px !important; } - .lg\:-inset-x-px { - right: -1px !important; - left: -1px !important; - } - .lg\:-inset-y-0\.5 { top: -0.125rem !important; bottom: -0.125rem !important; } - .lg\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; - } - .lg\:-inset-y-1\.5 { top: -0.375rem !important; bottom: -0.375rem !important; } - .lg\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; - } - .lg\:-inset-y-2\.5 { top: -0.625rem !important; bottom: -0.625rem !important; } - .lg\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; - } - .lg\:-inset-y-3\.5 { top: -0.875rem !important; bottom: -0.875rem !important; } - .lg\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; - } - .lg\:inset-y-1\/2 { top: 50% !important; bottom: 50% !important; } - .lg\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; - } - .lg\:inset-y-1\/3 { top: 33.333333% !important; bottom: 33.333333% !important; } - .lg\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; - } - .lg\:inset-y-2\/3 { top: 66.666667% !important; bottom: 66.666667% !important; } - .lg\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; - } - .lg\:inset-y-1\/4 { top: 25% !important; bottom: 25% !important; } - .lg\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; - } - .lg\:inset-y-2\/4 { top: 50% !important; bottom: 50% !important; } - .lg\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; - } - .lg\:inset-y-3\/4 { top: 75% !important; bottom: 75% !important; } - .lg\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; - } - .lg\:inset-y-full { top: 100% !important; bottom: 100% !important; } - .lg\:inset-x-full { - right: 100% !important; - left: 100% !important; - } - .lg\:-inset-y-1\/2 { top: -50% !important; bottom: -50% !important; } - .lg\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; - } - .lg\:-inset-y-1\/3 { top: -33.333333% !important; bottom: -33.333333% !important; } - .lg\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; - } - .lg\:-inset-y-2\/3 { top: -66.666667% !important; bottom: -66.666667% !important; } - .lg\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; - } - .lg\:-inset-y-1\/4 { top: -25% !important; bottom: -25% !important; } - .lg\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; - } - .lg\:-inset-y-2\/4 { top: -50% !important; bottom: -50% !important; } - .lg\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; - } - .lg\:-inset-y-3\/4 { top: -75% !important; bottom: -75% !important; } - .lg\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; - } - .lg\:-inset-y-full { top: -100% !important; bottom: -100% !important; } - .lg\:-inset-x-full { - right: -100% !important; - left: -100% !important; - } - .lg\:top-0 { top: 0px !important; } - .lg\:right-0 { - right: 0px !important; + .lg\:top-1 { + top: 0.25rem !important; } - .lg\:bottom-0 { - bottom: 0px !important; + .lg\:top-2 { + top: 0.5rem !important; } - .lg\:left-0 { - left: 0px !important; + .lg\:top-3 { + top: 0.75rem !important; } - .lg\:top-1 { - top: 0.25rem !important; + .lg\:top-4 { + top: 1rem !important; } - .lg\:right-1 { - right: 0.25rem !important; + .lg\:top-5 { + top: 1.25rem !important; } - .lg\:bottom-1 { - bottom: 0.25rem !important; + .lg\:top-6 { + top: 1.5rem !important; } - .lg\:left-1 { - left: 0.25rem !important; + .lg\:top-7 { + top: 1.75rem !important; } - .lg\:top-2 { - top: 0.5rem !important; + .lg\:top-8 { + top: 2rem !important; } - .lg\:right-2 { - right: 0.5rem !important; + .lg\:top-9 { + top: 2.25rem !important; } - .lg\:bottom-2 { - bottom: 0.5rem !important; + .lg\:top-10 { + top: 2.5rem !important; } - .lg\:left-2 { - left: 0.5rem !important; + .lg\:top-11 { + top: 2.75rem !important; } - .lg\:top-3 { - top: 0.75rem !important; + .lg\:top-12 { + top: 3rem !important; } - .lg\:right-3 { - right: 0.75rem !important; + .lg\:top-14 { + top: 3.5rem !important; } - .lg\:bottom-3 { - bottom: 0.75rem !important; + .lg\:top-16 { + top: 4rem !important; } - .lg\:left-3 { - left: 0.75rem !important; + .lg\:top-20 { + top: 5rem !important; } - .lg\:top-4 { - top: 1rem !important; + .lg\:top-24 { + top: 6rem !important; } - .lg\:right-4 { - right: 1rem !important; + .lg\:top-28 { + top: 7rem !important; } - .lg\:bottom-4 { - bottom: 1rem !important; + .lg\:top-32 { + top: 8rem !important; } - .lg\:left-4 { - left: 1rem !important; + .lg\:top-36 { + top: 9rem !important; } - .lg\:top-5 { - top: 1.25rem !important; + .lg\:top-40 { + top: 10rem !important; } - .lg\:right-5 { - right: 1.25rem !important; + .lg\:top-44 { + top: 11rem !important; } - .lg\:bottom-5 { - bottom: 1.25rem !important; + .lg\:top-48 { + top: 12rem !important; } - .lg\:left-5 { - left: 1.25rem !important; + .lg\:top-52 { + top: 13rem !important; } - .lg\:top-6 { - top: 1.5rem !important; + .lg\:top-56 { + top: 14rem !important; } - .lg\:right-6 { - right: 1.5rem !important; + .lg\:top-60 { + top: 15rem !important; } - .lg\:bottom-6 { - bottom: 1.5rem !important; + .lg\:top-64 { + top: 16rem !important; } - .lg\:left-6 { - left: 1.5rem !important; + .lg\:top-72 { + top: 18rem !important; } - .lg\:top-7 { - top: 1.75rem !important; + .lg\:top-80 { + top: 20rem !important; } - .lg\:right-7 { - right: 1.75rem !important; + .lg\:top-96 { + top: 24rem !important; } - .lg\:bottom-7 { - bottom: 1.75rem !important; + .lg\:top-auto { + top: auto !important; } - .lg\:left-7 { - left: 1.75rem !important; + .lg\:top-px { + top: 1px !important; } - .lg\:top-8 { - top: 2rem !important; + .lg\:top-0\.5 { + top: 0.125rem !important; } - .lg\:right-8 { - right: 2rem !important; + .lg\:top-1\.5 { + top: 0.375rem !important; } - .lg\:bottom-8 { - bottom: 2rem !important; + .lg\:top-2\.5 { + top: 0.625rem !important; } - .lg\:left-8 { - left: 2rem !important; + .lg\:top-3\.5 { + top: 0.875rem !important; } - .lg\:top-9 { - top: 2.25rem !important; + .lg\:-top-0 { + top: 0px !important; } - .lg\:right-9 { - right: 2.25rem !important; + .lg\:-top-1 { + top: -0.25rem !important; } - .lg\:bottom-9 { - bottom: 2.25rem !important; + .lg\:-top-2 { + top: -0.5rem !important; } - .lg\:left-9 { - left: 2.25rem !important; + .lg\:-top-3 { + top: -0.75rem !important; } - .lg\:top-10 { - top: 2.5rem !important; + .lg\:-top-4 { + top: -1rem !important; } - .lg\:right-10 { - right: 2.5rem !important; + .lg\:-top-5 { + top: -1.25rem !important; } - .lg\:bottom-10 { - bottom: 2.5rem !important; + .lg\:-top-6 { + top: -1.5rem !important; } - .lg\:left-10 { - left: 2.5rem !important; + .lg\:-top-7 { + top: -1.75rem !important; } - .lg\:top-11 { - top: 2.75rem !important; + .lg\:-top-8 { + top: -2rem !important; } - .lg\:right-11 { - right: 2.75rem !important; + .lg\:-top-9 { + top: -2.25rem !important; } - .lg\:bottom-11 { - bottom: 2.75rem !important; + .lg\:-top-10 { + top: -2.5rem !important; } - .lg\:left-11 { - left: 2.75rem !important; + .lg\:-top-11 { + top: -2.75rem !important; } - .lg\:top-12 { - top: 3rem !important; + .lg\:-top-12 { + top: -3rem !important; } - .lg\:right-12 { - right: 3rem !important; + .lg\:-top-14 { + top: -3.5rem !important; } - .lg\:bottom-12 { - bottom: 3rem !important; + .lg\:-top-16 { + top: -4rem !important; } - .lg\:left-12 { - left: 3rem !important; + .lg\:-top-20 { + top: -5rem !important; } - .lg\:top-14 { - top: 3.5rem !important; + .lg\:-top-24 { + top: -6rem !important; } - .lg\:right-14 { - right: 3.5rem !important; + .lg\:-top-28 { + top: -7rem !important; } - .lg\:bottom-14 { - bottom: 3.5rem !important; + .lg\:-top-32 { + top: -8rem !important; } - .lg\:left-14 { - left: 3.5rem !important; + .lg\:-top-36 { + top: -9rem !important; } - .lg\:top-16 { - top: 4rem !important; + .lg\:-top-40 { + top: -10rem !important; } - .lg\:right-16 { - right: 4rem !important; + .lg\:-top-44 { + top: -11rem !important; } - .lg\:bottom-16 { - bottom: 4rem !important; + .lg\:-top-48 { + top: -12rem !important; } - .lg\:left-16 { - left: 4rem !important; + .lg\:-top-52 { + top: -13rem !important; } - .lg\:top-20 { - top: 5rem !important; + .lg\:-top-56 { + top: -14rem !important; } - .lg\:right-20 { - right: 5rem !important; + .lg\:-top-60 { + top: -15rem !important; } - .lg\:bottom-20 { - bottom: 5rem !important; + .lg\:-top-64 { + top: -16rem !important; } - .lg\:left-20 { - left: 5rem !important; + .lg\:-top-72 { + top: -18rem !important; } - .lg\:top-24 { - top: 6rem !important; + .lg\:-top-80 { + top: -20rem !important; } - .lg\:right-24 { - right: 6rem !important; + .lg\:-top-96 { + top: -24rem !important; } - .lg\:bottom-24 { - bottom: 6rem !important; + .lg\:-top-px { + top: -1px !important; } - .lg\:left-24 { - left: 6rem !important; + .lg\:-top-0\.5 { + top: -0.125rem !important; } - .lg\:top-28 { - top: 7rem !important; + .lg\:-top-1\.5 { + top: -0.375rem !important; } - .lg\:right-28 { - right: 7rem !important; + .lg\:-top-2\.5 { + top: -0.625rem !important; } - .lg\:bottom-28 { - bottom: 7rem !important; + .lg\:-top-3\.5 { + top: -0.875rem !important; } - .lg\:left-28 { - left: 7rem !important; + .lg\:top-1\/2 { + top: 50% !important; } - .lg\:top-32 { - top: 8rem !important; + .lg\:top-1\/3 { + top: 33.333333% !important; } - .lg\:right-32 { - right: 8rem !important; + .lg\:top-2\/3 { + top: 66.666667% !important; } - .lg\:bottom-32 { - bottom: 8rem !important; + .lg\:top-1\/4 { + top: 25% !important; } - .lg\:left-32 { - left: 8rem !important; + .lg\:top-2\/4 { + top: 50% !important; } - .lg\:top-36 { - top: 9rem !important; + .lg\:top-3\/4 { + top: 75% !important; } - .lg\:right-36 { - right: 9rem !important; + .lg\:top-full { + top: 100% !important; } - .lg\:bottom-36 { - bottom: 9rem !important; + .lg\:-top-1\/2 { + top: -50% !important; } - .lg\:left-36 { - left: 9rem !important; + .lg\:-top-1\/3 { + top: -33.333333% !important; } - .lg\:top-40 { - top: 10rem !important; + .lg\:-top-2\/3 { + top: -66.666667% !important; } - .lg\:right-40 { - right: 10rem !important; + .lg\:-top-1\/4 { + top: -25% !important; } - .lg\:bottom-40 { - bottom: 10rem !important; + .lg\:-top-2\/4 { + top: -50% !important; } - .lg\:left-40 { - left: 10rem !important; + .lg\:-top-3\/4 { + top: -75% !important; } - .lg\:top-44 { - top: 11rem !important; + .lg\:-top-full { + top: -100% !important; } - .lg\:right-44 { - right: 11rem !important; + .lg\:right-0 { + right: 0px !important; } - .lg\:bottom-44 { - bottom: 11rem !important; + .lg\:right-1 { + right: 0.25rem !important; } - .lg\:left-44 { - left: 11rem !important; + .lg\:right-2 { + right: 0.5rem !important; } - .lg\:top-48 { - top: 12rem !important; + .lg\:right-3 { + right: 0.75rem !important; } - .lg\:right-48 { - right: 12rem !important; + .lg\:right-4 { + right: 1rem !important; } - .lg\:bottom-48 { - bottom: 12rem !important; + .lg\:right-5 { + right: 1.25rem !important; } - .lg\:left-48 { - left: 12rem !important; + .lg\:right-6 { + right: 1.5rem !important; } - .lg\:top-52 { - top: 13rem !important; + .lg\:right-7 { + right: 1.75rem !important; } - .lg\:right-52 { - right: 13rem !important; + .lg\:right-8 { + right: 2rem !important; } - .lg\:bottom-52 { - bottom: 13rem !important; + .lg\:right-9 { + right: 2.25rem !important; } - .lg\:left-52 { - left: 13rem !important; + .lg\:right-10 { + right: 2.5rem !important; } - .lg\:top-56 { - top: 14rem !important; + .lg\:right-11 { + right: 2.75rem !important; } - .lg\:right-56 { - right: 14rem !important; + .lg\:right-12 { + right: 3rem !important; } - .lg\:bottom-56 { - bottom: 14rem !important; + .lg\:right-14 { + right: 3.5rem !important; } - .lg\:left-56 { - left: 14rem !important; + .lg\:right-16 { + right: 4rem !important; } - .lg\:top-60 { - top: 15rem !important; + .lg\:right-20 { + right: 5rem !important; } - .lg\:right-60 { - right: 15rem !important; + .lg\:right-24 { + right: 6rem !important; } - .lg\:bottom-60 { - bottom: 15rem !important; + .lg\:right-28 { + right: 7rem !important; } - .lg\:left-60 { - left: 15rem !important; + .lg\:right-32 { + right: 8rem !important; } - .lg\:top-64 { - top: 16rem !important; + .lg\:right-36 { + right: 9rem !important; } - .lg\:right-64 { - right: 16rem !important; + .lg\:right-40 { + right: 10rem !important; } - .lg\:bottom-64 { - bottom: 16rem !important; + .lg\:right-44 { + right: 11rem !important; } - .lg\:left-64 { - left: 16rem !important; + .lg\:right-48 { + right: 12rem !important; } - .lg\:top-72 { - top: 18rem !important; + .lg\:right-52 { + right: 13rem !important; } - .lg\:right-72 { - right: 18rem !important; + .lg\:right-56 { + right: 14rem !important; } - .lg\:bottom-72 { - bottom: 18rem !important; + .lg\:right-60 { + right: 15rem !important; } - .lg\:left-72 { - left: 18rem !important; + .lg\:right-64 { + right: 16rem !important; } - .lg\:top-80 { - top: 20rem !important; + .lg\:right-72 { + right: 18rem !important; } .lg\:right-80 { right: 20rem !important; } - .lg\:bottom-80 { - bottom: 20rem !important; + .lg\:right-96 { + right: 24rem !important; } - .lg\:left-80 { - left: 20rem !important; + .lg\:right-auto { + right: auto !important; } - .lg\:top-96 { - top: 24rem !important; + .lg\:right-px { + right: 1px !important; } - .lg\:right-96 { - right: 24rem !important; + .lg\:right-0\.5 { + right: 0.125rem !important; } - .lg\:bottom-96 { - bottom: 24rem !important; + .lg\:right-1\.5 { + right: 0.375rem !important; } - .lg\:left-96 { - left: 24rem !important; + .lg\:right-2\.5 { + right: 0.625rem !important; } - .lg\:top-auto { - top: auto !important; + .lg\:right-3\.5 { + right: 0.875rem !important; } - .lg\:right-auto { - right: auto !important; + .lg\:-right-0 { + right: 0px !important; } - .lg\:bottom-auto { - bottom: auto !important; + .lg\:-right-1 { + right: -0.25rem !important; } - .lg\:left-auto { - left: auto !important; + .lg\:-right-2 { + right: -0.5rem !important; } - .lg\:top-px { - top: 1px !important; + .lg\:-right-3 { + right: -0.75rem !important; } - .lg\:right-px { - right: 1px !important; + .lg\:-right-4 { + right: -1rem !important; } - .lg\:bottom-px { - bottom: 1px !important; + .lg\:-right-5 { + right: -1.25rem !important; } - .lg\:left-px { - left: 1px !important; + .lg\:-right-6 { + right: -1.5rem !important; } - .lg\:top-0\.5 { - top: 0.125rem !important; + .lg\:-right-7 { + right: -1.75rem !important; } - .lg\:right-0\.5 { - right: 0.125rem !important; + .lg\:-right-8 { + right: -2rem !important; } - .lg\:bottom-0\.5 { - bottom: 0.125rem !important; + .lg\:-right-9 { + right: -2.25rem !important; } - .lg\:left-0\.5 { - left: 0.125rem !important; + .lg\:-right-10 { + right: -2.5rem !important; } - .lg\:top-1\.5 { - top: 0.375rem !important; + .lg\:-right-11 { + right: -2.75rem !important; } - .lg\:right-1\.5 { - right: 0.375rem !important; + .lg\:-right-12 { + right: -3rem !important; } - .lg\:bottom-1\.5 { - bottom: 0.375rem !important; + .lg\:-right-14 { + right: -3.5rem !important; } - .lg\:left-1\.5 { - left: 0.375rem !important; + .lg\:-right-16 { + right: -4rem !important; } - .lg\:top-2\.5 { - top: 0.625rem !important; + .lg\:-right-20 { + right: -5rem !important; } - .lg\:right-2\.5 { - right: 0.625rem !important; + .lg\:-right-24 { + right: -6rem !important; } - .lg\:bottom-2\.5 { - bottom: 0.625rem !important; + .lg\:-right-28 { + right: -7rem !important; } - .lg\:left-2\.5 { - left: 0.625rem !important; + .lg\:-right-32 { + right: -8rem !important; } - .lg\:top-3\.5 { - top: 0.875rem !important; + .lg\:-right-36 { + right: -9rem !important; } - .lg\:right-3\.5 { - right: 0.875rem !important; + .lg\:-right-40 { + right: -10rem !important; } - .lg\:bottom-3\.5 { - bottom: 0.875rem !important; + .lg\:-right-44 { + right: -11rem !important; } - .lg\:left-3\.5 { - left: 0.875rem !important; + .lg\:-right-48 { + right: -12rem !important; } - .lg\:-top-0 { - top: 0px !important; + .lg\:-right-52 { + right: -13rem !important; } - .lg\:-right-0 { - right: 0px !important; + .lg\:-right-56 { + right: -14rem !important; } - .lg\:-bottom-0 { - bottom: 0px !important; + .lg\:-right-60 { + right: -15rem !important; } - .lg\:-left-0 { - left: 0px !important; + .lg\:-right-64 { + right: -16rem !important; } - .lg\:-top-1 { - top: -0.25rem !important; + .lg\:-right-72 { + right: -18rem !important; } - .lg\:-right-1 { - right: -0.25rem !important; + .lg\:-right-80 { + right: -20rem !important; } - .lg\:-bottom-1 { - bottom: -0.25rem !important; + .lg\:-right-96 { + right: -24rem !important; } - .lg\:-left-1 { - left: -0.25rem !important; + .lg\:-right-px { + right: -1px !important; } - .lg\:-top-2 { - top: -0.5rem !important; + .lg\:-right-0\.5 { + right: -0.125rem !important; } - .lg\:-right-2 { - right: -0.5rem !important; + .lg\:-right-1\.5 { + right: -0.375rem !important; } - .lg\:-bottom-2 { - bottom: -0.5rem !important; + .lg\:-right-2\.5 { + right: -0.625rem !important; } - .lg\:-left-2 { - left: -0.5rem !important; + .lg\:-right-3\.5 { + right: -0.875rem !important; } - .lg\:-top-3 { - top: -0.75rem !important; + .lg\:right-1\/2 { + right: 50% !important; } - .lg\:-right-3 { - right: -0.75rem !important; + .lg\:right-1\/3 { + right: 33.333333% !important; } - .lg\:-bottom-3 { - bottom: -0.75rem !important; + .lg\:right-2\/3 { + right: 66.666667% !important; } - .lg\:-left-3 { - left: -0.75rem !important; + .lg\:right-1\/4 { + right: 25% !important; } - .lg\:-top-4 { - top: -1rem !important; + .lg\:right-2\/4 { + right: 50% !important; } - .lg\:-right-4 { - right: -1rem !important; + .lg\:right-3\/4 { + right: 75% !important; } - .lg\:-bottom-4 { - bottom: -1rem !important; + .lg\:right-full { + right: 100% !important; } - .lg\:-left-4 { - left: -1rem !important; + .lg\:-right-1\/2 { + right: -50% !important; } - .lg\:-top-5 { - top: -1.25rem !important; + .lg\:-right-1\/3 { + right: -33.333333% !important; } - .lg\:-right-5 { - right: -1.25rem !important; + .lg\:-right-2\/3 { + right: -66.666667% !important; } - .lg\:-bottom-5 { - bottom: -1.25rem !important; + .lg\:-right-1\/4 { + right: -25% !important; } - .lg\:-left-5 { - left: -1.25rem !important; + .lg\:-right-2\/4 { + right: -50% !important; } - .lg\:-top-6 { - top: -1.5rem !important; + .lg\:-right-3\/4 { + right: -75% !important; } - .lg\:-right-6 { - right: -1.5rem !important; + .lg\:-right-full { + right: -100% !important; } - .lg\:-bottom-6 { - bottom: -1.5rem !important; + .lg\:bottom-0 { + bottom: 0px !important; } - .lg\:-left-6 { - left: -1.5rem !important; + .lg\:bottom-1 { + bottom: 0.25rem !important; } - .lg\:-top-7 { - top: -1.75rem !important; + .lg\:bottom-2 { + bottom: 0.5rem !important; } - .lg\:-right-7 { - right: -1.75rem !important; + .lg\:bottom-3 { + bottom: 0.75rem !important; } - .lg\:-bottom-7 { - bottom: -1.75rem !important; + .lg\:bottom-4 { + bottom: 1rem !important; } - .lg\:-left-7 { - left: -1.75rem !important; + .lg\:bottom-5 { + bottom: 1.25rem !important; } - .lg\:-top-8 { - top: -2rem !important; + .lg\:bottom-6 { + bottom: 1.5rem !important; } - .lg\:-right-8 { - right: -2rem !important; + .lg\:bottom-7 { + bottom: 1.75rem !important; } - .lg\:-bottom-8 { - bottom: -2rem !important; + .lg\:bottom-8 { + bottom: 2rem !important; } - .lg\:-left-8 { - left: -2rem !important; + .lg\:bottom-9 { + bottom: 2.25rem !important; } - .lg\:-top-9 { - top: -2.25rem !important; + .lg\:bottom-10 { + bottom: 2.5rem !important; } - .lg\:-right-9 { - right: -2.25rem !important; + .lg\:bottom-11 { + bottom: 2.75rem !important; } - .lg\:-bottom-9 { - bottom: -2.25rem !important; + .lg\:bottom-12 { + bottom: 3rem !important; } - .lg\:-left-9 { - left: -2.25rem !important; + .lg\:bottom-14 { + bottom: 3.5rem !important; } - .lg\:-top-10 { - top: -2.5rem !important; + .lg\:bottom-16 { + bottom: 4rem !important; } - .lg\:-right-10 { - right: -2.5rem !important; + .lg\:bottom-20 { + bottom: 5rem !important; } - .lg\:-bottom-10 { - bottom: -2.5rem !important; + .lg\:bottom-24 { + bottom: 6rem !important; } - .lg\:-left-10 { - left: -2.5rem !important; + .lg\:bottom-28 { + bottom: 7rem !important; } - .lg\:-top-11 { - top: -2.75rem !important; + .lg\:bottom-32 { + bottom: 8rem !important; } - .lg\:-right-11 { - right: -2.75rem !important; + .lg\:bottom-36 { + bottom: 9rem !important; } - .lg\:-bottom-11 { - bottom: -2.75rem !important; + .lg\:bottom-40 { + bottom: 10rem !important; } - .lg\:-left-11 { - left: -2.75rem !important; + .lg\:bottom-44 { + bottom: 11rem !important; } - .lg\:-top-12 { - top: -3rem !important; + .lg\:bottom-48 { + bottom: 12rem !important; } - .lg\:-right-12 { - right: -3rem !important; + .lg\:bottom-52 { + bottom: 13rem !important; } - .lg\:-bottom-12 { - bottom: -3rem !important; + .lg\:bottom-56 { + bottom: 14rem !important; } - .lg\:-left-12 { - left: -3rem !important; + .lg\:bottom-60 { + bottom: 15rem !important; } - .lg\:-top-14 { - top: -3.5rem !important; + .lg\:bottom-64 { + bottom: 16rem !important; } - .lg\:-right-14 { - right: -3.5rem !important; + .lg\:bottom-72 { + bottom: 18rem !important; } - .lg\:-bottom-14 { - bottom: -3.5rem !important; + .lg\:bottom-80 { + bottom: 20rem !important; } - .lg\:-left-14 { - left: -3.5rem !important; + .lg\:bottom-96 { + bottom: 24rem !important; } - .lg\:-top-16 { - top: -4rem !important; + .lg\:bottom-auto { + bottom: auto !important; } - .lg\:-right-16 { - right: -4rem !important; + .lg\:bottom-px { + bottom: 1px !important; } - .lg\:-bottom-16 { - bottom: -4rem !important; + .lg\:bottom-0\.5 { + bottom: 0.125rem !important; } - .lg\:-left-16 { - left: -4rem !important; + .lg\:bottom-1\.5 { + bottom: 0.375rem !important; } - .lg\:-top-20 { - top: -5rem !important; + .lg\:bottom-2\.5 { + bottom: 0.625rem !important; } - .lg\:-right-20 { - right: -5rem !important; + .lg\:bottom-3\.5 { + bottom: 0.875rem !important; } - .lg\:-bottom-20 { - bottom: -5rem !important; + .lg\:-bottom-0 { + bottom: 0px !important; } - .lg\:-left-20 { - left: -5rem !important; + .lg\:-bottom-1 { + bottom: -0.25rem !important; } - .lg\:-top-24 { - top: -6rem !important; + .lg\:-bottom-2 { + bottom: -0.5rem !important; } - .lg\:-right-24 { - right: -6rem !important; + .lg\:-bottom-3 { + bottom: -0.75rem !important; } - .lg\:-bottom-24 { - bottom: -6rem !important; + .lg\:-bottom-4 { + bottom: -1rem !important; } - .lg\:-left-24 { - left: -6rem !important; + .lg\:-bottom-5 { + bottom: -1.25rem !important; } - .lg\:-top-28 { - top: -7rem !important; + .lg\:-bottom-6 { + bottom: -1.5rem !important; } - .lg\:-right-28 { - right: -7rem !important; + .lg\:-bottom-7 { + bottom: -1.75rem !important; } - .lg\:-bottom-28 { - bottom: -7rem !important; + .lg\:-bottom-8 { + bottom: -2rem !important; } - .lg\:-left-28 { - left: -7rem !important; + .lg\:-bottom-9 { + bottom: -2.25rem !important; } - .lg\:-top-32 { - top: -8rem !important; + .lg\:-bottom-10 { + bottom: -2.5rem !important; } - .lg\:-right-32 { - right: -8rem !important; + .lg\:-bottom-11 { + bottom: -2.75rem !important; } - .lg\:-bottom-32 { - bottom: -8rem !important; + .lg\:-bottom-12 { + bottom: -3rem !important; } - .lg\:-left-32 { - left: -8rem !important; + .lg\:-bottom-14 { + bottom: -3.5rem !important; } - .lg\:-top-36 { - top: -9rem !important; + .lg\:-bottom-16 { + bottom: -4rem !important; } - .lg\:-right-36 { - right: -9rem !important; + .lg\:-bottom-20 { + bottom: -5rem !important; } - .lg\:-bottom-36 { - bottom: -9rem !important; + .lg\:-bottom-24 { + bottom: -6rem !important; } - .lg\:-left-36 { - left: -9rem !important; + .lg\:-bottom-28 { + bottom: -7rem !important; } - .lg\:-top-40 { - top: -10rem !important; + .lg\:-bottom-32 { + bottom: -8rem !important; } - .lg\:-right-40 { - right: -10rem !important; + .lg\:-bottom-36 { + bottom: -9rem !important; } .lg\:-bottom-40 { bottom: -10rem !important; } - .lg\:-left-40 { - left: -10rem !important; + .lg\:-bottom-44 { + bottom: -11rem !important; } - .lg\:-top-44 { - top: -11rem !important; + .lg\:-bottom-48 { + bottom: -12rem !important; } - .lg\:-right-44 { - right: -11rem !important; + .lg\:-bottom-52 { + bottom: -13rem !important; } - .lg\:-bottom-44 { - bottom: -11rem !important; + .lg\:-bottom-56 { + bottom: -14rem !important; } - .lg\:-left-44 { - left: -11rem !important; + .lg\:-bottom-60 { + bottom: -15rem !important; } - .lg\:-top-48 { - top: -12rem !important; + .lg\:-bottom-64 { + bottom: -16rem !important; } - .lg\:-right-48 { - right: -12rem !important; + .lg\:-bottom-72 { + bottom: -18rem !important; } - .lg\:-bottom-48 { - bottom: -12rem !important; + .lg\:-bottom-80 { + bottom: -20rem !important; } - .lg\:-left-48 { - left: -12rem !important; + .lg\:-bottom-96 { + bottom: -24rem !important; } - .lg\:-top-52 { - top: -13rem !important; + .lg\:-bottom-px { + bottom: -1px !important; } - .lg\:-right-52 { - right: -13rem !important; + .lg\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .lg\:-bottom-52 { - bottom: -13rem !important; + .lg\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .lg\:-left-52 { - left: -13rem !important; + .lg\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .lg\:-top-56 { - top: -14rem !important; + .lg\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .lg\:-right-56 { - right: -14rem !important; + .lg\:bottom-1\/2 { + bottom: 50% !important; } - .lg\:-bottom-56 { - bottom: -14rem !important; + .lg\:bottom-1\/3 { + bottom: 33.333333% !important; } - .lg\:-left-56 { - left: -14rem !important; + .lg\:bottom-2\/3 { + bottom: 66.666667% !important; } - .lg\:-top-60 { - top: -15rem !important; + .lg\:bottom-1\/4 { + bottom: 25% !important; } - .lg\:-right-60 { - right: -15rem !important; + .lg\:bottom-2\/4 { + bottom: 50% !important; } - .lg\:-bottom-60 { - bottom: -15rem !important; + .lg\:bottom-3\/4 { + bottom: 75% !important; } - .lg\:-left-60 { - left: -15rem !important; + .lg\:bottom-full { + bottom: 100% !important; } - .lg\:-top-64 { - top: -16rem !important; + .lg\:-bottom-1\/2 { + bottom: -50% !important; } - .lg\:-right-64 { - right: -16rem !important; + .lg\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .lg\:-bottom-64 { - bottom: -16rem !important; + .lg\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .lg\:-left-64 { - left: -16rem !important; + .lg\:-bottom-1\/4 { + bottom: -25% !important; } - .lg\:-top-72 { - top: -18rem !important; + .lg\:-bottom-2\/4 { + bottom: -50% !important; } - .lg\:-right-72 { - right: -18rem !important; + .lg\:-bottom-3\/4 { + bottom: -75% !important; } - .lg\:-bottom-72 { - bottom: -18rem !important; + .lg\:-bottom-full { + bottom: -100% !important; } - .lg\:-left-72 { - left: -18rem !important; + .lg\:left-0 { + left: 0px !important; } - .lg\:-top-80 { - top: -20rem !important; + .lg\:left-1 { + left: 0.25rem !important; } - .lg\:-right-80 { - right: -20rem !important; + .lg\:left-2 { + left: 0.5rem !important; } - .lg\:-bottom-80 { - bottom: -20rem !important; + .lg\:left-3 { + left: 0.75rem !important; } - .lg\:-left-80 { - left: -20rem !important; + .lg\:left-4 { + left: 1rem !important; } - .lg\:-top-96 { - top: -24rem !important; + .lg\:left-5 { + left: 1.25rem !important; } - .lg\:-right-96 { - right: -24rem !important; + .lg\:left-6 { + left: 1.5rem !important; } - .lg\:-bottom-96 { - bottom: -24rem !important; + .lg\:left-7 { + left: 1.75rem !important; } - .lg\:-left-96 { - left: -24rem !important; + .lg\:left-8 { + left: 2rem !important; } - .lg\:-top-px { - top: -1px !important; + .lg\:left-9 { + left: 2.25rem !important; } - .lg\:-right-px { - right: -1px !important; + .lg\:left-10 { + left: 2.5rem !important; } - .lg\:-bottom-px { - bottom: -1px !important; + .lg\:left-11 { + left: 2.75rem !important; } - .lg\:-left-px { - left: -1px !important; + .lg\:left-12 { + left: 3rem !important; } - .lg\:-top-0\.5 { - top: -0.125rem !important; + .lg\:left-14 { + left: 3.5rem !important; } - .lg\:-right-0\.5 { - right: -0.125rem !important; + .lg\:left-16 { + left: 4rem !important; } - .lg\:-bottom-0\.5 { - bottom: -0.125rem !important; + .lg\:left-20 { + left: 5rem !important; } - .lg\:-left-0\.5 { - left: -0.125rem !important; + .lg\:left-24 { + left: 6rem !important; } - .lg\:-top-1\.5 { - top: -0.375rem !important; + .lg\:left-28 { + left: 7rem !important; } - .lg\:-right-1\.5 { - right: -0.375rem !important; + .lg\:left-32 { + left: 8rem !important; } - .lg\:-bottom-1\.5 { - bottom: -0.375rem !important; + .lg\:left-36 { + left: 9rem !important; } - .lg\:-left-1\.5 { - left: -0.375rem !important; + .lg\:left-40 { + left: 10rem !important; } - .lg\:-top-2\.5 { - top: -0.625rem !important; + .lg\:left-44 { + left: 11rem !important; } - .lg\:-right-2\.5 { - right: -0.625rem !important; + .lg\:left-48 { + left: 12rem !important; } - .lg\:-bottom-2\.5 { - bottom: -0.625rem !important; + .lg\:left-52 { + left: 13rem !important; } - .lg\:-left-2\.5 { - left: -0.625rem !important; + .lg\:left-56 { + left: 14rem !important; } - .lg\:-top-3\.5 { - top: -0.875rem !important; + .lg\:left-60 { + left: 15rem !important; } - .lg\:-right-3\.5 { - right: -0.875rem !important; + .lg\:left-64 { + left: 16rem !important; } - .lg\:-bottom-3\.5 { - bottom: -0.875rem !important; + .lg\:left-72 { + left: 18rem !important; } - .lg\:-left-3\.5 { - left: -0.875rem !important; + .lg\:left-80 { + left: 20rem !important; } - .lg\:top-1\/2 { - top: 50% !important; + .lg\:left-96 { + left: 24rem !important; } - .lg\:right-1\/2 { - right: 50% !important; + .lg\:left-auto { + left: auto !important; } - .lg\:bottom-1\/2 { - bottom: 50% !important; + .lg\:left-px { + left: 1px !important; } - .lg\:left-1\/2 { - left: 50% !important; + .lg\:left-0\.5 { + left: 0.125rem !important; } - .lg\:top-1\/3 { - top: 33.333333% !important; + .lg\:left-1\.5 { + left: 0.375rem !important; } - .lg\:right-1\/3 { - right: 33.333333% !important; + .lg\:left-2\.5 { + left: 0.625rem !important; } - .lg\:bottom-1\/3 { - bottom: 33.333333% !important; + .lg\:left-3\.5 { + left: 0.875rem !important; } - .lg\:left-1\/3 { - left: 33.333333% !important; + .lg\:-left-0 { + left: 0px !important; } - .lg\:top-2\/3 { - top: 66.666667% !important; + .lg\:-left-1 { + left: -0.25rem !important; } - .lg\:right-2\/3 { - right: 66.666667% !important; + .lg\:-left-2 { + left: -0.5rem !important; } - .lg\:bottom-2\/3 { - bottom: 66.666667% !important; + .lg\:-left-3 { + left: -0.75rem !important; } - .lg\:left-2\/3 { - left: 66.666667% !important; + .lg\:-left-4 { + left: -1rem !important; } - .lg\:top-1\/4 { - top: 25% !important; + .lg\:-left-5 { + left: -1.25rem !important; } - .lg\:right-1\/4 { - right: 25% !important; + .lg\:-left-6 { + left: -1.5rem !important; } - .lg\:bottom-1\/4 { - bottom: 25% !important; + .lg\:-left-7 { + left: -1.75rem !important; } - .lg\:left-1\/4 { - left: 25% !important; + .lg\:-left-8 { + left: -2rem !important; } - .lg\:top-2\/4 { - top: 50% !important; + .lg\:-left-9 { + left: -2.25rem !important; } - .lg\:right-2\/4 { - right: 50% !important; + .lg\:-left-10 { + left: -2.5rem !important; } - .lg\:bottom-2\/4 { - bottom: 50% !important; + .lg\:-left-11 { + left: -2.75rem !important; } - .lg\:left-2\/4 { - left: 50% !important; + .lg\:-left-12 { + left: -3rem !important; } - .lg\:top-3\/4 { - top: 75% !important; + .lg\:-left-14 { + left: -3.5rem !important; } - .lg\:right-3\/4 { - right: 75% !important; + .lg\:-left-16 { + left: -4rem !important; } - .lg\:bottom-3\/4 { - bottom: 75% !important; + .lg\:-left-20 { + left: -5rem !important; } - .lg\:left-3\/4 { - left: 75% !important; + .lg\:-left-24 { + left: -6rem !important; } - .lg\:top-full { - top: 100% !important; + .lg\:-left-28 { + left: -7rem !important; } - .lg\:right-full { - right: 100% !important; + .lg\:-left-32 { + left: -8rem !important; } - .lg\:bottom-full { - bottom: 100% !important; + .lg\:-left-36 { + left: -9rem !important; } - .lg\:left-full { - left: 100% !important; + .lg\:-left-40 { + left: -10rem !important; } - .lg\:-top-1\/2 { - top: -50% !important; + .lg\:-left-44 { + left: -11rem !important; } - .lg\:-right-1\/2 { - right: -50% !important; + .lg\:-left-48 { + left: -12rem !important; } - .lg\:-bottom-1\/2 { - bottom: -50% !important; + .lg\:-left-52 { + left: -13rem !important; } - .lg\:-left-1\/2 { - left: -50% !important; + .lg\:-left-56 { + left: -14rem !important; } - .lg\:-top-1\/3 { - top: -33.333333% !important; + .lg\:-left-60 { + left: -15rem !important; } - .lg\:-right-1\/3 { - right: -33.333333% !important; + .lg\:-left-64 { + left: -16rem !important; } - .lg\:-bottom-1\/3 { - bottom: -33.333333% !important; + .lg\:-left-72 { + left: -18rem !important; } - .lg\:-left-1\/3 { - left: -33.333333% !important; + .lg\:-left-80 { + left: -20rem !important; } - .lg\:-top-2\/3 { - top: -66.666667% !important; + .lg\:-left-96 { + left: -24rem !important; } - .lg\:-right-2\/3 { - right: -66.666667% !important; + .lg\:-left-px { + left: -1px !important; } - .lg\:-bottom-2\/3 { - bottom: -66.666667% !important; + .lg\:-left-0\.5 { + left: -0.125rem !important; } - .lg\:-left-2\/3 { - left: -66.666667% !important; + .lg\:-left-1\.5 { + left: -0.375rem !important; } - .lg\:-top-1\/4 { - top: -25% !important; + .lg\:-left-2\.5 { + left: -0.625rem !important; } - .lg\:-right-1\/4 { - right: -25% !important; + .lg\:-left-3\.5 { + left: -0.875rem !important; } - .lg\:-bottom-1\/4 { - bottom: -25% !important; + .lg\:left-1\/2 { + left: 50% !important; } - .lg\:-left-1\/4 { - left: -25% !important; + .lg\:left-1\/3 { + left: 33.333333% !important; } - .lg\:-top-2\/4 { - top: -50% !important; + .lg\:left-2\/3 { + left: 66.666667% !important; } - .lg\:-right-2\/4 { - right: -50% !important; + .lg\:left-1\/4 { + left: 25% !important; } - .lg\:-bottom-2\/4 { - bottom: -50% !important; + .lg\:left-2\/4 { + left: 50% !important; } - .lg\:-left-2\/4 { - left: -50% !important; + .lg\:left-3\/4 { + left: 75% !important; } - .lg\:-top-3\/4 { - top: -75% !important; + .lg\:left-full { + left: 100% !important; } - .lg\:-right-3\/4 { - right: -75% !important; + .lg\:-left-1\/2 { + left: -50% !important; } - .lg\:-bottom-3\/4 { - bottom: -75% !important; + .lg\:-left-1\/3 { + left: -33.333333% !important; } - .lg\:-left-3\/4 { - left: -75% !important; + .lg\:-left-2\/3 { + left: -66.666667% !important; } - .lg\:-top-full { - top: -100% !important; + .lg\:-left-1\/4 { + left: -25% !important; } - .lg\:-right-full { - right: -100% !important; + .lg\:-left-2\/4 { + left: -50% !important; } - .lg\:-bottom-full { - bottom: -100% !important; + .lg\:-left-3\/4 { + left: -75% !important; } .lg\:-left-full { @@ -97037,133 +97101,183 @@ video { --tw-scale-y: 1.5 !important; } - .lg\:scale-x-0 { + .lg\:hover\:scale-0:hover { --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .lg\:scale-x-50 { + .lg\:hover\:scale-50:hover { --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .lg\:scale-x-75 { + .lg\:hover\:scale-75:hover { --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .lg\:scale-x-90 { + .lg\:hover\:scale-90:hover { --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .lg\:scale-x-95 { + .lg\:hover\:scale-95:hover { --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .lg\:scale-x-100 { + .lg\:hover\:scale-100:hover { --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .lg\:scale-x-105 { + .lg\:hover\:scale-105:hover { --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .lg\:scale-x-110 { + .lg\:hover\:scale-110:hover { --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .lg\:scale-x-125 { + .lg\:hover\:scale-125:hover { --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .lg\:scale-x-150 { + .lg\:hover\:scale-150:hover { --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .lg\:scale-y-0 { + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; --tw-scale-y: 0 !important; } - .lg\:scale-y-50 { + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; --tw-scale-y: .5 !important; } - .lg\:scale-y-75 { + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; --tw-scale-y: .75 !important; } - .lg\:scale-y-90 { + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; --tw-scale-y: .9 !important; } - .lg\:scale-y-95 { + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; --tw-scale-y: .95 !important; } - .lg\:scale-y-100 { + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; --tw-scale-y: 1 !important; } - .lg\:scale-y-105 { + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; --tw-scale-y: 1.05 !important; } - .lg\:scale-y-110 { + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; --tw-scale-y: 1.1 !important; } - .lg\:scale-y-125 { + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; --tw-scale-y: 1.25 !important; } - .lg\:scale-y-150 { + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; --tw-scale-y: 1.5 !important; } - .lg\:hover\:scale-0:hover { + .lg\:scale-x-0 { --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; } - .lg\:hover\:scale-50:hover { + .lg\:scale-x-50 { --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; } - .lg\:hover\:scale-75:hover { + .lg\:scale-x-75 { --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; } - .lg\:hover\:scale-90:hover { + .lg\:scale-x-90 { --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; } - .lg\:hover\:scale-95:hover { + .lg\:scale-x-95 { --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; } - .lg\:hover\:scale-100:hover { + .lg\:scale-x-100 { --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; } - .lg\:hover\:scale-105:hover { + .lg\:scale-x-105 { --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; } - .lg\:hover\:scale-110:hover { + .lg\:scale-x-110 { --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; } - .lg\:hover\:scale-125:hover { + .lg\:scale-x-125 { --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; } - .lg\:hover\:scale-150:hover { + .lg\:scale-x-150 { --tw-scale-x: 1.5 !important; + } + + .lg\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .lg\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .lg\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .lg\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .lg\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .lg\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .lg\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .lg\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .lg\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .lg\:scale-y-150 { --tw-scale-y: 1.5 !important; } @@ -97247,56 +97361,6 @@ video { --tw-scale-y: 1.5 !important; } - .lg\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; - } - - .lg\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; - } - - .lg\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; - } - - .lg\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; - } - - .lg\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; - } - - .lg\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - } - - .lg\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; - } - - .lg\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; - } - - .lg\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; - } - - .lg\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; - } - .lg\:focus\:scale-x-0:focus { --tw-scale-x: 0 !important; } @@ -98189,436 +98253,640 @@ video { row-gap: 0.875rem !important; } - .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0px * var(--tw-space-x-reverse)) !important; margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1px * var(--tw-space-x-reverse)) !important; margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; - } - .lg\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(0px * var(--tw-space-x-reverse)) !important; - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } .lg\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -98627,408 +98895,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; } - .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1 !important; } @@ -99037,66 +99101,66 @@ video { --tw-space-x-reverse: 1 !important; } - .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; - } - .lg\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; - } - .lg\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; - } - .lg\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; - } - .lg\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; - } - .lg\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; } + .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1 !important; } @@ -105510,2188 +105574,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .lg\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .lg\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .lg\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .lg\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .lg\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; - } - - .lg\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; - } - - .lg\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; - } - - .lg\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; - } - - .lg\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; - } - - .lg\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; - } - - .lg\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; - } - - .lg\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; - } - - .lg\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; - } - - .lg\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; - } - - .lg\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; - } - - .lg\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; - } - - .lg\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; - } - - .lg\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; - } - - .lg\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; - } - - .lg\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; - } - - .lg\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; - } - - .lg\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; - } - - .lg\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; - } - - .lg\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; - } - - .lg\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; - } - - .lg\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; - } - - .lg\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; - } - - .lg\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; - } - - .lg\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; - } - - .lg\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; - } - - .lg\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; - } - - .lg\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; - } - - .lg\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; - } - - .lg\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; - } - - .lg\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; - } - - .lg\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; - } - - .lg\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; - } - - .lg\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; - } - - .lg\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; - } - - .lg\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; - } - - .lg\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; - } - - .lg\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; - } - - .lg\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; - } - - .lg\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; - } - - .lg\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; - } - - .lg\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; - } - - .lg\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; - } - - .lg\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; - } - - .lg\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; - } - - .lg\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; - } - - .lg\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; - } - - .lg\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; - } - - .lg\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; - } - - .lg\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; - } - - .lg\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; - } - - .lg\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; - } - - .lg\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; - } - - .lg\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; - } - - .lg\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; - } - - .lg\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; - } - - .lg\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; - } - - .lg\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; - } - - .lg\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; - } - - .lg\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; - } - - .lg\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; - } - - .lg\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; - } - - .lg\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; - } - - .lg\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; - } - - .lg\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; - } - - .lg\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; - } - - .lg\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; - } - - .lg\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; - } - - .lg\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; - } - - .lg\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; - } - - .lg\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; - } - - .lg\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; - } - - .lg\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; - } - - .lg\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; - } - - .lg\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; - } - - .lg\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; - } - - .lg\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; - } - - .lg\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; - } - - .lg\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; - } - - .lg\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; - } - - .lg\:to-transparent { - --tw-gradient-to: transparent !important; + .lg\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:to-current { - --tw-gradient-to: currentColor !important; + .lg\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:to-black { - --tw-gradient-to: #000 !important; + .lg\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:to-white { - --tw-gradient-to: #fff !important; + .lg\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .lg\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .lg\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .lg\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .lg\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .lg\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .lg\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .lg\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .lg\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .lg\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .lg\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .lg\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .lg\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .lg\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .lg\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .lg\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .lg\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .lg\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .lg\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .lg\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .lg\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .lg\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .lg\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .lg\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .lg\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .lg\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .lg\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .lg\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .lg\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .lg\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .lg\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .lg\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .lg\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .lg\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .lg\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .lg\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .lg\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .lg\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .lg\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .lg\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .lg\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .lg\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .lg\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .lg\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .lg\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .lg\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .lg\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .lg\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .lg\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .lg\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .lg\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .lg\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .lg\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .lg\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .lg\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .lg\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .lg\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .lg\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .lg\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .lg\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .lg\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .lg\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .lg\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .lg\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .lg\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .lg\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .lg\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .lg\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .lg\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .lg\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .lg\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .lg\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .lg\:to-green-600 { - --tw-gradient-to: #059669 !important; + .lg\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .lg\:to-green-700 { - --tw-gradient-to: #047857 !important; + .lg\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .lg\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .lg\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .lg\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .lg\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .lg\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .lg\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .lg\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .lg\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .lg\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .lg\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .lg\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .lg\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .lg\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .lg\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .lg\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .lg\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .lg\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .lg\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .lg\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .lg\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .lg\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .lg\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .lg\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .lg\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .lg\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .lg\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .lg\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .lg\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .lg\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .lg\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .lg\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .lg\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .lg\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .lg\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .lg\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .lg\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .lg\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .lg\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .lg\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .lg\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .lg\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .lg\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .lg\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .lg\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .lg\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .lg\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .lg\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .lg\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .lg\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .lg\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .lg\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .lg\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .lg\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .lg\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .lg\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .lg\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .lg\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .lg\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .lg\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .lg\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .lg\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .lg\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .lg\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .lg\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .lg\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .lg\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .lg\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .lg\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .lg\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .lg\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .lg\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .lg\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .lg\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .lg\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .lg\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .lg\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .lg\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .lg\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .lg\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .lg\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .lg\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .lg\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .lg\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .lg\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .lg\:hover\:from-transparent:hover { + .lg\:focus\:from-transparent:focus { --tw-gradient-from: transparent !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:hover\:from-current:hover { + .lg\:focus\:from-current:focus { --tw-gradient-from: currentColor !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:hover\:from-black:hover { + .lg\:focus\:from-black:focus { --tw-gradient-from: #000 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:hover\:from-white:hover { + .lg\:focus\:from-white:focus { --tw-gradient-from: #fff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:hover\:from-gray-50:hover { + .lg\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .lg\:hover\:from-gray-100:hover { + .lg\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .lg\:hover\:from-gray-200:hover { + .lg\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .lg\:hover\:from-gray-300:hover { + .lg\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .lg\:hover\:from-gray-400:hover { + .lg\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .lg\:hover\:from-gray-500:hover { + .lg\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .lg\:hover\:from-gray-600:hover { + .lg\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .lg\:hover\:from-gray-700:hover { + .lg\:focus\:from-gray-700:focus { --tw-gradient-from: #374151 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .lg\:hover\:from-gray-800:hover { + .lg\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .lg\:hover\:from-gray-900:hover { + .lg\:focus\:from-gray-900:focus { --tw-gradient-from: #111827 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .lg\:hover\:from-red-50:hover { + .lg\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .lg\:hover\:from-red-100:hover { + .lg\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .lg\:hover\:from-red-200:hover { + .lg\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .lg\:hover\:from-red-300:hover { + .lg\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .lg\:hover\:from-red-400:hover { + .lg\:focus\:from-red-400:focus { --tw-gradient-from: #f87171 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .lg\:hover\:from-red-500:hover { + .lg\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .lg\:hover\:from-red-600:hover { + .lg\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .lg\:hover\:from-red-700:hover { + .lg\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .lg\:hover\:from-red-800:hover { + .lg\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .lg\:hover\:from-red-900:hover { + .lg\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .lg\:hover\:from-yellow-50:hover { + .lg\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .lg\:hover\:from-yellow-100:hover { + .lg\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .lg\:hover\:from-yellow-200:hover { + .lg\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .lg\:hover\:from-yellow-300:hover { + .lg\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .lg\:hover\:from-yellow-400:hover { + .lg\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .lg\:hover\:from-yellow-500:hover { + .lg\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .lg\:hover\:from-yellow-600:hover { + .lg\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .lg\:hover\:from-yellow-700:hover { + .lg\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .lg\:hover\:from-yellow-800:hover { + .lg\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .lg\:hover\:from-yellow-900:hover { + .lg\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .lg\:hover\:from-green-50:hover { + .lg\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .lg\:hover\:from-green-100:hover { + .lg\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .lg\:hover\:from-green-200:hover { + .lg\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .lg\:hover\:from-green-300:hover { + .lg\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .lg\:hover\:from-green-400:hover { + .lg\:focus\:from-green-400:focus { --tw-gradient-from: #34d399 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .lg\:hover\:from-green-500:hover { + .lg\:focus\:from-green-500:focus { --tw-gradient-from: #10b981 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .lg\:hover\:from-green-600:hover { + .lg\:focus\:from-green-600:focus { --tw-gradient-from: #059669 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .lg\:hover\:from-green-700:hover { + .lg\:focus\:from-green-700:focus { --tw-gradient-from: #047857 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .lg\:hover\:from-green-800:hover { + .lg\:focus\:from-green-800:focus { --tw-gradient-from: #065f46 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .lg\:hover\:from-green-900:hover { + .lg\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .lg\:hover\:from-blue-50:hover { + .lg\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .lg\:hover\:from-blue-100:hover { + .lg\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .lg\:hover\:from-blue-200:hover { + .lg\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .lg\:hover\:from-blue-300:hover { + .lg\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .lg\:hover\:from-blue-400:hover { + .lg\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .lg\:hover\:from-blue-500:hover { + .lg\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .lg\:hover\:from-blue-600:hover { + .lg\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .lg\:hover\:from-blue-700:hover { + .lg\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .lg\:hover\:from-blue-800:hover { + .lg\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .lg\:hover\:from-blue-900:hover { + .lg\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .lg\:hover\:from-indigo-50:hover { + .lg\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .lg\:hover\:from-indigo-100:hover { + .lg\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .lg\:hover\:from-indigo-200:hover { + .lg\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .lg\:hover\:from-indigo-300:hover { + .lg\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .lg\:hover\:from-indigo-400:hover { + .lg\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .lg\:hover\:from-indigo-500:hover { + .lg\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .lg\:hover\:from-indigo-600:hover { + .lg\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .lg\:hover\:from-indigo-700:hover { + .lg\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .lg\:hover\:from-indigo-800:hover { + .lg\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .lg\:hover\:from-indigo-900:hover { + .lg\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .lg\:hover\:from-purple-50:hover { + .lg\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .lg\:hover\:from-purple-100:hover { + .lg\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .lg\:hover\:from-purple-200:hover { + .lg\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .lg\:hover\:from-purple-300:hover { + .lg\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .lg\:hover\:from-purple-400:hover { + .lg\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .lg\:hover\:from-purple-500:hover { + .lg\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .lg\:hover\:from-purple-600:hover { + .lg\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .lg\:hover\:from-purple-700:hover { + .lg\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .lg\:hover\:from-purple-800:hover { + .lg\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .lg\:hover\:from-purple-900:hover { + .lg\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .lg\:hover\:from-pink-50:hover { + .lg\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .lg\:hover\:from-pink-100:hover { + .lg\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .lg\:hover\:from-pink-200:hover { + .lg\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .lg\:hover\:from-pink-300:hover { + .lg\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .lg\:hover\:from-pink-400:hover { + .lg\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .lg\:hover\:from-pink-500:hover { + .lg\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .lg\:hover\:from-pink-600:hover { + .lg\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .lg\:hover\:from-pink-700:hover { + .lg\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .lg\:hover\:from-pink-800:hover { + .lg\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .lg\:hover\:from-pink-900:hover { + .lg\:focus\:from-pink-900:focus { --tw-gradient-from: #831843 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .lg\:hover\:via-transparent:hover { + .lg\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:hover\:via-current:hover { + .lg\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:hover\:via-black:hover { + .lg\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:hover\:via-white:hover { + .lg\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:hover\:via-gray-50:hover { + .lg\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .lg\:hover\:via-gray-100:hover { + .lg\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .lg\:hover\:via-gray-200:hover { + .lg\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .lg\:hover\:via-gray-300:hover { + .lg\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .lg\:hover\:via-gray-400:hover { + .lg\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .lg\:hover\:via-gray-500:hover { + .lg\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .lg\:hover\:via-gray-600:hover { + .lg\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .lg\:hover\:via-gray-700:hover { + .lg\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .lg\:hover\:via-gray-800:hover { + .lg\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .lg\:hover\:via-gray-900:hover { + .lg\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .lg\:hover\:via-red-50:hover { + .lg\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .lg\:hover\:via-red-100:hover { + .lg\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .lg\:hover\:via-red-200:hover { + .lg\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .lg\:hover\:via-red-300:hover { + .lg\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .lg\:hover\:via-red-400:hover { + .lg\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .lg\:hover\:via-red-500:hover { + .lg\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .lg\:hover\:via-red-600:hover { + .lg\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .lg\:hover\:via-red-700:hover { + .lg\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .lg\:hover\:via-red-800:hover { + .lg\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .lg\:hover\:via-red-900:hover { + .lg\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .lg\:hover\:via-yellow-50:hover { + .lg\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .lg\:hover\:via-yellow-100:hover { + .lg\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .lg\:hover\:via-yellow-200:hover { + .lg\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .lg\:hover\:via-yellow-300:hover { + .lg\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .lg\:hover\:via-yellow-400:hover { + .lg\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .lg\:hover\:via-yellow-500:hover { + .lg\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .lg\:hover\:via-yellow-600:hover { + .lg\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .lg\:hover\:via-yellow-700:hover { + .lg\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .lg\:hover\:via-yellow-800:hover { + .lg\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .lg\:hover\:via-yellow-900:hover { + .lg\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .lg\:hover\:via-green-50:hover { + .lg\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .lg\:hover\:via-green-100:hover { + .lg\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .lg\:hover\:via-green-200:hover { + .lg\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .lg\:hover\:via-green-300:hover { + .lg\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .lg\:hover\:via-green-400:hover { + .lg\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .lg\:hover\:via-green-500:hover { + .lg\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .lg\:hover\:via-green-600:hover { + .lg\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .lg\:hover\:via-green-700:hover { + .lg\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .lg\:hover\:via-green-800:hover { + .lg\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .lg\:hover\:via-green-900:hover { + .lg\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .lg\:hover\:via-blue-50:hover { + .lg\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .lg\:hover\:via-blue-100:hover { + .lg\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .lg\:hover\:via-blue-200:hover { + .lg\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .lg\:hover\:via-blue-300:hover { + .lg\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .lg\:hover\:via-blue-400:hover { + .lg\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .lg\:hover\:via-blue-500:hover { + .lg\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .lg\:hover\:via-blue-600:hover { + .lg\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .lg\:hover\:via-blue-700:hover { + .lg\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .lg\:hover\:via-blue-800:hover { + .lg\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .lg\:hover\:via-blue-900:hover { + .lg\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .lg\:hover\:via-indigo-50:hover { + .lg\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .lg\:hover\:via-indigo-100:hover { + .lg\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .lg\:hover\:via-indigo-200:hover { + .lg\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .lg\:hover\:via-indigo-300:hover { + .lg\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .lg\:hover\:via-indigo-400:hover { + .lg\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .lg\:hover\:via-indigo-500:hover { + .lg\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .lg\:hover\:via-indigo-600:hover { + .lg\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .lg\:hover\:via-indigo-700:hover { + .lg\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .lg\:hover\:via-indigo-800:hover { + .lg\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .lg\:hover\:via-indigo-900:hover { + .lg\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .lg\:hover\:via-purple-50:hover { + .lg\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .lg\:hover\:via-purple-100:hover { + .lg\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .lg\:hover\:via-purple-200:hover { + .lg\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .lg\:hover\:via-purple-300:hover { + .lg\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .lg\:hover\:via-purple-400:hover { + .lg\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .lg\:hover\:via-purple-500:hover { + .lg\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .lg\:hover\:via-purple-600:hover { + .lg\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .lg\:hover\:via-purple-700:hover { + .lg\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .lg\:hover\:via-purple-800:hover { + .lg\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .lg\:hover\:via-purple-900:hover { + .lg\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .lg\:hover\:via-pink-50:hover { + .lg\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .lg\:hover\:via-pink-100:hover { + .lg\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .lg\:hover\:via-pink-200:hover { + .lg\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .lg\:hover\:via-pink-300:hover { + .lg\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .lg\:hover\:via-pink-400:hover { + .lg\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .lg\:hover\:via-pink-500:hover { + .lg\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .lg\:hover\:via-pink-600:hover { + .lg\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .lg\:hover\:via-pink-700:hover { + .lg\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .lg\:hover\:via-pink-800:hover { + .lg\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .lg\:hover\:via-pink-900:hover { + .lg\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .lg\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; - } - - .lg\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; - } - - .lg\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; - } - - .lg\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; - } - - .lg\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; - } - - .lg\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; - } - - .lg\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; - } - - .lg\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; - } - - .lg\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; - } - - .lg\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; - } - - .lg\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; - } - - .lg\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; - } - - .lg\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; - } - - .lg\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; - } - - .lg\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; - } - - .lg\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; - } - - .lg\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; - } - - .lg\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; - } - - .lg\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; - } - - .lg\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; - } - - .lg\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; - } - - .lg\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; - } - - .lg\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; - } - - .lg\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; - } - - .lg\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; - } - - .lg\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; - } - - .lg\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; - } - - .lg\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; - } - - .lg\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; - } - - .lg\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; - } - - .lg\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; - } - - .lg\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; - } - - .lg\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; - } - - .lg\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; - } - - .lg\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; - } - - .lg\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; - } - - .lg\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; - } - - .lg\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; - } - - .lg\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; - } - - .lg\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; - } - - .lg\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; - } - - .lg\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; - } - - .lg\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; - } - - .lg\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; - } - - .lg\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; - } - - .lg\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; - } - - .lg\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; - } - - .lg\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; - } - - .lg\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; - } - - .lg\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; - } - - .lg\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; - } - - .lg\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; - } - - .lg\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; - } - - .lg\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; - } - - .lg\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; - } - - .lg\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; - } - - .lg\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; - } - - .lg\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; - } - - .lg\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; - } - - .lg\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; - } - - .lg\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; - } - - .lg\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; - } - - .lg\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; - } - - .lg\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; - } - - .lg\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; - } - - .lg\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; - } - - .lg\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; - } - - .lg\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; - } - - .lg\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; - } - - .lg\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; - } - - .lg\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; - } - - .lg\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; - } - - .lg\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; - } - - .lg\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; - } - - .lg\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; - } - - .lg\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; - } - - .lg\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; - } - - .lg\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; - } - - .lg\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; - } - - .lg\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; - } - - .lg\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; - } - - .lg\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; - } - - .lg\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; - } - - .lg\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; - } - - .lg\:focus\:from-transparent:focus { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:focus\:from-current:focus { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:focus\:from-black:focus { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .lg\:focus\:from-white:focus { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .lg\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .lg\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .lg\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .lg\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .lg\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .lg\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .lg\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .lg\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .lg\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .lg\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .lg\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .lg\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .lg\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .lg\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .lg\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .lg\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .lg\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .lg\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .lg\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .lg\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .lg\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .lg\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .lg\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .lg\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .lg\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .lg\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .lg\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .lg\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .lg\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .lg\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .lg\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .lg\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .lg\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .lg\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .lg\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .lg\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .lg\:focus\:from-green-600:focus { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .lg\:focus\:from-green-700:focus { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .lg\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .lg\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .lg\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .lg\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .lg\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .lg\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .lg\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .lg\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .lg\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .lg\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .lg\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .lg\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .lg\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .lg\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .lg\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .lg\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .lg\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .lg\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .lg\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .lg\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .lg\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .lg\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .lg\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .lg\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .lg\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .lg\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .lg\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .lg\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .lg\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .lg\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .lg\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .lg\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .lg\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .lg\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .lg\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .lg\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .lg\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .lg\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .lg\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .lg\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .lg\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .lg\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .lg\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .lg\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .lg\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .lg\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .lg\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .lg\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .lg\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .lg\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .lg\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .lg\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .lg\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .lg\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .lg\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .lg\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .lg\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .lg\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .lg\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .lg\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .lg\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .lg\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } .lg\:focus\:via-transparent:focus { @@ -108030,6 +107422,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } + .lg\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .lg\:to-current { + --tw-gradient-to: currentColor !important; + } + + .lg\:to-black { + --tw-gradient-to: #000 !important; + } + + .lg\:to-white { + --tw-gradient-to: #fff !important; + } + + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .lg\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .lg\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .lg\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .lg\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .lg\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .lg\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .lg\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .lg\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .lg\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .lg\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .lg\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .lg\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .lg\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .lg\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .lg\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .lg\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .lg\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .lg\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .lg\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .lg\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .lg\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .lg\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .lg\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .lg\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .lg\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .lg\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .lg\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .lg\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .lg\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .lg\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .lg\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .lg\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .lg\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .lg\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .lg\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .lg\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .lg\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .lg\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .lg\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .lg\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .lg\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .lg\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .lg\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .lg\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .lg\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .lg\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .lg\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .lg\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .lg\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .lg\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .lg\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .lg\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .lg\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .lg\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .lg\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .lg\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .lg\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .lg\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .lg\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .lg\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .lg\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .lg\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .lg\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .lg\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .lg\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .lg\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .lg\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .lg\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .lg\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .lg\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .lg\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .lg\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .lg\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .lg\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .lg\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .lg\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .lg\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .lg\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .lg\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .lg\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .lg\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .lg\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .lg\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .lg\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .lg\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .lg\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .lg\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .lg\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .lg\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .lg\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .lg\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .lg\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + .lg\:focus\:to-transparent:focus { --tw-gradient-to: transparent !important; } @@ -114039,10 +114103,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:ring-inset { - --tw-ring-inset: inset !important; - } - .lg\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -114079,10 +114139,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .lg\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !important; - } - .lg\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -114119,6 +114175,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } + .lg\:ring-inset { + --tw-ring-inset: inset !important; + } + + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + .lg\:focus\:ring-inset:focus { --tw-ring-inset: inset !important; } @@ -116879,6 +116943,38 @@ video { backdrop-filter: none !important; } + .lg\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0) !important; + } + + .lg\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px) !important; + } + + .lg\:backdrop-blur { + --tw-backdrop-blur: blur(8px) !important; + } + + .lg\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px) !important; + } + + .lg\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px) !important; + } + + .lg\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px) !important; + } + + .lg\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px) !important; + } + + .lg\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px) !important; + } + .lg\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0) !important; } @@ -117788,116 +117884,541 @@ video { left: -0.375rem !important; } - .xl\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; + .xl\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .xl\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .xl\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .xl\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .xl\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .xl\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .xl\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .xl\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .xl\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .xl\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .xl\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .xl\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .xl\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .xl\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .xl\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .xl\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .xl\:inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .xl\:inset-x-1 { + left: 0.25rem !important; + right: 0.25rem !important; + } + + .xl\:inset-x-2 { + left: 0.5rem !important; + right: 0.5rem !important; + } + + .xl\:inset-x-3 { + left: 0.75rem !important; + right: 0.75rem !important; + } + + .xl\:inset-x-4 { + left: 1rem !important; + right: 1rem !important; + } + + .xl\:inset-x-5 { + left: 1.25rem !important; + right: 1.25rem !important; + } + + .xl\:inset-x-6 { + left: 1.5rem !important; + right: 1.5rem !important; + } + + .xl\:inset-x-7 { + left: 1.75rem !important; + right: 1.75rem !important; + } + + .xl\:inset-x-8 { + left: 2rem !important; + right: 2rem !important; + } + + .xl\:inset-x-9 { + left: 2.25rem !important; + right: 2.25rem !important; + } + + .xl\:inset-x-10 { + left: 2.5rem !important; + right: 2.5rem !important; + } + + .xl\:inset-x-11 { + left: 2.75rem !important; + right: 2.75rem !important; + } + + .xl\:inset-x-12 { + left: 3rem !important; + right: 3rem !important; + } + + .xl\:inset-x-14 { + left: 3.5rem !important; + right: 3.5rem !important; + } + + .xl\:inset-x-16 { + left: 4rem !important; + right: 4rem !important; + } + + .xl\:inset-x-20 { + left: 5rem !important; + right: 5rem !important; + } + + .xl\:inset-x-24 { + left: 6rem !important; + right: 6rem !important; + } + + .xl\:inset-x-28 { + left: 7rem !important; + right: 7rem !important; + } + + .xl\:inset-x-32 { + left: 8rem !important; + right: 8rem !important; + } + + .xl\:inset-x-36 { + left: 9rem !important; + right: 9rem !important; + } + + .xl\:inset-x-40 { + left: 10rem !important; + right: 10rem !important; + } + + .xl\:inset-x-44 { + left: 11rem !important; + right: 11rem !important; + } + + .xl\:inset-x-48 { + left: 12rem !important; + right: 12rem !important; + } + + .xl\:inset-x-52 { + left: 13rem !important; + right: 13rem !important; + } + + .xl\:inset-x-56 { + left: 14rem !important; + right: 14rem !important; + } + + .xl\:inset-x-60 { + left: 15rem !important; + right: 15rem !important; + } + + .xl\:inset-x-64 { + left: 16rem !important; + right: 16rem !important; + } + + .xl\:inset-x-72 { + left: 18rem !important; + right: 18rem !important; + } + + .xl\:inset-x-80 { + left: 20rem !important; + right: 20rem !important; + } + + .xl\:inset-x-96 { + left: 24rem !important; + right: 24rem !important; + } + + .xl\:inset-x-auto { + left: auto !important; + right: auto !important; + } + + .xl\:inset-x-px { + left: 1px !important; + right: 1px !important; + } + + .xl\:inset-x-0\.5 { + left: 0.125rem !important; + right: 0.125rem !important; + } + + .xl\:inset-x-1\.5 { + left: 0.375rem !important; + right: 0.375rem !important; + } + + .xl\:inset-x-2\.5 { + left: 0.625rem !important; + right: 0.625rem !important; + } + + .xl\:inset-x-3\.5 { + left: 0.875rem !important; + right: 0.875rem !important; + } + + .xl\:-inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .xl\:-inset-x-1 { + left: -0.25rem !important; + right: -0.25rem !important; + } + + .xl\:-inset-x-2 { + left: -0.5rem !important; + right: -0.5rem !important; + } + + .xl\:-inset-x-3 { + left: -0.75rem !important; + right: -0.75rem !important; + } + + .xl\:-inset-x-4 { + left: -1rem !important; + right: -1rem !important; + } + + .xl\:-inset-x-5 { + left: -1.25rem !important; + right: -1.25rem !important; + } + + .xl\:-inset-x-6 { + left: -1.5rem !important; + right: -1.5rem !important; + } + + .xl\:-inset-x-7 { + left: -1.75rem !important; + right: -1.75rem !important; + } + + .xl\:-inset-x-8 { + left: -2rem !important; + right: -2rem !important; + } + + .xl\:-inset-x-9 { + left: -2.25rem !important; + right: -2.25rem !important; + } + + .xl\:-inset-x-10 { + left: -2.5rem !important; + right: -2.5rem !important; + } + + .xl\:-inset-x-11 { + left: -2.75rem !important; + right: -2.75rem !important; + } + + .xl\:-inset-x-12 { + left: -3rem !important; + right: -3rem !important; + } + + .xl\:-inset-x-14 { + left: -3.5rem !important; + right: -3.5rem !important; + } + + .xl\:-inset-x-16 { + left: -4rem !important; + right: -4rem !important; + } + + .xl\:-inset-x-20 { + left: -5rem !important; + right: -5rem !important; + } + + .xl\:-inset-x-24 { + left: -6rem !important; + right: -6rem !important; + } + + .xl\:-inset-x-28 { + left: -7rem !important; + right: -7rem !important; + } + + .xl\:-inset-x-32 { + left: -8rem !important; + right: -8rem !important; + } + + .xl\:-inset-x-36 { + left: -9rem !important; + right: -9rem !important; + } + + .xl\:-inset-x-40 { + left: -10rem !important; + right: -10rem !important; + } + + .xl\:-inset-x-44 { + left: -11rem !important; + right: -11rem !important; + } + + .xl\:-inset-x-48 { + left: -12rem !important; + right: -12rem !important; + } + + .xl\:-inset-x-52 { + left: -13rem !important; + right: -13rem !important; + } + + .xl\:-inset-x-56 { + left: -14rem !important; + right: -14rem !important; + } + + .xl\:-inset-x-60 { + left: -15rem !important; + right: -15rem !important; + } + + .xl\:-inset-x-64 { + left: -16rem !important; + right: -16rem !important; + } + + .xl\:-inset-x-72 { + left: -18rem !important; + right: -18rem !important; + } + + .xl\:-inset-x-80 { + left: -20rem !important; + right: -20rem !important; + } + + .xl\:-inset-x-96 { + left: -24rem !important; + right: -24rem !important; + } + + .xl\:-inset-x-px { + left: -1px !important; + right: -1px !important; + } + + .xl\:-inset-x-0\.5 { + left: -0.125rem !important; + right: -0.125rem !important; + } + + .xl\:-inset-x-1\.5 { + left: -0.375rem !important; + right: -0.375rem !important; + } + + .xl\:-inset-x-2\.5 { left: -0.625rem !important; + right: -0.625rem !important; } - .xl\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; + .xl\:-inset-x-3\.5 { left: -0.875rem !important; + right: -0.875rem !important; } - .xl\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .xl\:inset-x-1\/2 { left: 50% !important; + right: 50% !important; } - .xl\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; + .xl\:inset-x-1\/3 { left: 33.333333% !important; + right: 33.333333% !important; } - .xl\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; + .xl\:inset-x-2\/3 { left: 66.666667% !important; + right: 66.666667% !important; } - .xl\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; + .xl\:inset-x-1\/4 { left: 25% !important; + right: 25% !important; } - .xl\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .xl\:inset-x-2\/4 { left: 50% !important; + right: 50% !important; } - .xl\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; + .xl\:inset-x-3\/4 { left: 75% !important; + right: 75% !important; } - .xl\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; + .xl\:inset-x-full { left: 100% !important; + right: 100% !important; } - .xl\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .xl\:-inset-x-1\/2 { left: -50% !important; + right: -50% !important; } - .xl\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; + .xl\:-inset-x-1\/3 { left: -33.333333% !important; + right: -33.333333% !important; } - .xl\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; + .xl\:-inset-x-2\/3 { left: -66.666667% !important; + right: -66.666667% !important; } - .xl\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; + .xl\:-inset-x-1\/4 { left: -25% !important; + right: -25% !important; } - .xl\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .xl\:-inset-x-2\/4 { left: -50% !important; + right: -50% !important; } - .xl\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; + .xl\:-inset-x-3\/4 { left: -75% !important; + right: -75% !important; } - .xl\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; + .xl\:-inset-x-full { left: -100% !important; + right: -100% !important; } .xl\:inset-y-0 { @@ -117905,2205 +118426,1780 @@ video { bottom: 0px !important; } - .xl\:inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .xl\:inset-y-1 { top: 0.25rem !important; bottom: 0.25rem !important; } - .xl\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; - } - .xl\:inset-y-2 { top: 0.5rem !important; bottom: 0.5rem !important; } - .xl\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; - } - .xl\:inset-y-3 { top: 0.75rem !important; bottom: 0.75rem !important; } - .xl\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; - } - .xl\:inset-y-4 { top: 1rem !important; bottom: 1rem !important; } - .xl\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; - } - .xl\:inset-y-5 { top: 1.25rem !important; bottom: 1.25rem !important; } - .xl\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; - } - .xl\:inset-y-6 { top: 1.5rem !important; bottom: 1.5rem !important; } - .xl\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; - } - .xl\:inset-y-7 { top: 1.75rem !important; bottom: 1.75rem !important; } - .xl\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; - } - .xl\:inset-y-8 { top: 2rem !important; bottom: 2rem !important; } - .xl\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; - } - .xl\:inset-y-9 { top: 2.25rem !important; bottom: 2.25rem !important; } - .xl\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; - } - .xl\:inset-y-10 { top: 2.5rem !important; bottom: 2.5rem !important; } - .xl\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; - } - .xl\:inset-y-11 { top: 2.75rem !important; bottom: 2.75rem !important; } - .xl\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; - } - .xl\:inset-y-12 { top: 3rem !important; bottom: 3rem !important; } - .xl\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; - } - .xl\:inset-y-14 { top: 3.5rem !important; bottom: 3.5rem !important; } - .xl\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; - } - .xl\:inset-y-16 { top: 4rem !important; bottom: 4rem !important; } - .xl\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; - } - .xl\:inset-y-20 { top: 5rem !important; bottom: 5rem !important; } - .xl\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; - } - .xl\:inset-y-24 { top: 6rem !important; bottom: 6rem !important; } - .xl\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; - } - .xl\:inset-y-28 { top: 7rem !important; bottom: 7rem !important; } - .xl\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; - } - .xl\:inset-y-32 { top: 8rem !important; bottom: 8rem !important; } - .xl\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; - } - .xl\:inset-y-36 { top: 9rem !important; bottom: 9rem !important; } - .xl\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; - } - .xl\:inset-y-40 { top: 10rem !important; bottom: 10rem !important; } - .xl\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; - } - .xl\:inset-y-44 { top: 11rem !important; bottom: 11rem !important; } - .xl\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; - } - .xl\:inset-y-48 { top: 12rem !important; bottom: 12rem !important; } - .xl\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; - } - .xl\:inset-y-52 { top: 13rem !important; bottom: 13rem !important; } - .xl\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; - } - .xl\:inset-y-56 { top: 14rem !important; bottom: 14rem !important; } - .xl\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; - } - .xl\:inset-y-60 { top: 15rem !important; bottom: 15rem !important; } - .xl\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; - } - .xl\:inset-y-64 { top: 16rem !important; bottom: 16rem !important; } - .xl\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; - } - .xl\:inset-y-72 { top: 18rem !important; bottom: 18rem !important; } - .xl\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; - } - .xl\:inset-y-80 { top: 20rem !important; bottom: 20rem !important; } - .xl\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; - } - .xl\:inset-y-96 { top: 24rem !important; bottom: 24rem !important; } - .xl\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; - } - .xl\:inset-y-auto { top: auto !important; bottom: auto !important; } - .xl\:inset-x-auto { - right: auto !important; - left: auto !important; - } - .xl\:inset-y-px { top: 1px !important; bottom: 1px !important; } - .xl\:inset-x-px { - right: 1px !important; - left: 1px !important; - } - .xl\:inset-y-0\.5 { top: 0.125rem !important; bottom: 0.125rem !important; } - .xl\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; - } - .xl\:inset-y-1\.5 { top: 0.375rem !important; bottom: 0.375rem !important; } - .xl\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; - } - .xl\:inset-y-2\.5 { top: 0.625rem !important; bottom: 0.625rem !important; } - .xl\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; - } - .xl\:inset-y-3\.5 { top: 0.875rem !important; bottom: 0.875rem !important; } - .xl\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; - } - .xl\:-inset-y-0 { top: 0px !important; bottom: 0px !important; } - .xl\:-inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .xl\:-inset-y-1 { top: -0.25rem !important; bottom: -0.25rem !important; } - .xl\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; - } - .xl\:-inset-y-2 { top: -0.5rem !important; bottom: -0.5rem !important; } - .xl\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; - } - .xl\:-inset-y-3 { top: -0.75rem !important; bottom: -0.75rem !important; } - .xl\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; - } - .xl\:-inset-y-4 { top: -1rem !important; bottom: -1rem !important; } - .xl\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; - } - .xl\:-inset-y-5 { top: -1.25rem !important; bottom: -1.25rem !important; } - .xl\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; - } - .xl\:-inset-y-6 { top: -1.5rem !important; bottom: -1.5rem !important; } - .xl\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; - } - .xl\:-inset-y-7 { top: -1.75rem !important; bottom: -1.75rem !important; } - .xl\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; - } - .xl\:-inset-y-8 { top: -2rem !important; bottom: -2rem !important; } - .xl\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; - } - .xl\:-inset-y-9 { top: -2.25rem !important; bottom: -2.25rem !important; } - .xl\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; - } - .xl\:-inset-y-10 { top: -2.5rem !important; bottom: -2.5rem !important; } - .xl\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; - } - .xl\:-inset-y-11 { top: -2.75rem !important; bottom: -2.75rem !important; } - .xl\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; - } - .xl\:-inset-y-12 { top: -3rem !important; bottom: -3rem !important; } - .xl\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; - } - .xl\:-inset-y-14 { top: -3.5rem !important; bottom: -3.5rem !important; } - .xl\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; - } - .xl\:-inset-y-16 { top: -4rem !important; bottom: -4rem !important; } - .xl\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; - } - .xl\:-inset-y-20 { top: -5rem !important; bottom: -5rem !important; } - .xl\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; - } - .xl\:-inset-y-24 { top: -6rem !important; bottom: -6rem !important; } - .xl\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; - } - .xl\:-inset-y-28 { top: -7rem !important; bottom: -7rem !important; } - .xl\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; - } - .xl\:-inset-y-32 { top: -8rem !important; bottom: -8rem !important; } - .xl\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; - } - .xl\:-inset-y-36 { top: -9rem !important; bottom: -9rem !important; } - .xl\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; - } - .xl\:-inset-y-40 { top: -10rem !important; bottom: -10rem !important; } - .xl\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; - } - .xl\:-inset-y-44 { top: -11rem !important; bottom: -11rem !important; } - .xl\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; - } - .xl\:-inset-y-48 { top: -12rem !important; bottom: -12rem !important; } - .xl\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; - } - .xl\:-inset-y-52 { top: -13rem !important; bottom: -13rem !important; } - .xl\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; - } - .xl\:-inset-y-56 { top: -14rem !important; bottom: -14rem !important; } - .xl\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; - } - .xl\:-inset-y-60 { top: -15rem !important; bottom: -15rem !important; } - .xl\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; - } - .xl\:-inset-y-64 { top: -16rem !important; bottom: -16rem !important; } - .xl\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; - } - .xl\:-inset-y-72 { top: -18rem !important; bottom: -18rem !important; } - .xl\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; - } - .xl\:-inset-y-80 { top: -20rem !important; bottom: -20rem !important; } - .xl\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; - } - .xl\:-inset-y-96 { top: -24rem !important; bottom: -24rem !important; } - .xl\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; - } - .xl\:-inset-y-px { top: -1px !important; bottom: -1px !important; } - .xl\:-inset-x-px { - right: -1px !important; - left: -1px !important; - } - .xl\:-inset-y-0\.5 { top: -0.125rem !important; bottom: -0.125rem !important; } - .xl\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; - } - .xl\:-inset-y-1\.5 { top: -0.375rem !important; bottom: -0.375rem !important; } - .xl\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; - } - .xl\:-inset-y-2\.5 { top: -0.625rem !important; bottom: -0.625rem !important; } - .xl\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; - } - .xl\:-inset-y-3\.5 { top: -0.875rem !important; bottom: -0.875rem !important; } - .xl\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; - } - .xl\:inset-y-1\/2 { top: 50% !important; bottom: 50% !important; } - .xl\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; - } - .xl\:inset-y-1\/3 { top: 33.333333% !important; bottom: 33.333333% !important; } - .xl\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; - } - .xl\:inset-y-2\/3 { top: 66.666667% !important; bottom: 66.666667% !important; } - .xl\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; - } - .xl\:inset-y-1\/4 { top: 25% !important; bottom: 25% !important; } - .xl\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; - } - .xl\:inset-y-2\/4 { top: 50% !important; bottom: 50% !important; } - .xl\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; - } - .xl\:inset-y-3\/4 { top: 75% !important; bottom: 75% !important; } - .xl\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; - } - .xl\:inset-y-full { top: 100% !important; bottom: 100% !important; } - .xl\:inset-x-full { - right: 100% !important; - left: 100% !important; - } - .xl\:-inset-y-1\/2 { top: -50% !important; bottom: -50% !important; } - .xl\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; - } - .xl\:-inset-y-1\/3 { top: -33.333333% !important; bottom: -33.333333% !important; } - .xl\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; - } - .xl\:-inset-y-2\/3 { top: -66.666667% !important; bottom: -66.666667% !important; } - .xl\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; - } - .xl\:-inset-y-1\/4 { top: -25% !important; bottom: -25% !important; } - .xl\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; - } - .xl\:-inset-y-2\/4 { top: -50% !important; bottom: -50% !important; } - .xl\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; - } - .xl\:-inset-y-3\/4 { top: -75% !important; bottom: -75% !important; } - .xl\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; - } - .xl\:-inset-y-full { top: -100% !important; bottom: -100% !important; } - .xl\:-inset-x-full { - right: -100% !important; - left: -100% !important; - } - .xl\:top-0 { top: 0px !important; } - .xl\:right-0 { - right: 0px !important; + .xl\:top-1 { + top: 0.25rem !important; } - .xl\:bottom-0 { - bottom: 0px !important; + .xl\:top-2 { + top: 0.5rem !important; } - .xl\:left-0 { - left: 0px !important; + .xl\:top-3 { + top: 0.75rem !important; } - .xl\:top-1 { - top: 0.25rem !important; + .xl\:top-4 { + top: 1rem !important; } - .xl\:right-1 { - right: 0.25rem !important; + .xl\:top-5 { + top: 1.25rem !important; } - .xl\:bottom-1 { - bottom: 0.25rem !important; + .xl\:top-6 { + top: 1.5rem !important; } - .xl\:left-1 { - left: 0.25rem !important; + .xl\:top-7 { + top: 1.75rem !important; } - .xl\:top-2 { - top: 0.5rem !important; + .xl\:top-8 { + top: 2rem !important; } - .xl\:right-2 { - right: 0.5rem !important; + .xl\:top-9 { + top: 2.25rem !important; } - .xl\:bottom-2 { - bottom: 0.5rem !important; + .xl\:top-10 { + top: 2.5rem !important; } - .xl\:left-2 { - left: 0.5rem !important; + .xl\:top-11 { + top: 2.75rem !important; } - .xl\:top-3 { - top: 0.75rem !important; + .xl\:top-12 { + top: 3rem !important; } - .xl\:right-3 { - right: 0.75rem !important; + .xl\:top-14 { + top: 3.5rem !important; } - .xl\:bottom-3 { - bottom: 0.75rem !important; + .xl\:top-16 { + top: 4rem !important; } - .xl\:left-3 { - left: 0.75rem !important; + .xl\:top-20 { + top: 5rem !important; } - .xl\:top-4 { - top: 1rem !important; + .xl\:top-24 { + top: 6rem !important; } - .xl\:right-4 { - right: 1rem !important; + .xl\:top-28 { + top: 7rem !important; } - .xl\:bottom-4 { - bottom: 1rem !important; + .xl\:top-32 { + top: 8rem !important; } - .xl\:left-4 { - left: 1rem !important; + .xl\:top-36 { + top: 9rem !important; } - .xl\:top-5 { - top: 1.25rem !important; + .xl\:top-40 { + top: 10rem !important; } - .xl\:right-5 { - right: 1.25rem !important; + .xl\:top-44 { + top: 11rem !important; } - .xl\:bottom-5 { - bottom: 1.25rem !important; + .xl\:top-48 { + top: 12rem !important; } - .xl\:left-5 { - left: 1.25rem !important; + .xl\:top-52 { + top: 13rem !important; } - .xl\:top-6 { - top: 1.5rem !important; + .xl\:top-56 { + top: 14rem !important; } - .xl\:right-6 { - right: 1.5rem !important; + .xl\:top-60 { + top: 15rem !important; } - .xl\:bottom-6 { - bottom: 1.5rem !important; + .xl\:top-64 { + top: 16rem !important; } - .xl\:left-6 { - left: 1.5rem !important; + .xl\:top-72 { + top: 18rem !important; } - .xl\:top-7 { - top: 1.75rem !important; + .xl\:top-80 { + top: 20rem !important; } - .xl\:right-7 { - right: 1.75rem !important; + .xl\:top-96 { + top: 24rem !important; } - .xl\:bottom-7 { - bottom: 1.75rem !important; + .xl\:top-auto { + top: auto !important; } - .xl\:left-7 { - left: 1.75rem !important; + .xl\:top-px { + top: 1px !important; } - .xl\:top-8 { - top: 2rem !important; + .xl\:top-0\.5 { + top: 0.125rem !important; } - .xl\:right-8 { - right: 2rem !important; + .xl\:top-1\.5 { + top: 0.375rem !important; } - .xl\:bottom-8 { - bottom: 2rem !important; + .xl\:top-2\.5 { + top: 0.625rem !important; } - .xl\:left-8 { - left: 2rem !important; + .xl\:top-3\.5 { + top: 0.875rem !important; } - .xl\:top-9 { - top: 2.25rem !important; + .xl\:-top-0 { + top: 0px !important; } - .xl\:right-9 { - right: 2.25rem !important; + .xl\:-top-1 { + top: -0.25rem !important; } - .xl\:bottom-9 { - bottom: 2.25rem !important; + .xl\:-top-2 { + top: -0.5rem !important; } - .xl\:left-9 { - left: 2.25rem !important; + .xl\:-top-3 { + top: -0.75rem !important; } - .xl\:top-10 { - top: 2.5rem !important; + .xl\:-top-4 { + top: -1rem !important; } - .xl\:right-10 { - right: 2.5rem !important; + .xl\:-top-5 { + top: -1.25rem !important; } - .xl\:bottom-10 { - bottom: 2.5rem !important; + .xl\:-top-6 { + top: -1.5rem !important; } - .xl\:left-10 { - left: 2.5rem !important; + .xl\:-top-7 { + top: -1.75rem !important; } - .xl\:top-11 { - top: 2.75rem !important; + .xl\:-top-8 { + top: -2rem !important; } - .xl\:right-11 { - right: 2.75rem !important; + .xl\:-top-9 { + top: -2.25rem !important; } - .xl\:bottom-11 { - bottom: 2.75rem !important; + .xl\:-top-10 { + top: -2.5rem !important; } - .xl\:left-11 { - left: 2.75rem !important; + .xl\:-top-11 { + top: -2.75rem !important; } - .xl\:top-12 { - top: 3rem !important; + .xl\:-top-12 { + top: -3rem !important; } - .xl\:right-12 { - right: 3rem !important; + .xl\:-top-14 { + top: -3.5rem !important; } - .xl\:bottom-12 { - bottom: 3rem !important; + .xl\:-top-16 { + top: -4rem !important; } - .xl\:left-12 { - left: 3rem !important; + .xl\:-top-20 { + top: -5rem !important; } - .xl\:top-14 { - top: 3.5rem !important; + .xl\:-top-24 { + top: -6rem !important; } - .xl\:right-14 { - right: 3.5rem !important; + .xl\:-top-28 { + top: -7rem !important; } - .xl\:bottom-14 { - bottom: 3.5rem !important; + .xl\:-top-32 { + top: -8rem !important; } - .xl\:left-14 { - left: 3.5rem !important; + .xl\:-top-36 { + top: -9rem !important; } - .xl\:top-16 { - top: 4rem !important; + .xl\:-top-40 { + top: -10rem !important; } - .xl\:right-16 { - right: 4rem !important; + .xl\:-top-44 { + top: -11rem !important; } - .xl\:bottom-16 { - bottom: 4rem !important; + .xl\:-top-48 { + top: -12rem !important; } - .xl\:left-16 { - left: 4rem !important; + .xl\:-top-52 { + top: -13rem !important; } - .xl\:top-20 { - top: 5rem !important; + .xl\:-top-56 { + top: -14rem !important; } - .xl\:right-20 { - right: 5rem !important; + .xl\:-top-60 { + top: -15rem !important; } - .xl\:bottom-20 { - bottom: 5rem !important; + .xl\:-top-64 { + top: -16rem !important; } - .xl\:left-20 { - left: 5rem !important; + .xl\:-top-72 { + top: -18rem !important; } - .xl\:top-24 { - top: 6rem !important; + .xl\:-top-80 { + top: -20rem !important; } - .xl\:right-24 { - right: 6rem !important; + .xl\:-top-96 { + top: -24rem !important; } - .xl\:bottom-24 { - bottom: 6rem !important; + .xl\:-top-px { + top: -1px !important; } - .xl\:left-24 { - left: 6rem !important; + .xl\:-top-0\.5 { + top: -0.125rem !important; } - .xl\:top-28 { - top: 7rem !important; + .xl\:-top-1\.5 { + top: -0.375rem !important; } - .xl\:right-28 { - right: 7rem !important; + .xl\:-top-2\.5 { + top: -0.625rem !important; } - .xl\:bottom-28 { - bottom: 7rem !important; + .xl\:-top-3\.5 { + top: -0.875rem !important; } - .xl\:left-28 { - left: 7rem !important; + .xl\:top-1\/2 { + top: 50% !important; } - .xl\:top-32 { - top: 8rem !important; + .xl\:top-1\/3 { + top: 33.333333% !important; } - .xl\:right-32 { - right: 8rem !important; + .xl\:top-2\/3 { + top: 66.666667% !important; } - .xl\:bottom-32 { - bottom: 8rem !important; + .xl\:top-1\/4 { + top: 25% !important; } - .xl\:left-32 { - left: 8rem !important; + .xl\:top-2\/4 { + top: 50% !important; } - .xl\:top-36 { - top: 9rem !important; + .xl\:top-3\/4 { + top: 75% !important; } - .xl\:right-36 { - right: 9rem !important; + .xl\:top-full { + top: 100% !important; } - .xl\:bottom-36 { - bottom: 9rem !important; + .xl\:-top-1\/2 { + top: -50% !important; } - .xl\:left-36 { - left: 9rem !important; + .xl\:-top-1\/3 { + top: -33.333333% !important; } - .xl\:top-40 { - top: 10rem !important; + .xl\:-top-2\/3 { + top: -66.666667% !important; } - .xl\:right-40 { - right: 10rem !important; + .xl\:-top-1\/4 { + top: -25% !important; } - .xl\:bottom-40 { - bottom: 10rem !important; + .xl\:-top-2\/4 { + top: -50% !important; } - .xl\:left-40 { - left: 10rem !important; + .xl\:-top-3\/4 { + top: -75% !important; } - .xl\:top-44 { - top: 11rem !important; + .xl\:-top-full { + top: -100% !important; } - .xl\:right-44 { - right: 11rem !important; + .xl\:right-0 { + right: 0px !important; } - .xl\:bottom-44 { - bottom: 11rem !important; + .xl\:right-1 { + right: 0.25rem !important; } - .xl\:left-44 { - left: 11rem !important; + .xl\:right-2 { + right: 0.5rem !important; } - .xl\:top-48 { - top: 12rem !important; + .xl\:right-3 { + right: 0.75rem !important; } - .xl\:right-48 { - right: 12rem !important; + .xl\:right-4 { + right: 1rem !important; } - .xl\:bottom-48 { - bottom: 12rem !important; + .xl\:right-5 { + right: 1.25rem !important; } - .xl\:left-48 { - left: 12rem !important; + .xl\:right-6 { + right: 1.5rem !important; } - .xl\:top-52 { - top: 13rem !important; + .xl\:right-7 { + right: 1.75rem !important; } - .xl\:right-52 { - right: 13rem !important; + .xl\:right-8 { + right: 2rem !important; } - .xl\:bottom-52 { - bottom: 13rem !important; + .xl\:right-9 { + right: 2.25rem !important; } - .xl\:left-52 { - left: 13rem !important; + .xl\:right-10 { + right: 2.5rem !important; } - .xl\:top-56 { - top: 14rem !important; + .xl\:right-11 { + right: 2.75rem !important; } - .xl\:right-56 { - right: 14rem !important; + .xl\:right-12 { + right: 3rem !important; } - .xl\:bottom-56 { - bottom: 14rem !important; + .xl\:right-14 { + right: 3.5rem !important; } - .xl\:left-56 { - left: 14rem !important; + .xl\:right-16 { + right: 4rem !important; } - .xl\:top-60 { - top: 15rem !important; + .xl\:right-20 { + right: 5rem !important; } - .xl\:right-60 { - right: 15rem !important; + .xl\:right-24 { + right: 6rem !important; } - .xl\:bottom-60 { - bottom: 15rem !important; + .xl\:right-28 { + right: 7rem !important; } - .xl\:left-60 { - left: 15rem !important; + .xl\:right-32 { + right: 8rem !important; } - .xl\:top-64 { - top: 16rem !important; + .xl\:right-36 { + right: 9rem !important; } - .xl\:right-64 { - right: 16rem !important; + .xl\:right-40 { + right: 10rem !important; } - .xl\:bottom-64 { - bottom: 16rem !important; + .xl\:right-44 { + right: 11rem !important; } - .xl\:left-64 { - left: 16rem !important; + .xl\:right-48 { + right: 12rem !important; } - .xl\:top-72 { - top: 18rem !important; + .xl\:right-52 { + right: 13rem !important; } - .xl\:right-72 { - right: 18rem !important; + .xl\:right-56 { + right: 14rem !important; } - .xl\:bottom-72 { - bottom: 18rem !important; + .xl\:right-60 { + right: 15rem !important; } - .xl\:left-72 { - left: 18rem !important; + .xl\:right-64 { + right: 16rem !important; } - .xl\:top-80 { - top: 20rem !important; + .xl\:right-72 { + right: 18rem !important; } .xl\:right-80 { right: 20rem !important; } - .xl\:bottom-80 { - bottom: 20rem !important; + .xl\:right-96 { + right: 24rem !important; } - .xl\:left-80 { - left: 20rem !important; + .xl\:right-auto { + right: auto !important; } - .xl\:top-96 { - top: 24rem !important; + .xl\:right-px { + right: 1px !important; } - .xl\:right-96 { - right: 24rem !important; + .xl\:right-0\.5 { + right: 0.125rem !important; } - .xl\:bottom-96 { - bottom: 24rem !important; + .xl\:right-1\.5 { + right: 0.375rem !important; } - .xl\:left-96 { - left: 24rem !important; + .xl\:right-2\.5 { + right: 0.625rem !important; } - .xl\:top-auto { - top: auto !important; + .xl\:right-3\.5 { + right: 0.875rem !important; } - .xl\:right-auto { - right: auto !important; + .xl\:-right-0 { + right: 0px !important; } - .xl\:bottom-auto { - bottom: auto !important; + .xl\:-right-1 { + right: -0.25rem !important; } - .xl\:left-auto { - left: auto !important; + .xl\:-right-2 { + right: -0.5rem !important; } - .xl\:top-px { - top: 1px !important; + .xl\:-right-3 { + right: -0.75rem !important; } - .xl\:right-px { - right: 1px !important; + .xl\:-right-4 { + right: -1rem !important; } - .xl\:bottom-px { - bottom: 1px !important; + .xl\:-right-5 { + right: -1.25rem !important; } - .xl\:left-px { - left: 1px !important; + .xl\:-right-6 { + right: -1.5rem !important; } - .xl\:top-0\.5 { - top: 0.125rem !important; + .xl\:-right-7 { + right: -1.75rem !important; } - .xl\:right-0\.5 { - right: 0.125rem !important; + .xl\:-right-8 { + right: -2rem !important; } - .xl\:bottom-0\.5 { - bottom: 0.125rem !important; + .xl\:-right-9 { + right: -2.25rem !important; } - .xl\:left-0\.5 { - left: 0.125rem !important; + .xl\:-right-10 { + right: -2.5rem !important; } - .xl\:top-1\.5 { - top: 0.375rem !important; + .xl\:-right-11 { + right: -2.75rem !important; } - .xl\:right-1\.5 { - right: 0.375rem !important; + .xl\:-right-12 { + right: -3rem !important; } - .xl\:bottom-1\.5 { - bottom: 0.375rem !important; + .xl\:-right-14 { + right: -3.5rem !important; } - .xl\:left-1\.5 { - left: 0.375rem !important; + .xl\:-right-16 { + right: -4rem !important; } - .xl\:top-2\.5 { - top: 0.625rem !important; + .xl\:-right-20 { + right: -5rem !important; } - .xl\:right-2\.5 { - right: 0.625rem !important; + .xl\:-right-24 { + right: -6rem !important; } - .xl\:bottom-2\.5 { - bottom: 0.625rem !important; + .xl\:-right-28 { + right: -7rem !important; } - .xl\:left-2\.5 { - left: 0.625rem !important; + .xl\:-right-32 { + right: -8rem !important; } - .xl\:top-3\.5 { - top: 0.875rem !important; + .xl\:-right-36 { + right: -9rem !important; } - .xl\:right-3\.5 { - right: 0.875rem !important; + .xl\:-right-40 { + right: -10rem !important; } - .xl\:bottom-3\.5 { - bottom: 0.875rem !important; + .xl\:-right-44 { + right: -11rem !important; } - .xl\:left-3\.5 { - left: 0.875rem !important; + .xl\:-right-48 { + right: -12rem !important; } - .xl\:-top-0 { - top: 0px !important; + .xl\:-right-52 { + right: -13rem !important; } - .xl\:-right-0 { - right: 0px !important; + .xl\:-right-56 { + right: -14rem !important; } - .xl\:-bottom-0 { - bottom: 0px !important; + .xl\:-right-60 { + right: -15rem !important; } - .xl\:-left-0 { - left: 0px !important; + .xl\:-right-64 { + right: -16rem !important; } - .xl\:-top-1 { - top: -0.25rem !important; + .xl\:-right-72 { + right: -18rem !important; } - .xl\:-right-1 { - right: -0.25rem !important; + .xl\:-right-80 { + right: -20rem !important; } - .xl\:-bottom-1 { - bottom: -0.25rem !important; + .xl\:-right-96 { + right: -24rem !important; } - .xl\:-left-1 { - left: -0.25rem !important; + .xl\:-right-px { + right: -1px !important; } - .xl\:-top-2 { - top: -0.5rem !important; + .xl\:-right-0\.5 { + right: -0.125rem !important; } - .xl\:-right-2 { - right: -0.5rem !important; + .xl\:-right-1\.5 { + right: -0.375rem !important; } - .xl\:-bottom-2 { - bottom: -0.5rem !important; + .xl\:-right-2\.5 { + right: -0.625rem !important; } - .xl\:-left-2 { - left: -0.5rem !important; + .xl\:-right-3\.5 { + right: -0.875rem !important; } - .xl\:-top-3 { - top: -0.75rem !important; + .xl\:right-1\/2 { + right: 50% !important; } - .xl\:-right-3 { - right: -0.75rem !important; + .xl\:right-1\/3 { + right: 33.333333% !important; } - .xl\:-bottom-3 { - bottom: -0.75rem !important; + .xl\:right-2\/3 { + right: 66.666667% !important; } - .xl\:-left-3 { - left: -0.75rem !important; + .xl\:right-1\/4 { + right: 25% !important; } - .xl\:-top-4 { - top: -1rem !important; + .xl\:right-2\/4 { + right: 50% !important; } - .xl\:-right-4 { - right: -1rem !important; + .xl\:right-3\/4 { + right: 75% !important; } - .xl\:-bottom-4 { - bottom: -1rem !important; + .xl\:right-full { + right: 100% !important; } - .xl\:-left-4 { - left: -1rem !important; + .xl\:-right-1\/2 { + right: -50% !important; } - .xl\:-top-5 { - top: -1.25rem !important; + .xl\:-right-1\/3 { + right: -33.333333% !important; } - .xl\:-right-5 { - right: -1.25rem !important; + .xl\:-right-2\/3 { + right: -66.666667% !important; } - .xl\:-bottom-5 { - bottom: -1.25rem !important; + .xl\:-right-1\/4 { + right: -25% !important; } - .xl\:-left-5 { - left: -1.25rem !important; + .xl\:-right-2\/4 { + right: -50% !important; } - .xl\:-top-6 { - top: -1.5rem !important; + .xl\:-right-3\/4 { + right: -75% !important; } - .xl\:-right-6 { - right: -1.5rem !important; + .xl\:-right-full { + right: -100% !important; } - .xl\:-bottom-6 { - bottom: -1.5rem !important; + .xl\:bottom-0 { + bottom: 0px !important; } - .xl\:-left-6 { - left: -1.5rem !important; + .xl\:bottom-1 { + bottom: 0.25rem !important; } - .xl\:-top-7 { - top: -1.75rem !important; + .xl\:bottom-2 { + bottom: 0.5rem !important; } - .xl\:-right-7 { - right: -1.75rem !important; + .xl\:bottom-3 { + bottom: 0.75rem !important; } - .xl\:-bottom-7 { - bottom: -1.75rem !important; + .xl\:bottom-4 { + bottom: 1rem !important; } - .xl\:-left-7 { - left: -1.75rem !important; + .xl\:bottom-5 { + bottom: 1.25rem !important; } - .xl\:-top-8 { - top: -2rem !important; + .xl\:bottom-6 { + bottom: 1.5rem !important; } - .xl\:-right-8 { - right: -2rem !important; + .xl\:bottom-7 { + bottom: 1.75rem !important; } - .xl\:-bottom-8 { - bottom: -2rem !important; + .xl\:bottom-8 { + bottom: 2rem !important; } - .xl\:-left-8 { - left: -2rem !important; + .xl\:bottom-9 { + bottom: 2.25rem !important; } - .xl\:-top-9 { - top: -2.25rem !important; + .xl\:bottom-10 { + bottom: 2.5rem !important; } - .xl\:-right-9 { - right: -2.25rem !important; + .xl\:bottom-11 { + bottom: 2.75rem !important; } - .xl\:-bottom-9 { - bottom: -2.25rem !important; + .xl\:bottom-12 { + bottom: 3rem !important; } - .xl\:-left-9 { - left: -2.25rem !important; + .xl\:bottom-14 { + bottom: 3.5rem !important; } - .xl\:-top-10 { - top: -2.5rem !important; + .xl\:bottom-16 { + bottom: 4rem !important; } - .xl\:-right-10 { - right: -2.5rem !important; + .xl\:bottom-20 { + bottom: 5rem !important; } - .xl\:-bottom-10 { - bottom: -2.5rem !important; + .xl\:bottom-24 { + bottom: 6rem !important; } - .xl\:-left-10 { - left: -2.5rem !important; + .xl\:bottom-28 { + bottom: 7rem !important; } - .xl\:-top-11 { - top: -2.75rem !important; + .xl\:bottom-32 { + bottom: 8rem !important; } - .xl\:-right-11 { - right: -2.75rem !important; + .xl\:bottom-36 { + bottom: 9rem !important; } - .xl\:-bottom-11 { - bottom: -2.75rem !important; + .xl\:bottom-40 { + bottom: 10rem !important; } - .xl\:-left-11 { - left: -2.75rem !important; + .xl\:bottom-44 { + bottom: 11rem !important; } - .xl\:-top-12 { - top: -3rem !important; + .xl\:bottom-48 { + bottom: 12rem !important; } - .xl\:-right-12 { - right: -3rem !important; + .xl\:bottom-52 { + bottom: 13rem !important; } - .xl\:-bottom-12 { - bottom: -3rem !important; + .xl\:bottom-56 { + bottom: 14rem !important; } - .xl\:-left-12 { - left: -3rem !important; + .xl\:bottom-60 { + bottom: 15rem !important; } - .xl\:-top-14 { - top: -3.5rem !important; + .xl\:bottom-64 { + bottom: 16rem !important; } - .xl\:-right-14 { - right: -3.5rem !important; + .xl\:bottom-72 { + bottom: 18rem !important; } - .xl\:-bottom-14 { - bottom: -3.5rem !important; + .xl\:bottom-80 { + bottom: 20rem !important; } - .xl\:-left-14 { - left: -3.5rem !important; + .xl\:bottom-96 { + bottom: 24rem !important; } - .xl\:-top-16 { - top: -4rem !important; + .xl\:bottom-auto { + bottom: auto !important; } - .xl\:-right-16 { - right: -4rem !important; + .xl\:bottom-px { + bottom: 1px !important; } - .xl\:-bottom-16 { - bottom: -4rem !important; + .xl\:bottom-0\.5 { + bottom: 0.125rem !important; } - .xl\:-left-16 { - left: -4rem !important; + .xl\:bottom-1\.5 { + bottom: 0.375rem !important; } - .xl\:-top-20 { - top: -5rem !important; + .xl\:bottom-2\.5 { + bottom: 0.625rem !important; } - .xl\:-right-20 { - right: -5rem !important; + .xl\:bottom-3\.5 { + bottom: 0.875rem !important; } - .xl\:-bottom-20 { - bottom: -5rem !important; + .xl\:-bottom-0 { + bottom: 0px !important; } - .xl\:-left-20 { - left: -5rem !important; + .xl\:-bottom-1 { + bottom: -0.25rem !important; } - .xl\:-top-24 { - top: -6rem !important; + .xl\:-bottom-2 { + bottom: -0.5rem !important; } - .xl\:-right-24 { - right: -6rem !important; + .xl\:-bottom-3 { + bottom: -0.75rem !important; } - .xl\:-bottom-24 { - bottom: -6rem !important; + .xl\:-bottom-4 { + bottom: -1rem !important; } - .xl\:-left-24 { - left: -6rem !important; + .xl\:-bottom-5 { + bottom: -1.25rem !important; } - .xl\:-top-28 { - top: -7rem !important; + .xl\:-bottom-6 { + bottom: -1.5rem !important; } - .xl\:-right-28 { - right: -7rem !important; + .xl\:-bottom-7 { + bottom: -1.75rem !important; } - .xl\:-bottom-28 { - bottom: -7rem !important; + .xl\:-bottom-8 { + bottom: -2rem !important; } - .xl\:-left-28 { - left: -7rem !important; + .xl\:-bottom-9 { + bottom: -2.25rem !important; } - .xl\:-top-32 { - top: -8rem !important; + .xl\:-bottom-10 { + bottom: -2.5rem !important; } - .xl\:-right-32 { - right: -8rem !important; + .xl\:-bottom-11 { + bottom: -2.75rem !important; } - .xl\:-bottom-32 { - bottom: -8rem !important; + .xl\:-bottom-12 { + bottom: -3rem !important; } - .xl\:-left-32 { - left: -8rem !important; + .xl\:-bottom-14 { + bottom: -3.5rem !important; } - .xl\:-top-36 { - top: -9rem !important; + .xl\:-bottom-16 { + bottom: -4rem !important; } - .xl\:-right-36 { - right: -9rem !important; + .xl\:-bottom-20 { + bottom: -5rem !important; } - .xl\:-bottom-36 { - bottom: -9rem !important; + .xl\:-bottom-24 { + bottom: -6rem !important; } - .xl\:-left-36 { - left: -9rem !important; + .xl\:-bottom-28 { + bottom: -7rem !important; } - .xl\:-top-40 { - top: -10rem !important; + .xl\:-bottom-32 { + bottom: -8rem !important; } - .xl\:-right-40 { - right: -10rem !important; + .xl\:-bottom-36 { + bottom: -9rem !important; } .xl\:-bottom-40 { bottom: -10rem !important; } - .xl\:-left-40 { - left: -10rem !important; + .xl\:-bottom-44 { + bottom: -11rem !important; } - .xl\:-top-44 { - top: -11rem !important; + .xl\:-bottom-48 { + bottom: -12rem !important; } - .xl\:-right-44 { - right: -11rem !important; + .xl\:-bottom-52 { + bottom: -13rem !important; } - .xl\:-bottom-44 { - bottom: -11rem !important; + .xl\:-bottom-56 { + bottom: -14rem !important; } - .xl\:-left-44 { - left: -11rem !important; + .xl\:-bottom-60 { + bottom: -15rem !important; } - .xl\:-top-48 { - top: -12rem !important; + .xl\:-bottom-64 { + bottom: -16rem !important; } - .xl\:-right-48 { - right: -12rem !important; + .xl\:-bottom-72 { + bottom: -18rem !important; } - .xl\:-bottom-48 { - bottom: -12rem !important; + .xl\:-bottom-80 { + bottom: -20rem !important; } - .xl\:-left-48 { - left: -12rem !important; + .xl\:-bottom-96 { + bottom: -24rem !important; } - .xl\:-top-52 { - top: -13rem !important; + .xl\:-bottom-px { + bottom: -1px !important; } - .xl\:-right-52 { - right: -13rem !important; + .xl\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .xl\:-bottom-52 { - bottom: -13rem !important; + .xl\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .xl\:-left-52 { - left: -13rem !important; + .xl\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .xl\:-top-56 { - top: -14rem !important; + .xl\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .xl\:-right-56 { - right: -14rem !important; + .xl\:bottom-1\/2 { + bottom: 50% !important; } - .xl\:-bottom-56 { - bottom: -14rem !important; + .xl\:bottom-1\/3 { + bottom: 33.333333% !important; } - .xl\:-left-56 { - left: -14rem !important; + .xl\:bottom-2\/3 { + bottom: 66.666667% !important; } - .xl\:-top-60 { - top: -15rem !important; + .xl\:bottom-1\/4 { + bottom: 25% !important; } - .xl\:-right-60 { - right: -15rem !important; + .xl\:bottom-2\/4 { + bottom: 50% !important; } - .xl\:-bottom-60 { - bottom: -15rem !important; + .xl\:bottom-3\/4 { + bottom: 75% !important; } - .xl\:-left-60 { - left: -15rem !important; + .xl\:bottom-full { + bottom: 100% !important; } - .xl\:-top-64 { - top: -16rem !important; + .xl\:-bottom-1\/2 { + bottom: -50% !important; } - .xl\:-right-64 { - right: -16rem !important; + .xl\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .xl\:-bottom-64 { - bottom: -16rem !important; + .xl\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .xl\:-left-64 { - left: -16rem !important; + .xl\:-bottom-1\/4 { + bottom: -25% !important; } - .xl\:-top-72 { - top: -18rem !important; + .xl\:-bottom-2\/4 { + bottom: -50% !important; } - .xl\:-right-72 { - right: -18rem !important; + .xl\:-bottom-3\/4 { + bottom: -75% !important; } - .xl\:-bottom-72 { - bottom: -18rem !important; + .xl\:-bottom-full { + bottom: -100% !important; } - .xl\:-left-72 { - left: -18rem !important; + .xl\:left-0 { + left: 0px !important; } - .xl\:-top-80 { - top: -20rem !important; + .xl\:left-1 { + left: 0.25rem !important; } - .xl\:-right-80 { - right: -20rem !important; + .xl\:left-2 { + left: 0.5rem !important; } - .xl\:-bottom-80 { - bottom: -20rem !important; + .xl\:left-3 { + left: 0.75rem !important; } - .xl\:-left-80 { - left: -20rem !important; + .xl\:left-4 { + left: 1rem !important; } - .xl\:-top-96 { - top: -24rem !important; + .xl\:left-5 { + left: 1.25rem !important; } - .xl\:-right-96 { - right: -24rem !important; + .xl\:left-6 { + left: 1.5rem !important; } - .xl\:-bottom-96 { - bottom: -24rem !important; + .xl\:left-7 { + left: 1.75rem !important; } - .xl\:-left-96 { - left: -24rem !important; + .xl\:left-8 { + left: 2rem !important; } - .xl\:-top-px { - top: -1px !important; + .xl\:left-9 { + left: 2.25rem !important; } - .xl\:-right-px { - right: -1px !important; + .xl\:left-10 { + left: 2.5rem !important; } - .xl\:-bottom-px { - bottom: -1px !important; + .xl\:left-11 { + left: 2.75rem !important; } - .xl\:-left-px { - left: -1px !important; + .xl\:left-12 { + left: 3rem !important; } - .xl\:-top-0\.5 { - top: -0.125rem !important; + .xl\:left-14 { + left: 3.5rem !important; } - .xl\:-right-0\.5 { - right: -0.125rem !important; + .xl\:left-16 { + left: 4rem !important; } - .xl\:-bottom-0\.5 { - bottom: -0.125rem !important; + .xl\:left-20 { + left: 5rem !important; } - .xl\:-left-0\.5 { - left: -0.125rem !important; + .xl\:left-24 { + left: 6rem !important; } - .xl\:-top-1\.5 { - top: -0.375rem !important; + .xl\:left-28 { + left: 7rem !important; } - .xl\:-right-1\.5 { - right: -0.375rem !important; + .xl\:left-32 { + left: 8rem !important; } - .xl\:-bottom-1\.5 { - bottom: -0.375rem !important; + .xl\:left-36 { + left: 9rem !important; } - .xl\:-left-1\.5 { - left: -0.375rem !important; + .xl\:left-40 { + left: 10rem !important; } - .xl\:-top-2\.5 { - top: -0.625rem !important; + .xl\:left-44 { + left: 11rem !important; } - .xl\:-right-2\.5 { - right: -0.625rem !important; + .xl\:left-48 { + left: 12rem !important; } - .xl\:-bottom-2\.5 { - bottom: -0.625rem !important; + .xl\:left-52 { + left: 13rem !important; } - .xl\:-left-2\.5 { - left: -0.625rem !important; + .xl\:left-56 { + left: 14rem !important; } - .xl\:-top-3\.5 { - top: -0.875rem !important; + .xl\:left-60 { + left: 15rem !important; } - .xl\:-right-3\.5 { - right: -0.875rem !important; + .xl\:left-64 { + left: 16rem !important; } - .xl\:-bottom-3\.5 { - bottom: -0.875rem !important; + .xl\:left-72 { + left: 18rem !important; } - .xl\:-left-3\.5 { - left: -0.875rem !important; + .xl\:left-80 { + left: 20rem !important; } - .xl\:top-1\/2 { - top: 50% !important; + .xl\:left-96 { + left: 24rem !important; } - .xl\:right-1\/2 { - right: 50% !important; + .xl\:left-auto { + left: auto !important; } - .xl\:bottom-1\/2 { - bottom: 50% !important; + .xl\:left-px { + left: 1px !important; } - .xl\:left-1\/2 { - left: 50% !important; + .xl\:left-0\.5 { + left: 0.125rem !important; } - .xl\:top-1\/3 { - top: 33.333333% !important; + .xl\:left-1\.5 { + left: 0.375rem !important; } - .xl\:right-1\/3 { - right: 33.333333% !important; + .xl\:left-2\.5 { + left: 0.625rem !important; } - .xl\:bottom-1\/3 { - bottom: 33.333333% !important; + .xl\:left-3\.5 { + left: 0.875rem !important; } - .xl\:left-1\/3 { - left: 33.333333% !important; + .xl\:-left-0 { + left: 0px !important; } - .xl\:top-2\/3 { - top: 66.666667% !important; + .xl\:-left-1 { + left: -0.25rem !important; } - .xl\:right-2\/3 { - right: 66.666667% !important; + .xl\:-left-2 { + left: -0.5rem !important; } - .xl\:bottom-2\/3 { - bottom: 66.666667% !important; + .xl\:-left-3 { + left: -0.75rem !important; } - .xl\:left-2\/3 { - left: 66.666667% !important; + .xl\:-left-4 { + left: -1rem !important; } - .xl\:top-1\/4 { - top: 25% !important; + .xl\:-left-5 { + left: -1.25rem !important; } - .xl\:right-1\/4 { - right: 25% !important; + .xl\:-left-6 { + left: -1.5rem !important; } - .xl\:bottom-1\/4 { - bottom: 25% !important; + .xl\:-left-7 { + left: -1.75rem !important; } - .xl\:left-1\/4 { - left: 25% !important; + .xl\:-left-8 { + left: -2rem !important; } - .xl\:top-2\/4 { - top: 50% !important; + .xl\:-left-9 { + left: -2.25rem !important; } - .xl\:right-2\/4 { - right: 50% !important; + .xl\:-left-10 { + left: -2.5rem !important; } - .xl\:bottom-2\/4 { - bottom: 50% !important; + .xl\:-left-11 { + left: -2.75rem !important; } - .xl\:left-2\/4 { - left: 50% !important; + .xl\:-left-12 { + left: -3rem !important; } - .xl\:top-3\/4 { - top: 75% !important; + .xl\:-left-14 { + left: -3.5rem !important; } - .xl\:right-3\/4 { - right: 75% !important; + .xl\:-left-16 { + left: -4rem !important; } - .xl\:bottom-3\/4 { - bottom: 75% !important; + .xl\:-left-20 { + left: -5rem !important; } - .xl\:left-3\/4 { - left: 75% !important; + .xl\:-left-24 { + left: -6rem !important; } - .xl\:top-full { - top: 100% !important; + .xl\:-left-28 { + left: -7rem !important; } - .xl\:right-full { - right: 100% !important; + .xl\:-left-32 { + left: -8rem !important; } - .xl\:bottom-full { - bottom: 100% !important; + .xl\:-left-36 { + left: -9rem !important; } - .xl\:left-full { - left: 100% !important; + .xl\:-left-40 { + left: -10rem !important; } - .xl\:-top-1\/2 { - top: -50% !important; + .xl\:-left-44 { + left: -11rem !important; } - .xl\:-right-1\/2 { - right: -50% !important; + .xl\:-left-48 { + left: -12rem !important; } - .xl\:-bottom-1\/2 { - bottom: -50% !important; + .xl\:-left-52 { + left: -13rem !important; } - .xl\:-left-1\/2 { - left: -50% !important; + .xl\:-left-56 { + left: -14rem !important; } - .xl\:-top-1\/3 { - top: -33.333333% !important; + .xl\:-left-60 { + left: -15rem !important; } - .xl\:-right-1\/3 { - right: -33.333333% !important; + .xl\:-left-64 { + left: -16rem !important; } - .xl\:-bottom-1\/3 { - bottom: -33.333333% !important; + .xl\:-left-72 { + left: -18rem !important; } - .xl\:-left-1\/3 { - left: -33.333333% !important; + .xl\:-left-80 { + left: -20rem !important; } - .xl\:-top-2\/3 { - top: -66.666667% !important; + .xl\:-left-96 { + left: -24rem !important; } - .xl\:-right-2\/3 { - right: -66.666667% !important; + .xl\:-left-px { + left: -1px !important; } - .xl\:-bottom-2\/3 { - bottom: -66.666667% !important; + .xl\:-left-0\.5 { + left: -0.125rem !important; } - .xl\:-left-2\/3 { - left: -66.666667% !important; + .xl\:-left-1\.5 { + left: -0.375rem !important; } - .xl\:-top-1\/4 { - top: -25% !important; + .xl\:-left-2\.5 { + left: -0.625rem !important; } - .xl\:-right-1\/4 { - right: -25% !important; + .xl\:-left-3\.5 { + left: -0.875rem !important; } - .xl\:-bottom-1\/4 { - bottom: -25% !important; + .xl\:left-1\/2 { + left: 50% !important; } - .xl\:-left-1\/4 { - left: -25% !important; + .xl\:left-1\/3 { + left: 33.333333% !important; } - .xl\:-top-2\/4 { - top: -50% !important; + .xl\:left-2\/3 { + left: 66.666667% !important; } - .xl\:-right-2\/4 { - right: -50% !important; + .xl\:left-1\/4 { + left: 25% !important; } - .xl\:-bottom-2\/4 { - bottom: -50% !important; + .xl\:left-2\/4 { + left: 50% !important; } - .xl\:-left-2\/4 { - left: -50% !important; + .xl\:left-3\/4 { + left: 75% !important; } - .xl\:-top-3\/4 { - top: -75% !important; + .xl\:left-full { + left: 100% !important; } - .xl\:-right-3\/4 { - right: -75% !important; + .xl\:-left-1\/2 { + left: -50% !important; } - .xl\:-bottom-3\/4 { - bottom: -75% !important; + .xl\:-left-1\/3 { + left: -33.333333% !important; } - .xl\:-left-3\/4 { - left: -75% !important; + .xl\:-left-2\/3 { + left: -66.666667% !important; } - .xl\:-top-full { - top: -100% !important; + .xl\:-left-1\/4 { + left: -25% !important; } - .xl\:-right-full { - right: -100% !important; + .xl\:-left-2\/4 { + left: -50% !important; } - .xl\:-bottom-full { - bottom: -100% !important; + .xl\:-left-3\/4 { + left: -75% !important; } .xl\:-left-full { @@ -126160,133 +126256,183 @@ video { --tw-scale-y: 1.5 !important; } - .xl\:scale-x-0 { + .xl\:hover\:scale-0:hover { --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .xl\:scale-x-50 { + .xl\:hover\:scale-50:hover { --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .xl\:scale-x-75 { + .xl\:hover\:scale-75:hover { --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .xl\:scale-x-90 { + .xl\:hover\:scale-90:hover { --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .xl\:scale-x-95 { + .xl\:hover\:scale-95:hover { --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .xl\:scale-x-100 { + .xl\:hover\:scale-100:hover { --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .xl\:scale-x-105 { + .xl\:hover\:scale-105:hover { --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .xl\:scale-x-110 { + .xl\:hover\:scale-110:hover { --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .xl\:scale-x-125 { + .xl\:hover\:scale-125:hover { --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .xl\:scale-x-150 { + .xl\:hover\:scale-150:hover { --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .xl\:scale-y-0 { + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; --tw-scale-y: 0 !important; } - .xl\:scale-y-50 { + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; --tw-scale-y: .5 !important; } - .xl\:scale-y-75 { + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; --tw-scale-y: .75 !important; } - .xl\:scale-y-90 { + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; --tw-scale-y: .9 !important; } - .xl\:scale-y-95 { + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; --tw-scale-y: .95 !important; } - .xl\:scale-y-100 { + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; --tw-scale-y: 1 !important; } - .xl\:scale-y-105 { + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; --tw-scale-y: 1.05 !important; } - .xl\:scale-y-110 { + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; --tw-scale-y: 1.1 !important; } - .xl\:scale-y-125 { + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; --tw-scale-y: 1.25 !important; } - .xl\:scale-y-150 { + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; --tw-scale-y: 1.5 !important; } - .xl\:hover\:scale-0:hover { + .xl\:scale-x-0 { --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; } - .xl\:hover\:scale-50:hover { + .xl\:scale-x-50 { --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; } - .xl\:hover\:scale-75:hover { + .xl\:scale-x-75 { --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; } - .xl\:hover\:scale-90:hover { + .xl\:scale-x-90 { --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; } - .xl\:hover\:scale-95:hover { + .xl\:scale-x-95 { --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; } - .xl\:hover\:scale-100:hover { + .xl\:scale-x-100 { --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; } - .xl\:hover\:scale-105:hover { + .xl\:scale-x-105 { --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; } - .xl\:hover\:scale-110:hover { + .xl\:scale-x-110 { --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; } - .xl\:hover\:scale-125:hover { + .xl\:scale-x-125 { --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; } - .xl\:hover\:scale-150:hover { + .xl\:scale-x-150 { --tw-scale-x: 1.5 !important; + } + + .xl\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .xl\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .xl\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .xl\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .xl\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .xl\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .xl\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .xl\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .xl\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .xl\:scale-y-150 { --tw-scale-y: 1.5 !important; } @@ -126370,56 +126516,6 @@ video { --tw-scale-y: 1.5 !important; } - .xl\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; - } - - .xl\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; - } - - .xl\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; - } - - .xl\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; - } - - .xl\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; - } - - .xl\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - } - - .xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; - } - - .xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; - } - - .xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; - } - - .xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; - } - .xl\:focus\:scale-x-0:focus { --tw-scale-x: 0 !important; } @@ -127312,436 +127408,640 @@ video { row-gap: 0.875rem !important; } - .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0px * var(--tw-space-x-reverse)) !important; margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1px * var(--tw-space-x-reverse)) !important; margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; - } - .xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(0px * var(--tw-space-x-reverse)) !important; - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } .xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -127750,408 +128050,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; } - .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1 !important; } @@ -128160,66 +128256,66 @@ video { --tw-space-x-reverse: 1 !important; } - .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; - } - .xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; - } - .xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; - } - .xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; - } - .xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; - } - .xl\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; } + .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1 !important; } @@ -134633,2188 +134729,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; - } - - .xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; - } - - .xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; - } - - .xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; - } - - .xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; - } - - .xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; - } - - .xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; - } - - .xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; - } - - .xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; - } - - .xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; - } - - .xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; - } - - .xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; - } - - .xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; - } - - .xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; - } - - .xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; - } - - .xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; - } - - .xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; - } - - .xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; - } - - .xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; - } - - .xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; - } - - .xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; - } - - .xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; - } - - .xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; - } - - .xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; - } - - .xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; - } - - .xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; - } - - .xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; - } - - .xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; - } - - .xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; - } - - .xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; - } - - .xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; - } - - .xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; - } - - .xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; - } - - .xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; - } - - .xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; - } - - .xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; - } - - .xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; - } - - .xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; - } - - .xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; - } - - .xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; - } - - .xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; - } - - .xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; - } - - .xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; - } - - .xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; - } - - .xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; - } - - .xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; - } - - .xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; - } - - .xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; - } - - .xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; - } - - .xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; - } - - .xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; - } - - .xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; - } - - .xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; - } - - .xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; - } - - .xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; - } - - .xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; - } - - .xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; - } - - .xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; - } - - .xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; - } - - .xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; - } - - .xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; - } - - .xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; - } - - .xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; - } - - .xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; - } - - .xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; - } - - .xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; - } - - .xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; - } - - .xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; - } - - .xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; - } - - .xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; - } - - .xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; - } - - .xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; - } - - .xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; - } - - .xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; - } - - .xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; - } - - .xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; - } - - .xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; - } - - .xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; - } - - .xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; - } - - .xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; - } - - .xl\:to-transparent { - --tw-gradient-to: transparent !important; + .xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:to-current { - --tw-gradient-to: currentColor !important; + .xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:to-black { - --tw-gradient-to: #000 !important; + .xl\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:to-white { - --tw-gradient-to: #fff !important; + .xl\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .xl\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .xl\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .xl\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .xl\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .xl\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .xl\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .xl\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .xl\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .xl\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .xl\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .xl\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .xl\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .xl\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .xl\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .xl\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .xl\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .xl\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .xl\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .xl\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .xl\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .xl\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .xl\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .xl\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .xl\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .xl\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .xl\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .xl\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .xl\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .xl\:to-green-600 { - --tw-gradient-to: #059669 !important; + .xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .xl\:to-green-700 { - --tw-gradient-to: #047857 !important; + .xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .xl\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .xl\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .xl\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .xl\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .xl\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .xl\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .xl\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .xl\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .xl\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .xl\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .xl\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .xl\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .xl\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .xl\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .xl\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .xl\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .xl\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .xl\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .xl\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .xl\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .xl\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .xl\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .xl\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .xl\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .xl\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .xl\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .xl\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .xl\:hover\:from-transparent:hover { + .xl\:focus\:from-transparent:focus { --tw-gradient-from: transparent !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:hover\:from-current:hover { + .xl\:focus\:from-current:focus { --tw-gradient-from: currentColor !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:hover\:from-black:hover { + .xl\:focus\:from-black:focus { --tw-gradient-from: #000 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:hover\:from-white:hover { + .xl\:focus\:from-white:focus { --tw-gradient-from: #fff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:hover\:from-gray-50:hover { + .xl\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .xl\:hover\:from-gray-100:hover { + .xl\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .xl\:hover\:from-gray-200:hover { + .xl\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .xl\:hover\:from-gray-300:hover { + .xl\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .xl\:hover\:from-gray-400:hover { + .xl\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .xl\:hover\:from-gray-500:hover { + .xl\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .xl\:hover\:from-gray-600:hover { + .xl\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .xl\:hover\:from-gray-700:hover { + .xl\:focus\:from-gray-700:focus { --tw-gradient-from: #374151 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .xl\:hover\:from-gray-800:hover { + .xl\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .xl\:hover\:from-gray-900:hover { + .xl\:focus\:from-gray-900:focus { --tw-gradient-from: #111827 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .xl\:hover\:from-red-50:hover { + .xl\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .xl\:hover\:from-red-100:hover { + .xl\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .xl\:hover\:from-red-200:hover { + .xl\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .xl\:hover\:from-red-300:hover { + .xl\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .xl\:hover\:from-red-400:hover { + .xl\:focus\:from-red-400:focus { --tw-gradient-from: #f87171 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .xl\:hover\:from-red-500:hover { + .xl\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .xl\:hover\:from-red-600:hover { + .xl\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .xl\:hover\:from-red-700:hover { + .xl\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .xl\:hover\:from-red-800:hover { + .xl\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .xl\:hover\:from-red-900:hover { + .xl\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .xl\:hover\:from-yellow-50:hover { + .xl\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .xl\:hover\:from-yellow-100:hover { + .xl\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .xl\:hover\:from-yellow-200:hover { + .xl\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .xl\:hover\:from-yellow-300:hover { + .xl\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .xl\:hover\:from-yellow-400:hover { + .xl\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .xl\:hover\:from-yellow-500:hover { + .xl\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .xl\:hover\:from-yellow-600:hover { + .xl\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .xl\:hover\:from-yellow-700:hover { + .xl\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .xl\:hover\:from-yellow-800:hover { + .xl\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .xl\:hover\:from-yellow-900:hover { + .xl\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .xl\:hover\:from-green-50:hover { + .xl\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .xl\:hover\:from-green-100:hover { + .xl\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .xl\:hover\:from-green-200:hover { + .xl\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .xl\:hover\:from-green-300:hover { + .xl\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .xl\:hover\:from-green-400:hover { + .xl\:focus\:from-green-400:focus { --tw-gradient-from: #34d399 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .xl\:hover\:from-green-500:hover { + .xl\:focus\:from-green-500:focus { --tw-gradient-from: #10b981 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .xl\:hover\:from-green-600:hover { + .xl\:focus\:from-green-600:focus { --tw-gradient-from: #059669 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .xl\:hover\:from-green-700:hover { + .xl\:focus\:from-green-700:focus { --tw-gradient-from: #047857 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .xl\:hover\:from-green-800:hover { + .xl\:focus\:from-green-800:focus { --tw-gradient-from: #065f46 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .xl\:hover\:from-green-900:hover { + .xl\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .xl\:hover\:from-blue-50:hover { + .xl\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .xl\:hover\:from-blue-100:hover { + .xl\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .xl\:hover\:from-blue-200:hover { + .xl\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .xl\:hover\:from-blue-300:hover { + .xl\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .xl\:hover\:from-blue-400:hover { + .xl\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .xl\:hover\:from-blue-500:hover { + .xl\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .xl\:hover\:from-blue-600:hover { + .xl\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .xl\:hover\:from-blue-700:hover { + .xl\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .xl\:hover\:from-blue-800:hover { + .xl\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .xl\:hover\:from-blue-900:hover { + .xl\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .xl\:hover\:from-indigo-50:hover { + .xl\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .xl\:hover\:from-indigo-100:hover { + .xl\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .xl\:hover\:from-indigo-200:hover { + .xl\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .xl\:hover\:from-indigo-300:hover { + .xl\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .xl\:hover\:from-indigo-400:hover { + .xl\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .xl\:hover\:from-indigo-500:hover { + .xl\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .xl\:hover\:from-indigo-600:hover { + .xl\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .xl\:hover\:from-indigo-700:hover { + .xl\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .xl\:hover\:from-indigo-800:hover { + .xl\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .xl\:hover\:from-indigo-900:hover { + .xl\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .xl\:hover\:from-purple-50:hover { + .xl\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .xl\:hover\:from-purple-100:hover { + .xl\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .xl\:hover\:from-purple-200:hover { + .xl\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .xl\:hover\:from-purple-300:hover { + .xl\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .xl\:hover\:from-purple-400:hover { + .xl\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .xl\:hover\:from-purple-500:hover { + .xl\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .xl\:hover\:from-purple-600:hover { + .xl\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .xl\:hover\:from-purple-700:hover { + .xl\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .xl\:hover\:from-purple-800:hover { + .xl\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .xl\:hover\:from-purple-900:hover { + .xl\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .xl\:hover\:from-pink-50:hover { + .xl\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .xl\:hover\:from-pink-100:hover { + .xl\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .xl\:hover\:from-pink-200:hover { + .xl\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .xl\:hover\:from-pink-300:hover { + .xl\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .xl\:hover\:from-pink-400:hover { + .xl\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .xl\:hover\:from-pink-500:hover { + .xl\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .xl\:hover\:from-pink-600:hover { + .xl\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .xl\:hover\:from-pink-700:hover { + .xl\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .xl\:hover\:from-pink-800:hover { + .xl\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .xl\:hover\:from-pink-900:hover { + .xl\:focus\:from-pink-900:focus { --tw-gradient-from: #831843 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .xl\:hover\:via-transparent:hover { + .xl\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:hover\:via-current:hover { + .xl\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:hover\:via-black:hover { + .xl\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:hover\:via-white:hover { + .xl\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:hover\:via-gray-50:hover { + .xl\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .xl\:hover\:via-gray-100:hover { + .xl\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .xl\:hover\:via-gray-200:hover { + .xl\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .xl\:hover\:via-gray-300:hover { + .xl\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .xl\:hover\:via-gray-400:hover { + .xl\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .xl\:hover\:via-gray-500:hover { + .xl\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .xl\:hover\:via-gray-600:hover { + .xl\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .xl\:hover\:via-gray-700:hover { + .xl\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .xl\:hover\:via-gray-800:hover { + .xl\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .xl\:hover\:via-gray-900:hover { + .xl\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .xl\:hover\:via-red-50:hover { + .xl\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .xl\:hover\:via-red-100:hover { + .xl\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .xl\:hover\:via-red-200:hover { + .xl\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .xl\:hover\:via-red-300:hover { + .xl\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .xl\:hover\:via-red-400:hover { + .xl\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .xl\:hover\:via-red-500:hover { + .xl\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .xl\:hover\:via-red-600:hover { + .xl\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .xl\:hover\:via-red-700:hover { + .xl\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .xl\:hover\:via-red-800:hover { + .xl\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .xl\:hover\:via-red-900:hover { + .xl\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .xl\:hover\:via-yellow-50:hover { + .xl\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .xl\:hover\:via-yellow-100:hover { + .xl\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .xl\:hover\:via-yellow-200:hover { + .xl\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .xl\:hover\:via-yellow-300:hover { + .xl\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .xl\:hover\:via-yellow-400:hover { + .xl\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .xl\:hover\:via-yellow-500:hover { + .xl\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .xl\:hover\:via-yellow-600:hover { + .xl\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .xl\:hover\:via-yellow-700:hover { + .xl\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .xl\:hover\:via-yellow-800:hover { + .xl\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .xl\:hover\:via-yellow-900:hover { + .xl\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .xl\:hover\:via-green-50:hover { + .xl\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .xl\:hover\:via-green-100:hover { + .xl\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .xl\:hover\:via-green-200:hover { + .xl\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .xl\:hover\:via-green-300:hover { + .xl\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .xl\:hover\:via-green-400:hover { + .xl\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .xl\:hover\:via-green-500:hover { + .xl\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .xl\:hover\:via-green-600:hover { + .xl\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .xl\:hover\:via-green-700:hover { + .xl\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .xl\:hover\:via-green-800:hover { + .xl\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .xl\:hover\:via-green-900:hover { + .xl\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .xl\:hover\:via-blue-50:hover { + .xl\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .xl\:hover\:via-blue-100:hover { + .xl\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .xl\:hover\:via-blue-200:hover { + .xl\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .xl\:hover\:via-blue-300:hover { + .xl\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .xl\:hover\:via-blue-400:hover { + .xl\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .xl\:hover\:via-blue-500:hover { + .xl\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .xl\:hover\:via-blue-600:hover { + .xl\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .xl\:hover\:via-blue-700:hover { + .xl\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .xl\:hover\:via-blue-800:hover { + .xl\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .xl\:hover\:via-blue-900:hover { + .xl\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .xl\:hover\:via-indigo-50:hover { + .xl\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .xl\:hover\:via-indigo-100:hover { + .xl\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .xl\:hover\:via-indigo-200:hover { + .xl\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .xl\:hover\:via-indigo-300:hover { + .xl\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .xl\:hover\:via-indigo-400:hover { + .xl\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .xl\:hover\:via-indigo-500:hover { + .xl\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .xl\:hover\:via-indigo-600:hover { + .xl\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .xl\:hover\:via-indigo-700:hover { + .xl\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .xl\:hover\:via-indigo-800:hover { + .xl\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .xl\:hover\:via-indigo-900:hover { + .xl\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .xl\:hover\:via-purple-50:hover { + .xl\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .xl\:hover\:via-purple-100:hover { + .xl\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .xl\:hover\:via-purple-200:hover { + .xl\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .xl\:hover\:via-purple-300:hover { + .xl\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .xl\:hover\:via-purple-400:hover { + .xl\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .xl\:hover\:via-purple-500:hover { + .xl\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .xl\:hover\:via-purple-600:hover { + .xl\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .xl\:hover\:via-purple-700:hover { + .xl\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .xl\:hover\:via-purple-800:hover { + .xl\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .xl\:hover\:via-purple-900:hover { + .xl\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .xl\:hover\:via-pink-50:hover { + .xl\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .xl\:hover\:via-pink-100:hover { + .xl\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .xl\:hover\:via-pink-200:hover { + .xl\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .xl\:hover\:via-pink-300:hover { + .xl\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .xl\:hover\:via-pink-400:hover { + .xl\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .xl\:hover\:via-pink-500:hover { + .xl\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .xl\:hover\:via-pink-600:hover { + .xl\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .xl\:hover\:via-pink-700:hover { + .xl\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .xl\:hover\:via-pink-800:hover { + .xl\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .xl\:hover\:via-pink-900:hover { + .xl\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; - } - - .xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; - } - - .xl\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; - } - - .xl\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; - } - - .xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; - } - - .xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; - } - - .xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; - } - - .xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; - } - - .xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; - } - - .xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; - } - - .xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; - } - - .xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; - } - - .xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; - } - - .xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; - } - - .xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; - } - - .xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; - } - - .xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; - } - - .xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; - } - - .xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; - } - - .xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; - } - - .xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; - } - - .xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; - } - - .xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; - } - - .xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; - } - - .xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; - } - - .xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; - } - - .xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; - } - - .xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; - } - - .xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; - } - - .xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; - } - - .xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; - } - - .xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; - } - - .xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; - } - - .xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; - } - - .xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; - } - - .xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; - } - - .xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; - } - - .xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; - } - - .xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; - } - - .xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; - } - - .xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; - } - - .xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; - } - - .xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; - } - - .xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; - } - - .xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; - } - - .xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; - } - - .xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; - } - - .xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; - } - - .xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; - } - - .xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; - } - - .xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; - } - - .xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; - } - - .xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; - } - - .xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; - } - - .xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; - } - - .xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; - } - - .xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; - } - - .xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; - } - - .xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; - } - - .xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; - } - - .xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; - } - - .xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; - } - - .xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; - } - - .xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; - } - - .xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; - } - - .xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; - } - - .xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; - } - - .xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; - } - - .xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; - } - - .xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; - } - - .xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; - } - - .xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; - } - - .xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; - } - - .xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; - } - - .xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; - } - - .xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; - } - - .xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; - } - - .xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; - } - - .xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; - } - - .xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; - } - - .xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; - } - - .xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; - } - - .xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; - } - - .xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; - } - - .xl\:focus\:from-transparent:focus { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:focus\:from-current:focus { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:focus\:from-black:focus { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .xl\:focus\:from-white:focus { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .xl\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .xl\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .xl\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .xl\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .xl\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .xl\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .xl\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .xl\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .xl\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .xl\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .xl\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .xl\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .xl\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .xl\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .xl\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .xl\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .xl\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .xl\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .xl\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .xl\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .xl\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .xl\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .xl\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .xl\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .xl\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .xl\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .xl\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .xl\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .xl\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .xl\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .xl\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .xl\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .xl\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .xl\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .xl\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .xl\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .xl\:focus\:from-green-600:focus { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .xl\:focus\:from-green-700:focus { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .xl\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .xl\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .xl\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .xl\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .xl\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .xl\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .xl\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .xl\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .xl\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .xl\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .xl\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .xl\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .xl\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .xl\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .xl\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .xl\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .xl\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .xl\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .xl\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .xl\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .xl\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .xl\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .xl\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .xl\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .xl\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .xl\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .xl\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .xl\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .xl\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .xl\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .xl\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .xl\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .xl\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .xl\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .xl\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .xl\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .xl\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .xl\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .xl\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .xl\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .xl\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .xl\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } .xl\:focus\:via-transparent:focus { @@ -137153,6 +136577,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } + .xl\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .xl\:to-current { + --tw-gradient-to: currentColor !important; + } + + .xl\:to-black { + --tw-gradient-to: #000 !important; + } + + .xl\:to-white { + --tw-gradient-to: #fff !important; + } + + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .xl\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .xl\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .xl\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .xl\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .xl\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .xl\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .xl\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .xl\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .xl\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .xl\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .xl\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .xl\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .xl\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .xl\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .xl\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .xl\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .xl\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .xl\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .xl\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .xl\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .xl\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .xl\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .xl\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .xl\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .xl\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .xl\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .xl\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .xl\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .xl\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .xl\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .xl\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .xl\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .xl\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .xl\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .xl\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .xl\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .xl\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .xl\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .xl\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .xl\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .xl\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .xl\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .xl\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .xl\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .xl\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .xl\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .xl\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .xl\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .xl\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .xl\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .xl\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .xl\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + .xl\:focus\:to-transparent:focus { --tw-gradient-to: transparent !important; } @@ -143162,10 +143258,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:ring-inset { - --tw-ring-inset: inset !important; - } - .xl\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -143202,10 +143294,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .xl\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !important; - } - .xl\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -143242,6 +143330,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } + .xl\:ring-inset { + --tw-ring-inset: inset !important; + } + + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + .xl\:focus\:ring-inset:focus { --tw-ring-inset: inset !important; } @@ -146002,6 +146098,38 @@ video { backdrop-filter: none !important; } + .xl\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0) !important; + } + + .xl\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px) !important; + } + + .xl\:backdrop-blur { + --tw-backdrop-blur: blur(8px) !important; + } + + .xl\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px) !important; + } + + .xl\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px) !important; + } + + .xl\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px) !important; + } + + .xl\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px) !important; + } + + .xl\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px) !important; + } + .xl\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0) !important; } @@ -146911,116 +147039,541 @@ video { left: -0.375rem !important; } - .\32xl\:-inset-2\.5 { - top: -0.625rem !important; - right: -0.625rem !important; - bottom: -0.625rem !important; + .\32xl\:-inset-2\.5 { + top: -0.625rem !important; + right: -0.625rem !important; + bottom: -0.625rem !important; + left: -0.625rem !important; + } + + .\32xl\:-inset-3\.5 { + top: -0.875rem !important; + right: -0.875rem !important; + bottom: -0.875rem !important; + left: -0.875rem !important; + } + + .\32xl\:inset-1\/2 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .\32xl\:inset-1\/3 { + top: 33.333333% !important; + right: 33.333333% !important; + bottom: 33.333333% !important; + left: 33.333333% !important; + } + + .\32xl\:inset-2\/3 { + top: 66.666667% !important; + right: 66.666667% !important; + bottom: 66.666667% !important; + left: 66.666667% !important; + } + + .\32xl\:inset-1\/4 { + top: 25% !important; + right: 25% !important; + bottom: 25% !important; + left: 25% !important; + } + + .\32xl\:inset-2\/4 { + top: 50% !important; + right: 50% !important; + bottom: 50% !important; + left: 50% !important; + } + + .\32xl\:inset-3\/4 { + top: 75% !important; + right: 75% !important; + bottom: 75% !important; + left: 75% !important; + } + + .\32xl\:inset-full { + top: 100% !important; + right: 100% !important; + bottom: 100% !important; + left: 100% !important; + } + + .\32xl\:-inset-1\/2 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .\32xl\:-inset-1\/3 { + top: -33.333333% !important; + right: -33.333333% !important; + bottom: -33.333333% !important; + left: -33.333333% !important; + } + + .\32xl\:-inset-2\/3 { + top: -66.666667% !important; + right: -66.666667% !important; + bottom: -66.666667% !important; + left: -66.666667% !important; + } + + .\32xl\:-inset-1\/4 { + top: -25% !important; + right: -25% !important; + bottom: -25% !important; + left: -25% !important; + } + + .\32xl\:-inset-2\/4 { + top: -50% !important; + right: -50% !important; + bottom: -50% !important; + left: -50% !important; + } + + .\32xl\:-inset-3\/4 { + top: -75% !important; + right: -75% !important; + bottom: -75% !important; + left: -75% !important; + } + + .\32xl\:-inset-full { + top: -100% !important; + right: -100% !important; + bottom: -100% !important; + left: -100% !important; + } + + .\32xl\:inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .\32xl\:inset-x-1 { + left: 0.25rem !important; + right: 0.25rem !important; + } + + .\32xl\:inset-x-2 { + left: 0.5rem !important; + right: 0.5rem !important; + } + + .\32xl\:inset-x-3 { + left: 0.75rem !important; + right: 0.75rem !important; + } + + .\32xl\:inset-x-4 { + left: 1rem !important; + right: 1rem !important; + } + + .\32xl\:inset-x-5 { + left: 1.25rem !important; + right: 1.25rem !important; + } + + .\32xl\:inset-x-6 { + left: 1.5rem !important; + right: 1.5rem !important; + } + + .\32xl\:inset-x-7 { + left: 1.75rem !important; + right: 1.75rem !important; + } + + .\32xl\:inset-x-8 { + left: 2rem !important; + right: 2rem !important; + } + + .\32xl\:inset-x-9 { + left: 2.25rem !important; + right: 2.25rem !important; + } + + .\32xl\:inset-x-10 { + left: 2.5rem !important; + right: 2.5rem !important; + } + + .\32xl\:inset-x-11 { + left: 2.75rem !important; + right: 2.75rem !important; + } + + .\32xl\:inset-x-12 { + left: 3rem !important; + right: 3rem !important; + } + + .\32xl\:inset-x-14 { + left: 3.5rem !important; + right: 3.5rem !important; + } + + .\32xl\:inset-x-16 { + left: 4rem !important; + right: 4rem !important; + } + + .\32xl\:inset-x-20 { + left: 5rem !important; + right: 5rem !important; + } + + .\32xl\:inset-x-24 { + left: 6rem !important; + right: 6rem !important; + } + + .\32xl\:inset-x-28 { + left: 7rem !important; + right: 7rem !important; + } + + .\32xl\:inset-x-32 { + left: 8rem !important; + right: 8rem !important; + } + + .\32xl\:inset-x-36 { + left: 9rem !important; + right: 9rem !important; + } + + .\32xl\:inset-x-40 { + left: 10rem !important; + right: 10rem !important; + } + + .\32xl\:inset-x-44 { + left: 11rem !important; + right: 11rem !important; + } + + .\32xl\:inset-x-48 { + left: 12rem !important; + right: 12rem !important; + } + + .\32xl\:inset-x-52 { + left: 13rem !important; + right: 13rem !important; + } + + .\32xl\:inset-x-56 { + left: 14rem !important; + right: 14rem !important; + } + + .\32xl\:inset-x-60 { + left: 15rem !important; + right: 15rem !important; + } + + .\32xl\:inset-x-64 { + left: 16rem !important; + right: 16rem !important; + } + + .\32xl\:inset-x-72 { + left: 18rem !important; + right: 18rem !important; + } + + .\32xl\:inset-x-80 { + left: 20rem !important; + right: 20rem !important; + } + + .\32xl\:inset-x-96 { + left: 24rem !important; + right: 24rem !important; + } + + .\32xl\:inset-x-auto { + left: auto !important; + right: auto !important; + } + + .\32xl\:inset-x-px { + left: 1px !important; + right: 1px !important; + } + + .\32xl\:inset-x-0\.5 { + left: 0.125rem !important; + right: 0.125rem !important; + } + + .\32xl\:inset-x-1\.5 { + left: 0.375rem !important; + right: 0.375rem !important; + } + + .\32xl\:inset-x-2\.5 { + left: 0.625rem !important; + right: 0.625rem !important; + } + + .\32xl\:inset-x-3\.5 { + left: 0.875rem !important; + right: 0.875rem !important; + } + + .\32xl\:-inset-x-0 { + left: 0px !important; + right: 0px !important; + } + + .\32xl\:-inset-x-1 { + left: -0.25rem !important; + right: -0.25rem !important; + } + + .\32xl\:-inset-x-2 { + left: -0.5rem !important; + right: -0.5rem !important; + } + + .\32xl\:-inset-x-3 { + left: -0.75rem !important; + right: -0.75rem !important; + } + + .\32xl\:-inset-x-4 { + left: -1rem !important; + right: -1rem !important; + } + + .\32xl\:-inset-x-5 { + left: -1.25rem !important; + right: -1.25rem !important; + } + + .\32xl\:-inset-x-6 { + left: -1.5rem !important; + right: -1.5rem !important; + } + + .\32xl\:-inset-x-7 { + left: -1.75rem !important; + right: -1.75rem !important; + } + + .\32xl\:-inset-x-8 { + left: -2rem !important; + right: -2rem !important; + } + + .\32xl\:-inset-x-9 { + left: -2.25rem !important; + right: -2.25rem !important; + } + + .\32xl\:-inset-x-10 { + left: -2.5rem !important; + right: -2.5rem !important; + } + + .\32xl\:-inset-x-11 { + left: -2.75rem !important; + right: -2.75rem !important; + } + + .\32xl\:-inset-x-12 { + left: -3rem !important; + right: -3rem !important; + } + + .\32xl\:-inset-x-14 { + left: -3.5rem !important; + right: -3.5rem !important; + } + + .\32xl\:-inset-x-16 { + left: -4rem !important; + right: -4rem !important; + } + + .\32xl\:-inset-x-20 { + left: -5rem !important; + right: -5rem !important; + } + + .\32xl\:-inset-x-24 { + left: -6rem !important; + right: -6rem !important; + } + + .\32xl\:-inset-x-28 { + left: -7rem !important; + right: -7rem !important; + } + + .\32xl\:-inset-x-32 { + left: -8rem !important; + right: -8rem !important; + } + + .\32xl\:-inset-x-36 { + left: -9rem !important; + right: -9rem !important; + } + + .\32xl\:-inset-x-40 { + left: -10rem !important; + right: -10rem !important; + } + + .\32xl\:-inset-x-44 { + left: -11rem !important; + right: -11rem !important; + } + + .\32xl\:-inset-x-48 { + left: -12rem !important; + right: -12rem !important; + } + + .\32xl\:-inset-x-52 { + left: -13rem !important; + right: -13rem !important; + } + + .\32xl\:-inset-x-56 { + left: -14rem !important; + right: -14rem !important; + } + + .\32xl\:-inset-x-60 { + left: -15rem !important; + right: -15rem !important; + } + + .\32xl\:-inset-x-64 { + left: -16rem !important; + right: -16rem !important; + } + + .\32xl\:-inset-x-72 { + left: -18rem !important; + right: -18rem !important; + } + + .\32xl\:-inset-x-80 { + left: -20rem !important; + right: -20rem !important; + } + + .\32xl\:-inset-x-96 { + left: -24rem !important; + right: -24rem !important; + } + + .\32xl\:-inset-x-px { + left: -1px !important; + right: -1px !important; + } + + .\32xl\:-inset-x-0\.5 { + left: -0.125rem !important; + right: -0.125rem !important; + } + + .\32xl\:-inset-x-1\.5 { + left: -0.375rem !important; + right: -0.375rem !important; + } + + .\32xl\:-inset-x-2\.5 { left: -0.625rem !important; + right: -0.625rem !important; } - .\32xl\:-inset-3\.5 { - top: -0.875rem !important; - right: -0.875rem !important; - bottom: -0.875rem !important; + .\32xl\:-inset-x-3\.5 { left: -0.875rem !important; + right: -0.875rem !important; } - .\32xl\:inset-1\/2 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .\32xl\:inset-x-1\/2 { left: 50% !important; + right: 50% !important; } - .\32xl\:inset-1\/3 { - top: 33.333333% !important; - right: 33.333333% !important; - bottom: 33.333333% !important; + .\32xl\:inset-x-1\/3 { left: 33.333333% !important; + right: 33.333333% !important; } - .\32xl\:inset-2\/3 { - top: 66.666667% !important; - right: 66.666667% !important; - bottom: 66.666667% !important; + .\32xl\:inset-x-2\/3 { left: 66.666667% !important; + right: 66.666667% !important; } - .\32xl\:inset-1\/4 { - top: 25% !important; - right: 25% !important; - bottom: 25% !important; + .\32xl\:inset-x-1\/4 { left: 25% !important; + right: 25% !important; } - .\32xl\:inset-2\/4 { - top: 50% !important; - right: 50% !important; - bottom: 50% !important; + .\32xl\:inset-x-2\/4 { left: 50% !important; + right: 50% !important; } - .\32xl\:inset-3\/4 { - top: 75% !important; - right: 75% !important; - bottom: 75% !important; + .\32xl\:inset-x-3\/4 { left: 75% !important; + right: 75% !important; } - .\32xl\:inset-full { - top: 100% !important; - right: 100% !important; - bottom: 100% !important; + .\32xl\:inset-x-full { left: 100% !important; + right: 100% !important; } - .\32xl\:-inset-1\/2 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .\32xl\:-inset-x-1\/2 { left: -50% !important; + right: -50% !important; } - .\32xl\:-inset-1\/3 { - top: -33.333333% !important; - right: -33.333333% !important; - bottom: -33.333333% !important; + .\32xl\:-inset-x-1\/3 { left: -33.333333% !important; + right: -33.333333% !important; } - .\32xl\:-inset-2\/3 { - top: -66.666667% !important; - right: -66.666667% !important; - bottom: -66.666667% !important; + .\32xl\:-inset-x-2\/3 { left: -66.666667% !important; + right: -66.666667% !important; } - .\32xl\:-inset-1\/4 { - top: -25% !important; - right: -25% !important; - bottom: -25% !important; + .\32xl\:-inset-x-1\/4 { left: -25% !important; + right: -25% !important; } - .\32xl\:-inset-2\/4 { - top: -50% !important; - right: -50% !important; - bottom: -50% !important; + .\32xl\:-inset-x-2\/4 { left: -50% !important; + right: -50% !important; } - .\32xl\:-inset-3\/4 { - top: -75% !important; - right: -75% !important; - bottom: -75% !important; + .\32xl\:-inset-x-3\/4 { left: -75% !important; + right: -75% !important; } - .\32xl\:-inset-full { - top: -100% !important; - right: -100% !important; - bottom: -100% !important; + .\32xl\:-inset-x-full { left: -100% !important; + right: -100% !important; } .\32xl\:inset-y-0 { @@ -147028,2205 +147581,1780 @@ video { bottom: 0px !important; } - .\32xl\:inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .\32xl\:inset-y-1 { top: 0.25rem !important; bottom: 0.25rem !important; } - .\32xl\:inset-x-1 { - right: 0.25rem !important; - left: 0.25rem !important; - } - .\32xl\:inset-y-2 { top: 0.5rem !important; bottom: 0.5rem !important; } - .\32xl\:inset-x-2 { - right: 0.5rem !important; - left: 0.5rem !important; - } - .\32xl\:inset-y-3 { top: 0.75rem !important; bottom: 0.75rem !important; } - .\32xl\:inset-x-3 { - right: 0.75rem !important; - left: 0.75rem !important; - } - .\32xl\:inset-y-4 { top: 1rem !important; bottom: 1rem !important; } - .\32xl\:inset-x-4 { - right: 1rem !important; - left: 1rem !important; - } - .\32xl\:inset-y-5 { top: 1.25rem !important; bottom: 1.25rem !important; } - .\32xl\:inset-x-5 { - right: 1.25rem !important; - left: 1.25rem !important; - } - .\32xl\:inset-y-6 { top: 1.5rem !important; bottom: 1.5rem !important; } - .\32xl\:inset-x-6 { - right: 1.5rem !important; - left: 1.5rem !important; - } - .\32xl\:inset-y-7 { top: 1.75rem !important; bottom: 1.75rem !important; } - .\32xl\:inset-x-7 { - right: 1.75rem !important; - left: 1.75rem !important; - } - .\32xl\:inset-y-8 { top: 2rem !important; bottom: 2rem !important; } - .\32xl\:inset-x-8 { - right: 2rem !important; - left: 2rem !important; - } - .\32xl\:inset-y-9 { top: 2.25rem !important; bottom: 2.25rem !important; } - .\32xl\:inset-x-9 { - right: 2.25rem !important; - left: 2.25rem !important; - } - .\32xl\:inset-y-10 { top: 2.5rem !important; bottom: 2.5rem !important; } - .\32xl\:inset-x-10 { - right: 2.5rem !important; - left: 2.5rem !important; - } - .\32xl\:inset-y-11 { top: 2.75rem !important; bottom: 2.75rem !important; } - .\32xl\:inset-x-11 { - right: 2.75rem !important; - left: 2.75rem !important; - } - .\32xl\:inset-y-12 { top: 3rem !important; bottom: 3rem !important; } - .\32xl\:inset-x-12 { - right: 3rem !important; - left: 3rem !important; - } - .\32xl\:inset-y-14 { top: 3.5rem !important; bottom: 3.5rem !important; } - .\32xl\:inset-x-14 { - right: 3.5rem !important; - left: 3.5rem !important; - } - .\32xl\:inset-y-16 { top: 4rem !important; bottom: 4rem !important; } - .\32xl\:inset-x-16 { - right: 4rem !important; - left: 4rem !important; - } - .\32xl\:inset-y-20 { top: 5rem !important; bottom: 5rem !important; } - .\32xl\:inset-x-20 { - right: 5rem !important; - left: 5rem !important; - } - .\32xl\:inset-y-24 { top: 6rem !important; bottom: 6rem !important; } - .\32xl\:inset-x-24 { - right: 6rem !important; - left: 6rem !important; - } - .\32xl\:inset-y-28 { top: 7rem !important; bottom: 7rem !important; } - .\32xl\:inset-x-28 { - right: 7rem !important; - left: 7rem !important; - } - .\32xl\:inset-y-32 { top: 8rem !important; bottom: 8rem !important; } - .\32xl\:inset-x-32 { - right: 8rem !important; - left: 8rem !important; - } - .\32xl\:inset-y-36 { top: 9rem !important; bottom: 9rem !important; } - .\32xl\:inset-x-36 { - right: 9rem !important; - left: 9rem !important; - } - .\32xl\:inset-y-40 { top: 10rem !important; bottom: 10rem !important; } - .\32xl\:inset-x-40 { - right: 10rem !important; - left: 10rem !important; - } - .\32xl\:inset-y-44 { top: 11rem !important; bottom: 11rem !important; } - .\32xl\:inset-x-44 { - right: 11rem !important; - left: 11rem !important; - } - .\32xl\:inset-y-48 { top: 12rem !important; bottom: 12rem !important; } - .\32xl\:inset-x-48 { - right: 12rem !important; - left: 12rem !important; - } - .\32xl\:inset-y-52 { top: 13rem !important; bottom: 13rem !important; } - .\32xl\:inset-x-52 { - right: 13rem !important; - left: 13rem !important; - } - .\32xl\:inset-y-56 { top: 14rem !important; bottom: 14rem !important; } - .\32xl\:inset-x-56 { - right: 14rem !important; - left: 14rem !important; - } - .\32xl\:inset-y-60 { top: 15rem !important; bottom: 15rem !important; } - .\32xl\:inset-x-60 { - right: 15rem !important; - left: 15rem !important; - } - .\32xl\:inset-y-64 { top: 16rem !important; bottom: 16rem !important; } - .\32xl\:inset-x-64 { - right: 16rem !important; - left: 16rem !important; - } - .\32xl\:inset-y-72 { top: 18rem !important; bottom: 18rem !important; } - .\32xl\:inset-x-72 { - right: 18rem !important; - left: 18rem !important; - } - .\32xl\:inset-y-80 { top: 20rem !important; bottom: 20rem !important; } - .\32xl\:inset-x-80 { - right: 20rem !important; - left: 20rem !important; - } - .\32xl\:inset-y-96 { top: 24rem !important; bottom: 24rem !important; } - .\32xl\:inset-x-96 { - right: 24rem !important; - left: 24rem !important; - } - .\32xl\:inset-y-auto { top: auto !important; bottom: auto !important; } - .\32xl\:inset-x-auto { - right: auto !important; - left: auto !important; - } - .\32xl\:inset-y-px { top: 1px !important; bottom: 1px !important; } - .\32xl\:inset-x-px { - right: 1px !important; - left: 1px !important; - } - .\32xl\:inset-y-0\.5 { top: 0.125rem !important; bottom: 0.125rem !important; } - .\32xl\:inset-x-0\.5 { - right: 0.125rem !important; - left: 0.125rem !important; - } - .\32xl\:inset-y-1\.5 { top: 0.375rem !important; bottom: 0.375rem !important; } - .\32xl\:inset-x-1\.5 { - right: 0.375rem !important; - left: 0.375rem !important; - } - .\32xl\:inset-y-2\.5 { top: 0.625rem !important; bottom: 0.625rem !important; } - .\32xl\:inset-x-2\.5 { - right: 0.625rem !important; - left: 0.625rem !important; - } - .\32xl\:inset-y-3\.5 { top: 0.875rem !important; bottom: 0.875rem !important; } - .\32xl\:inset-x-3\.5 { - right: 0.875rem !important; - left: 0.875rem !important; - } - .\32xl\:-inset-y-0 { top: 0px !important; bottom: 0px !important; } - .\32xl\:-inset-x-0 { - right: 0px !important; - left: 0px !important; - } - .\32xl\:-inset-y-1 { top: -0.25rem !important; bottom: -0.25rem !important; } - .\32xl\:-inset-x-1 { - right: -0.25rem !important; - left: -0.25rem !important; - } - .\32xl\:-inset-y-2 { top: -0.5rem !important; bottom: -0.5rem !important; } - .\32xl\:-inset-x-2 { - right: -0.5rem !important; - left: -0.5rem !important; - } - .\32xl\:-inset-y-3 { top: -0.75rem !important; bottom: -0.75rem !important; } - .\32xl\:-inset-x-3 { - right: -0.75rem !important; - left: -0.75rem !important; - } - .\32xl\:-inset-y-4 { top: -1rem !important; bottom: -1rem !important; } - .\32xl\:-inset-x-4 { - right: -1rem !important; - left: -1rem !important; - } - .\32xl\:-inset-y-5 { top: -1.25rem !important; bottom: -1.25rem !important; } - .\32xl\:-inset-x-5 { - right: -1.25rem !important; - left: -1.25rem !important; - } - .\32xl\:-inset-y-6 { top: -1.5rem !important; bottom: -1.5rem !important; } - .\32xl\:-inset-x-6 { - right: -1.5rem !important; - left: -1.5rem !important; - } - .\32xl\:-inset-y-7 { top: -1.75rem !important; bottom: -1.75rem !important; } - .\32xl\:-inset-x-7 { - right: -1.75rem !important; - left: -1.75rem !important; - } - .\32xl\:-inset-y-8 { top: -2rem !important; bottom: -2rem !important; } - .\32xl\:-inset-x-8 { - right: -2rem !important; - left: -2rem !important; - } - .\32xl\:-inset-y-9 { top: -2.25rem !important; bottom: -2.25rem !important; } - .\32xl\:-inset-x-9 { - right: -2.25rem !important; - left: -2.25rem !important; - } - .\32xl\:-inset-y-10 { top: -2.5rem !important; bottom: -2.5rem !important; } - .\32xl\:-inset-x-10 { - right: -2.5rem !important; - left: -2.5rem !important; - } - .\32xl\:-inset-y-11 { top: -2.75rem !important; bottom: -2.75rem !important; } - .\32xl\:-inset-x-11 { - right: -2.75rem !important; - left: -2.75rem !important; - } - .\32xl\:-inset-y-12 { top: -3rem !important; bottom: -3rem !important; } - .\32xl\:-inset-x-12 { - right: -3rem !important; - left: -3rem !important; - } - .\32xl\:-inset-y-14 { top: -3.5rem !important; bottom: -3.5rem !important; } - .\32xl\:-inset-x-14 { - right: -3.5rem !important; - left: -3.5rem !important; - } - .\32xl\:-inset-y-16 { top: -4rem !important; bottom: -4rem !important; } - .\32xl\:-inset-x-16 { - right: -4rem !important; - left: -4rem !important; - } - .\32xl\:-inset-y-20 { top: -5rem !important; bottom: -5rem !important; } - .\32xl\:-inset-x-20 { - right: -5rem !important; - left: -5rem !important; - } - .\32xl\:-inset-y-24 { top: -6rem !important; bottom: -6rem !important; } - .\32xl\:-inset-x-24 { - right: -6rem !important; - left: -6rem !important; - } - .\32xl\:-inset-y-28 { top: -7rem !important; bottom: -7rem !important; } - .\32xl\:-inset-x-28 { - right: -7rem !important; - left: -7rem !important; - } - .\32xl\:-inset-y-32 { top: -8rem !important; bottom: -8rem !important; } - .\32xl\:-inset-x-32 { - right: -8rem !important; - left: -8rem !important; - } - .\32xl\:-inset-y-36 { top: -9rem !important; bottom: -9rem !important; } - .\32xl\:-inset-x-36 { - right: -9rem !important; - left: -9rem !important; - } - .\32xl\:-inset-y-40 { top: -10rem !important; bottom: -10rem !important; } - .\32xl\:-inset-x-40 { - right: -10rem !important; - left: -10rem !important; - } - .\32xl\:-inset-y-44 { top: -11rem !important; bottom: -11rem !important; } - .\32xl\:-inset-x-44 { - right: -11rem !important; - left: -11rem !important; - } - .\32xl\:-inset-y-48 { top: -12rem !important; bottom: -12rem !important; } - .\32xl\:-inset-x-48 { - right: -12rem !important; - left: -12rem !important; - } - .\32xl\:-inset-y-52 { top: -13rem !important; bottom: -13rem !important; } - .\32xl\:-inset-x-52 { - right: -13rem !important; - left: -13rem !important; - } - .\32xl\:-inset-y-56 { top: -14rem !important; bottom: -14rem !important; } - .\32xl\:-inset-x-56 { - right: -14rem !important; - left: -14rem !important; - } - .\32xl\:-inset-y-60 { top: -15rem !important; bottom: -15rem !important; } - .\32xl\:-inset-x-60 { - right: -15rem !important; - left: -15rem !important; - } - .\32xl\:-inset-y-64 { top: -16rem !important; bottom: -16rem !important; } - .\32xl\:-inset-x-64 { - right: -16rem !important; - left: -16rem !important; - } - .\32xl\:-inset-y-72 { top: -18rem !important; bottom: -18rem !important; } - .\32xl\:-inset-x-72 { - right: -18rem !important; - left: -18rem !important; - } - .\32xl\:-inset-y-80 { top: -20rem !important; bottom: -20rem !important; } - .\32xl\:-inset-x-80 { - right: -20rem !important; - left: -20rem !important; - } - .\32xl\:-inset-y-96 { top: -24rem !important; bottom: -24rem !important; } - .\32xl\:-inset-x-96 { - right: -24rem !important; - left: -24rem !important; - } - .\32xl\:-inset-y-px { top: -1px !important; bottom: -1px !important; } - .\32xl\:-inset-x-px { - right: -1px !important; - left: -1px !important; - } - .\32xl\:-inset-y-0\.5 { top: -0.125rem !important; bottom: -0.125rem !important; } - .\32xl\:-inset-x-0\.5 { - right: -0.125rem !important; - left: -0.125rem !important; - } - .\32xl\:-inset-y-1\.5 { top: -0.375rem !important; bottom: -0.375rem !important; } - .\32xl\:-inset-x-1\.5 { - right: -0.375rem !important; - left: -0.375rem !important; - } - .\32xl\:-inset-y-2\.5 { top: -0.625rem !important; bottom: -0.625rem !important; } - .\32xl\:-inset-x-2\.5 { - right: -0.625rem !important; - left: -0.625rem !important; - } - .\32xl\:-inset-y-3\.5 { top: -0.875rem !important; bottom: -0.875rem !important; } - .\32xl\:-inset-x-3\.5 { - right: -0.875rem !important; - left: -0.875rem !important; - } - .\32xl\:inset-y-1\/2 { top: 50% !important; bottom: 50% !important; } - .\32xl\:inset-x-1\/2 { - right: 50% !important; - left: 50% !important; - } - .\32xl\:inset-y-1\/3 { top: 33.333333% !important; bottom: 33.333333% !important; } - .\32xl\:inset-x-1\/3 { - right: 33.333333% !important; - left: 33.333333% !important; - } - .\32xl\:inset-y-2\/3 { top: 66.666667% !important; bottom: 66.666667% !important; } - .\32xl\:inset-x-2\/3 { - right: 66.666667% !important; - left: 66.666667% !important; - } - .\32xl\:inset-y-1\/4 { top: 25% !important; bottom: 25% !important; } - .\32xl\:inset-x-1\/4 { - right: 25% !important; - left: 25% !important; - } - .\32xl\:inset-y-2\/4 { top: 50% !important; bottom: 50% !important; } - .\32xl\:inset-x-2\/4 { - right: 50% !important; - left: 50% !important; - } - .\32xl\:inset-y-3\/4 { top: 75% !important; bottom: 75% !important; } - .\32xl\:inset-x-3\/4 { - right: 75% !important; - left: 75% !important; - } - .\32xl\:inset-y-full { top: 100% !important; bottom: 100% !important; } - .\32xl\:inset-x-full { - right: 100% !important; - left: 100% !important; - } - .\32xl\:-inset-y-1\/2 { top: -50% !important; bottom: -50% !important; } - .\32xl\:-inset-x-1\/2 { - right: -50% !important; - left: -50% !important; - } - .\32xl\:-inset-y-1\/3 { top: -33.333333% !important; bottom: -33.333333% !important; } - .\32xl\:-inset-x-1\/3 { - right: -33.333333% !important; - left: -33.333333% !important; - } - .\32xl\:-inset-y-2\/3 { top: -66.666667% !important; bottom: -66.666667% !important; } - .\32xl\:-inset-x-2\/3 { - right: -66.666667% !important; - left: -66.666667% !important; - } - .\32xl\:-inset-y-1\/4 { top: -25% !important; bottom: -25% !important; } - .\32xl\:-inset-x-1\/4 { - right: -25% !important; - left: -25% !important; - } - .\32xl\:-inset-y-2\/4 { top: -50% !important; bottom: -50% !important; } - .\32xl\:-inset-x-2\/4 { - right: -50% !important; - left: -50% !important; - } - .\32xl\:-inset-y-3\/4 { top: -75% !important; bottom: -75% !important; } - .\32xl\:-inset-x-3\/4 { - right: -75% !important; - left: -75% !important; - } - .\32xl\:-inset-y-full { top: -100% !important; bottom: -100% !important; } - .\32xl\:-inset-x-full { - right: -100% !important; - left: -100% !important; - } - .\32xl\:top-0 { top: 0px !important; } - .\32xl\:right-0 { - right: 0px !important; + .\32xl\:top-1 { + top: 0.25rem !important; } - .\32xl\:bottom-0 { - bottom: 0px !important; + .\32xl\:top-2 { + top: 0.5rem !important; } - .\32xl\:left-0 { - left: 0px !important; + .\32xl\:top-3 { + top: 0.75rem !important; } - .\32xl\:top-1 { - top: 0.25rem !important; + .\32xl\:top-4 { + top: 1rem !important; } - .\32xl\:right-1 { - right: 0.25rem !important; + .\32xl\:top-5 { + top: 1.25rem !important; } - .\32xl\:bottom-1 { - bottom: 0.25rem !important; + .\32xl\:top-6 { + top: 1.5rem !important; } - .\32xl\:left-1 { - left: 0.25rem !important; + .\32xl\:top-7 { + top: 1.75rem !important; } - .\32xl\:top-2 { - top: 0.5rem !important; + .\32xl\:top-8 { + top: 2rem !important; } - .\32xl\:right-2 { - right: 0.5rem !important; + .\32xl\:top-9 { + top: 2.25rem !important; } - .\32xl\:bottom-2 { - bottom: 0.5rem !important; + .\32xl\:top-10 { + top: 2.5rem !important; } - .\32xl\:left-2 { - left: 0.5rem !important; + .\32xl\:top-11 { + top: 2.75rem !important; } - .\32xl\:top-3 { - top: 0.75rem !important; + .\32xl\:top-12 { + top: 3rem !important; } - .\32xl\:right-3 { - right: 0.75rem !important; + .\32xl\:top-14 { + top: 3.5rem !important; } - .\32xl\:bottom-3 { - bottom: 0.75rem !important; + .\32xl\:top-16 { + top: 4rem !important; } - .\32xl\:left-3 { - left: 0.75rem !important; + .\32xl\:top-20 { + top: 5rem !important; } - .\32xl\:top-4 { - top: 1rem !important; + .\32xl\:top-24 { + top: 6rem !important; } - .\32xl\:right-4 { - right: 1rem !important; + .\32xl\:top-28 { + top: 7rem !important; } - .\32xl\:bottom-4 { - bottom: 1rem !important; + .\32xl\:top-32 { + top: 8rem !important; } - .\32xl\:left-4 { - left: 1rem !important; + .\32xl\:top-36 { + top: 9rem !important; } - .\32xl\:top-5 { - top: 1.25rem !important; + .\32xl\:top-40 { + top: 10rem !important; } - .\32xl\:right-5 { - right: 1.25rem !important; + .\32xl\:top-44 { + top: 11rem !important; } - .\32xl\:bottom-5 { - bottom: 1.25rem !important; + .\32xl\:top-48 { + top: 12rem !important; } - .\32xl\:left-5 { - left: 1.25rem !important; + .\32xl\:top-52 { + top: 13rem !important; } - .\32xl\:top-6 { - top: 1.5rem !important; + .\32xl\:top-56 { + top: 14rem !important; } - .\32xl\:right-6 { - right: 1.5rem !important; + .\32xl\:top-60 { + top: 15rem !important; } - .\32xl\:bottom-6 { - bottom: 1.5rem !important; + .\32xl\:top-64 { + top: 16rem !important; } - .\32xl\:left-6 { - left: 1.5rem !important; + .\32xl\:top-72 { + top: 18rem !important; } - .\32xl\:top-7 { - top: 1.75rem !important; + .\32xl\:top-80 { + top: 20rem !important; } - .\32xl\:right-7 { - right: 1.75rem !important; + .\32xl\:top-96 { + top: 24rem !important; } - .\32xl\:bottom-7 { - bottom: 1.75rem !important; + .\32xl\:top-auto { + top: auto !important; } - .\32xl\:left-7 { - left: 1.75rem !important; + .\32xl\:top-px { + top: 1px !important; } - .\32xl\:top-8 { - top: 2rem !important; + .\32xl\:top-0\.5 { + top: 0.125rem !important; } - .\32xl\:right-8 { - right: 2rem !important; + .\32xl\:top-1\.5 { + top: 0.375rem !important; } - .\32xl\:bottom-8 { - bottom: 2rem !important; + .\32xl\:top-2\.5 { + top: 0.625rem !important; } - .\32xl\:left-8 { - left: 2rem !important; + .\32xl\:top-3\.5 { + top: 0.875rem !important; } - .\32xl\:top-9 { - top: 2.25rem !important; + .\32xl\:-top-0 { + top: 0px !important; } - .\32xl\:right-9 { - right: 2.25rem !important; + .\32xl\:-top-1 { + top: -0.25rem !important; } - .\32xl\:bottom-9 { - bottom: 2.25rem !important; + .\32xl\:-top-2 { + top: -0.5rem !important; } - .\32xl\:left-9 { - left: 2.25rem !important; + .\32xl\:-top-3 { + top: -0.75rem !important; } - .\32xl\:top-10 { - top: 2.5rem !important; + .\32xl\:-top-4 { + top: -1rem !important; } - .\32xl\:right-10 { - right: 2.5rem !important; + .\32xl\:-top-5 { + top: -1.25rem !important; } - .\32xl\:bottom-10 { - bottom: 2.5rem !important; + .\32xl\:-top-6 { + top: -1.5rem !important; } - .\32xl\:left-10 { - left: 2.5rem !important; + .\32xl\:-top-7 { + top: -1.75rem !important; } - .\32xl\:top-11 { - top: 2.75rem !important; + .\32xl\:-top-8 { + top: -2rem !important; } - .\32xl\:right-11 { - right: 2.75rem !important; + .\32xl\:-top-9 { + top: -2.25rem !important; } - .\32xl\:bottom-11 { - bottom: 2.75rem !important; + .\32xl\:-top-10 { + top: -2.5rem !important; } - .\32xl\:left-11 { - left: 2.75rem !important; + .\32xl\:-top-11 { + top: -2.75rem !important; } - .\32xl\:top-12 { - top: 3rem !important; + .\32xl\:-top-12 { + top: -3rem !important; } - .\32xl\:right-12 { - right: 3rem !important; + .\32xl\:-top-14 { + top: -3.5rem !important; } - .\32xl\:bottom-12 { - bottom: 3rem !important; + .\32xl\:-top-16 { + top: -4rem !important; } - .\32xl\:left-12 { - left: 3rem !important; + .\32xl\:-top-20 { + top: -5rem !important; } - .\32xl\:top-14 { - top: 3.5rem !important; + .\32xl\:-top-24 { + top: -6rem !important; } - .\32xl\:right-14 { - right: 3.5rem !important; + .\32xl\:-top-28 { + top: -7rem !important; } - .\32xl\:bottom-14 { - bottom: 3.5rem !important; + .\32xl\:-top-32 { + top: -8rem !important; } - .\32xl\:left-14 { - left: 3.5rem !important; + .\32xl\:-top-36 { + top: -9rem !important; } - .\32xl\:top-16 { - top: 4rem !important; + .\32xl\:-top-40 { + top: -10rem !important; } - .\32xl\:right-16 { - right: 4rem !important; + .\32xl\:-top-44 { + top: -11rem !important; } - .\32xl\:bottom-16 { - bottom: 4rem !important; + .\32xl\:-top-48 { + top: -12rem !important; } - .\32xl\:left-16 { - left: 4rem !important; + .\32xl\:-top-52 { + top: -13rem !important; } - .\32xl\:top-20 { - top: 5rem !important; + .\32xl\:-top-56 { + top: -14rem !important; } - .\32xl\:right-20 { - right: 5rem !important; + .\32xl\:-top-60 { + top: -15rem !important; } - .\32xl\:bottom-20 { - bottom: 5rem !important; + .\32xl\:-top-64 { + top: -16rem !important; } - .\32xl\:left-20 { - left: 5rem !important; + .\32xl\:-top-72 { + top: -18rem !important; } - .\32xl\:top-24 { - top: 6rem !important; + .\32xl\:-top-80 { + top: -20rem !important; } - .\32xl\:right-24 { - right: 6rem !important; + .\32xl\:-top-96 { + top: -24rem !important; } - .\32xl\:bottom-24 { - bottom: 6rem !important; + .\32xl\:-top-px { + top: -1px !important; } - .\32xl\:left-24 { - left: 6rem !important; + .\32xl\:-top-0\.5 { + top: -0.125rem !important; } - .\32xl\:top-28 { - top: 7rem !important; + .\32xl\:-top-1\.5 { + top: -0.375rem !important; } - .\32xl\:right-28 { - right: 7rem !important; + .\32xl\:-top-2\.5 { + top: -0.625rem !important; } - .\32xl\:bottom-28 { - bottom: 7rem !important; + .\32xl\:-top-3\.5 { + top: -0.875rem !important; } - .\32xl\:left-28 { - left: 7rem !important; + .\32xl\:top-1\/2 { + top: 50% !important; } - .\32xl\:top-32 { - top: 8rem !important; + .\32xl\:top-1\/3 { + top: 33.333333% !important; } - .\32xl\:right-32 { - right: 8rem !important; + .\32xl\:top-2\/3 { + top: 66.666667% !important; } - .\32xl\:bottom-32 { - bottom: 8rem !important; + .\32xl\:top-1\/4 { + top: 25% !important; } - .\32xl\:left-32 { - left: 8rem !important; + .\32xl\:top-2\/4 { + top: 50% !important; } - .\32xl\:top-36 { - top: 9rem !important; + .\32xl\:top-3\/4 { + top: 75% !important; } - .\32xl\:right-36 { - right: 9rem !important; + .\32xl\:top-full { + top: 100% !important; } - .\32xl\:bottom-36 { - bottom: 9rem !important; + .\32xl\:-top-1\/2 { + top: -50% !important; } - .\32xl\:left-36 { - left: 9rem !important; + .\32xl\:-top-1\/3 { + top: -33.333333% !important; } - .\32xl\:top-40 { - top: 10rem !important; + .\32xl\:-top-2\/3 { + top: -66.666667% !important; } - .\32xl\:right-40 { - right: 10rem !important; + .\32xl\:-top-1\/4 { + top: -25% !important; } - .\32xl\:bottom-40 { - bottom: 10rem !important; + .\32xl\:-top-2\/4 { + top: -50% !important; } - .\32xl\:left-40 { - left: 10rem !important; + .\32xl\:-top-3\/4 { + top: -75% !important; } - .\32xl\:top-44 { - top: 11rem !important; + .\32xl\:-top-full { + top: -100% !important; } - .\32xl\:right-44 { - right: 11rem !important; + .\32xl\:right-0 { + right: 0px !important; } - .\32xl\:bottom-44 { - bottom: 11rem !important; + .\32xl\:right-1 { + right: 0.25rem !important; } - .\32xl\:left-44 { - left: 11rem !important; + .\32xl\:right-2 { + right: 0.5rem !important; } - .\32xl\:top-48 { - top: 12rem !important; + .\32xl\:right-3 { + right: 0.75rem !important; } - .\32xl\:right-48 { - right: 12rem !important; + .\32xl\:right-4 { + right: 1rem !important; } - .\32xl\:bottom-48 { - bottom: 12rem !important; + .\32xl\:right-5 { + right: 1.25rem !important; } - .\32xl\:left-48 { - left: 12rem !important; + .\32xl\:right-6 { + right: 1.5rem !important; } - .\32xl\:top-52 { - top: 13rem !important; + .\32xl\:right-7 { + right: 1.75rem !important; } - .\32xl\:right-52 { - right: 13rem !important; + .\32xl\:right-8 { + right: 2rem !important; } - .\32xl\:bottom-52 { - bottom: 13rem !important; + .\32xl\:right-9 { + right: 2.25rem !important; } - .\32xl\:left-52 { - left: 13rem !important; + .\32xl\:right-10 { + right: 2.5rem !important; } - .\32xl\:top-56 { - top: 14rem !important; + .\32xl\:right-11 { + right: 2.75rem !important; } - .\32xl\:right-56 { - right: 14rem !important; + .\32xl\:right-12 { + right: 3rem !important; } - .\32xl\:bottom-56 { - bottom: 14rem !important; + .\32xl\:right-14 { + right: 3.5rem !important; } - .\32xl\:left-56 { - left: 14rem !important; + .\32xl\:right-16 { + right: 4rem !important; } - .\32xl\:top-60 { - top: 15rem !important; + .\32xl\:right-20 { + right: 5rem !important; } - .\32xl\:right-60 { - right: 15rem !important; + .\32xl\:right-24 { + right: 6rem !important; } - .\32xl\:bottom-60 { - bottom: 15rem !important; + .\32xl\:right-28 { + right: 7rem !important; } - .\32xl\:left-60 { - left: 15rem !important; + .\32xl\:right-32 { + right: 8rem !important; } - .\32xl\:top-64 { - top: 16rem !important; + .\32xl\:right-36 { + right: 9rem !important; } - .\32xl\:right-64 { - right: 16rem !important; + .\32xl\:right-40 { + right: 10rem !important; } - .\32xl\:bottom-64 { - bottom: 16rem !important; + .\32xl\:right-44 { + right: 11rem !important; } - .\32xl\:left-64 { - left: 16rem !important; + .\32xl\:right-48 { + right: 12rem !important; } - .\32xl\:top-72 { - top: 18rem !important; + .\32xl\:right-52 { + right: 13rem !important; } - .\32xl\:right-72 { - right: 18rem !important; + .\32xl\:right-56 { + right: 14rem !important; } - .\32xl\:bottom-72 { - bottom: 18rem !important; + .\32xl\:right-60 { + right: 15rem !important; } - .\32xl\:left-72 { - left: 18rem !important; + .\32xl\:right-64 { + right: 16rem !important; } - .\32xl\:top-80 { - top: 20rem !important; + .\32xl\:right-72 { + right: 18rem !important; } .\32xl\:right-80 { right: 20rem !important; } - .\32xl\:bottom-80 { - bottom: 20rem !important; + .\32xl\:right-96 { + right: 24rem !important; } - .\32xl\:left-80 { - left: 20rem !important; + .\32xl\:right-auto { + right: auto !important; } - .\32xl\:top-96 { - top: 24rem !important; + .\32xl\:right-px { + right: 1px !important; } - .\32xl\:right-96 { - right: 24rem !important; + .\32xl\:right-0\.5 { + right: 0.125rem !important; } - .\32xl\:bottom-96 { - bottom: 24rem !important; + .\32xl\:right-1\.5 { + right: 0.375rem !important; } - .\32xl\:left-96 { - left: 24rem !important; + .\32xl\:right-2\.5 { + right: 0.625rem !important; } - .\32xl\:top-auto { - top: auto !important; + .\32xl\:right-3\.5 { + right: 0.875rem !important; } - .\32xl\:right-auto { - right: auto !important; + .\32xl\:-right-0 { + right: 0px !important; } - .\32xl\:bottom-auto { - bottom: auto !important; + .\32xl\:-right-1 { + right: -0.25rem !important; } - .\32xl\:left-auto { - left: auto !important; + .\32xl\:-right-2 { + right: -0.5rem !important; } - .\32xl\:top-px { - top: 1px !important; + .\32xl\:-right-3 { + right: -0.75rem !important; } - .\32xl\:right-px { - right: 1px !important; + .\32xl\:-right-4 { + right: -1rem !important; } - .\32xl\:bottom-px { - bottom: 1px !important; + .\32xl\:-right-5 { + right: -1.25rem !important; } - .\32xl\:left-px { - left: 1px !important; + .\32xl\:-right-6 { + right: -1.5rem !important; } - .\32xl\:top-0\.5 { - top: 0.125rem !important; + .\32xl\:-right-7 { + right: -1.75rem !important; } - .\32xl\:right-0\.5 { - right: 0.125rem !important; + .\32xl\:-right-8 { + right: -2rem !important; } - .\32xl\:bottom-0\.5 { - bottom: 0.125rem !important; + .\32xl\:-right-9 { + right: -2.25rem !important; } - .\32xl\:left-0\.5 { - left: 0.125rem !important; + .\32xl\:-right-10 { + right: -2.5rem !important; } - .\32xl\:top-1\.5 { - top: 0.375rem !important; + .\32xl\:-right-11 { + right: -2.75rem !important; } - .\32xl\:right-1\.5 { - right: 0.375rem !important; + .\32xl\:-right-12 { + right: -3rem !important; } - .\32xl\:bottom-1\.5 { - bottom: 0.375rem !important; + .\32xl\:-right-14 { + right: -3.5rem !important; } - .\32xl\:left-1\.5 { - left: 0.375rem !important; + .\32xl\:-right-16 { + right: -4rem !important; } - .\32xl\:top-2\.5 { - top: 0.625rem !important; + .\32xl\:-right-20 { + right: -5rem !important; } - .\32xl\:right-2\.5 { - right: 0.625rem !important; + .\32xl\:-right-24 { + right: -6rem !important; } - .\32xl\:bottom-2\.5 { - bottom: 0.625rem !important; + .\32xl\:-right-28 { + right: -7rem !important; } - .\32xl\:left-2\.5 { - left: 0.625rem !important; + .\32xl\:-right-32 { + right: -8rem !important; } - .\32xl\:top-3\.5 { - top: 0.875rem !important; + .\32xl\:-right-36 { + right: -9rem !important; } - .\32xl\:right-3\.5 { - right: 0.875rem !important; + .\32xl\:-right-40 { + right: -10rem !important; } - .\32xl\:bottom-3\.5 { - bottom: 0.875rem !important; + .\32xl\:-right-44 { + right: -11rem !important; } - .\32xl\:left-3\.5 { - left: 0.875rem !important; + .\32xl\:-right-48 { + right: -12rem !important; } - .\32xl\:-top-0 { - top: 0px !important; + .\32xl\:-right-52 { + right: -13rem !important; } - .\32xl\:-right-0 { - right: 0px !important; + .\32xl\:-right-56 { + right: -14rem !important; } - .\32xl\:-bottom-0 { - bottom: 0px !important; + .\32xl\:-right-60 { + right: -15rem !important; } - .\32xl\:-left-0 { - left: 0px !important; + .\32xl\:-right-64 { + right: -16rem !important; } - .\32xl\:-top-1 { - top: -0.25rem !important; + .\32xl\:-right-72 { + right: -18rem !important; } - .\32xl\:-right-1 { - right: -0.25rem !important; + .\32xl\:-right-80 { + right: -20rem !important; } - .\32xl\:-bottom-1 { - bottom: -0.25rem !important; + .\32xl\:-right-96 { + right: -24rem !important; } - .\32xl\:-left-1 { - left: -0.25rem !important; + .\32xl\:-right-px { + right: -1px !important; } - .\32xl\:-top-2 { - top: -0.5rem !important; + .\32xl\:-right-0\.5 { + right: -0.125rem !important; } - .\32xl\:-right-2 { - right: -0.5rem !important; + .\32xl\:-right-1\.5 { + right: -0.375rem !important; } - .\32xl\:-bottom-2 { - bottom: -0.5rem !important; + .\32xl\:-right-2\.5 { + right: -0.625rem !important; } - .\32xl\:-left-2 { - left: -0.5rem !important; + .\32xl\:-right-3\.5 { + right: -0.875rem !important; } - .\32xl\:-top-3 { - top: -0.75rem !important; + .\32xl\:right-1\/2 { + right: 50% !important; } - .\32xl\:-right-3 { - right: -0.75rem !important; + .\32xl\:right-1\/3 { + right: 33.333333% !important; } - .\32xl\:-bottom-3 { - bottom: -0.75rem !important; + .\32xl\:right-2\/3 { + right: 66.666667% !important; } - .\32xl\:-left-3 { - left: -0.75rem !important; + .\32xl\:right-1\/4 { + right: 25% !important; } - .\32xl\:-top-4 { - top: -1rem !important; + .\32xl\:right-2\/4 { + right: 50% !important; } - .\32xl\:-right-4 { - right: -1rem !important; + .\32xl\:right-3\/4 { + right: 75% !important; } - .\32xl\:-bottom-4 { - bottom: -1rem !important; + .\32xl\:right-full { + right: 100% !important; } - .\32xl\:-left-4 { - left: -1rem !important; + .\32xl\:-right-1\/2 { + right: -50% !important; } - .\32xl\:-top-5 { - top: -1.25rem !important; + .\32xl\:-right-1\/3 { + right: -33.333333% !important; } - .\32xl\:-right-5 { - right: -1.25rem !important; + .\32xl\:-right-2\/3 { + right: -66.666667% !important; } - .\32xl\:-bottom-5 { - bottom: -1.25rem !important; + .\32xl\:-right-1\/4 { + right: -25% !important; } - .\32xl\:-left-5 { - left: -1.25rem !important; + .\32xl\:-right-2\/4 { + right: -50% !important; } - .\32xl\:-top-6 { - top: -1.5rem !important; + .\32xl\:-right-3\/4 { + right: -75% !important; } - .\32xl\:-right-6 { - right: -1.5rem !important; + .\32xl\:-right-full { + right: -100% !important; } - .\32xl\:-bottom-6 { - bottom: -1.5rem !important; + .\32xl\:bottom-0 { + bottom: 0px !important; } - .\32xl\:-left-6 { - left: -1.5rem !important; + .\32xl\:bottom-1 { + bottom: 0.25rem !important; } - .\32xl\:-top-7 { - top: -1.75rem !important; + .\32xl\:bottom-2 { + bottom: 0.5rem !important; } - .\32xl\:-right-7 { - right: -1.75rem !important; + .\32xl\:bottom-3 { + bottom: 0.75rem !important; } - .\32xl\:-bottom-7 { - bottom: -1.75rem !important; + .\32xl\:bottom-4 { + bottom: 1rem !important; } - .\32xl\:-left-7 { - left: -1.75rem !important; + .\32xl\:bottom-5 { + bottom: 1.25rem !important; } - .\32xl\:-top-8 { - top: -2rem !important; + .\32xl\:bottom-6 { + bottom: 1.5rem !important; } - .\32xl\:-right-8 { - right: -2rem !important; + .\32xl\:bottom-7 { + bottom: 1.75rem !important; } - .\32xl\:-bottom-8 { - bottom: -2rem !important; + .\32xl\:bottom-8 { + bottom: 2rem !important; } - .\32xl\:-left-8 { - left: -2rem !important; + .\32xl\:bottom-9 { + bottom: 2.25rem !important; } - .\32xl\:-top-9 { - top: -2.25rem !important; + .\32xl\:bottom-10 { + bottom: 2.5rem !important; } - .\32xl\:-right-9 { - right: -2.25rem !important; + .\32xl\:bottom-11 { + bottom: 2.75rem !important; } - .\32xl\:-bottom-9 { - bottom: -2.25rem !important; + .\32xl\:bottom-12 { + bottom: 3rem !important; } - .\32xl\:-left-9 { - left: -2.25rem !important; + .\32xl\:bottom-14 { + bottom: 3.5rem !important; } - .\32xl\:-top-10 { - top: -2.5rem !important; + .\32xl\:bottom-16 { + bottom: 4rem !important; } - .\32xl\:-right-10 { - right: -2.5rem !important; + .\32xl\:bottom-20 { + bottom: 5rem !important; } - .\32xl\:-bottom-10 { - bottom: -2.5rem !important; + .\32xl\:bottom-24 { + bottom: 6rem !important; } - .\32xl\:-left-10 { - left: -2.5rem !important; + .\32xl\:bottom-28 { + bottom: 7rem !important; } - .\32xl\:-top-11 { - top: -2.75rem !important; + .\32xl\:bottom-32 { + bottom: 8rem !important; } - .\32xl\:-right-11 { - right: -2.75rem !important; + .\32xl\:bottom-36 { + bottom: 9rem !important; } - .\32xl\:-bottom-11 { - bottom: -2.75rem !important; + .\32xl\:bottom-40 { + bottom: 10rem !important; } - .\32xl\:-left-11 { - left: -2.75rem !important; + .\32xl\:bottom-44 { + bottom: 11rem !important; } - .\32xl\:-top-12 { - top: -3rem !important; + .\32xl\:bottom-48 { + bottom: 12rem !important; } - .\32xl\:-right-12 { - right: -3rem !important; + .\32xl\:bottom-52 { + bottom: 13rem !important; } - .\32xl\:-bottom-12 { - bottom: -3rem !important; + .\32xl\:bottom-56 { + bottom: 14rem !important; } - .\32xl\:-left-12 { - left: -3rem !important; + .\32xl\:bottom-60 { + bottom: 15rem !important; } - .\32xl\:-top-14 { - top: -3.5rem !important; + .\32xl\:bottom-64 { + bottom: 16rem !important; } - .\32xl\:-right-14 { - right: -3.5rem !important; + .\32xl\:bottom-72 { + bottom: 18rem !important; } - .\32xl\:-bottom-14 { - bottom: -3.5rem !important; + .\32xl\:bottom-80 { + bottom: 20rem !important; } - .\32xl\:-left-14 { - left: -3.5rem !important; + .\32xl\:bottom-96 { + bottom: 24rem !important; } - .\32xl\:-top-16 { - top: -4rem !important; + .\32xl\:bottom-auto { + bottom: auto !important; } - .\32xl\:-right-16 { - right: -4rem !important; + .\32xl\:bottom-px { + bottom: 1px !important; } - .\32xl\:-bottom-16 { - bottom: -4rem !important; + .\32xl\:bottom-0\.5 { + bottom: 0.125rem !important; } - .\32xl\:-left-16 { - left: -4rem !important; + .\32xl\:bottom-1\.5 { + bottom: 0.375rem !important; } - .\32xl\:-top-20 { - top: -5rem !important; + .\32xl\:bottom-2\.5 { + bottom: 0.625rem !important; } - .\32xl\:-right-20 { - right: -5rem !important; + .\32xl\:bottom-3\.5 { + bottom: 0.875rem !important; } - .\32xl\:-bottom-20 { - bottom: -5rem !important; + .\32xl\:-bottom-0 { + bottom: 0px !important; } - .\32xl\:-left-20 { - left: -5rem !important; + .\32xl\:-bottom-1 { + bottom: -0.25rem !important; } - .\32xl\:-top-24 { - top: -6rem !important; + .\32xl\:-bottom-2 { + bottom: -0.5rem !important; } - .\32xl\:-right-24 { - right: -6rem !important; + .\32xl\:-bottom-3 { + bottom: -0.75rem !important; } - .\32xl\:-bottom-24 { - bottom: -6rem !important; + .\32xl\:-bottom-4 { + bottom: -1rem !important; } - .\32xl\:-left-24 { - left: -6rem !important; + .\32xl\:-bottom-5 { + bottom: -1.25rem !important; } - .\32xl\:-top-28 { - top: -7rem !important; + .\32xl\:-bottom-6 { + bottom: -1.5rem !important; } - .\32xl\:-right-28 { - right: -7rem !important; + .\32xl\:-bottom-7 { + bottom: -1.75rem !important; } - .\32xl\:-bottom-28 { - bottom: -7rem !important; + .\32xl\:-bottom-8 { + bottom: -2rem !important; } - .\32xl\:-left-28 { - left: -7rem !important; + .\32xl\:-bottom-9 { + bottom: -2.25rem !important; } - .\32xl\:-top-32 { - top: -8rem !important; + .\32xl\:-bottom-10 { + bottom: -2.5rem !important; } - .\32xl\:-right-32 { - right: -8rem !important; + .\32xl\:-bottom-11 { + bottom: -2.75rem !important; } - .\32xl\:-bottom-32 { - bottom: -8rem !important; + .\32xl\:-bottom-12 { + bottom: -3rem !important; } - .\32xl\:-left-32 { - left: -8rem !important; + .\32xl\:-bottom-14 { + bottom: -3.5rem !important; } - .\32xl\:-top-36 { - top: -9rem !important; + .\32xl\:-bottom-16 { + bottom: -4rem !important; } - .\32xl\:-right-36 { - right: -9rem !important; + .\32xl\:-bottom-20 { + bottom: -5rem !important; } - .\32xl\:-bottom-36 { - bottom: -9rem !important; + .\32xl\:-bottom-24 { + bottom: -6rem !important; } - .\32xl\:-left-36 { - left: -9rem !important; + .\32xl\:-bottom-28 { + bottom: -7rem !important; } - .\32xl\:-top-40 { - top: -10rem !important; + .\32xl\:-bottom-32 { + bottom: -8rem !important; } - .\32xl\:-right-40 { - right: -10rem !important; + .\32xl\:-bottom-36 { + bottom: -9rem !important; } .\32xl\:-bottom-40 { bottom: -10rem !important; } - .\32xl\:-left-40 { - left: -10rem !important; + .\32xl\:-bottom-44 { + bottom: -11rem !important; } - .\32xl\:-top-44 { - top: -11rem !important; + .\32xl\:-bottom-48 { + bottom: -12rem !important; } - .\32xl\:-right-44 { - right: -11rem !important; + .\32xl\:-bottom-52 { + bottom: -13rem !important; } - .\32xl\:-bottom-44 { - bottom: -11rem !important; + .\32xl\:-bottom-56 { + bottom: -14rem !important; } - .\32xl\:-left-44 { - left: -11rem !important; + .\32xl\:-bottom-60 { + bottom: -15rem !important; } - .\32xl\:-top-48 { - top: -12rem !important; + .\32xl\:-bottom-64 { + bottom: -16rem !important; } - .\32xl\:-right-48 { - right: -12rem !important; + .\32xl\:-bottom-72 { + bottom: -18rem !important; } - .\32xl\:-bottom-48 { - bottom: -12rem !important; + .\32xl\:-bottom-80 { + bottom: -20rem !important; } - .\32xl\:-left-48 { - left: -12rem !important; + .\32xl\:-bottom-96 { + bottom: -24rem !important; } - .\32xl\:-top-52 { - top: -13rem !important; + .\32xl\:-bottom-px { + bottom: -1px !important; } - .\32xl\:-right-52 { - right: -13rem !important; + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem !important; } - .\32xl\:-bottom-52 { - bottom: -13rem !important; + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem !important; } - .\32xl\:-left-52 { - left: -13rem !important; + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem !important; } - .\32xl\:-top-56 { - top: -14rem !important; + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem !important; } - .\32xl\:-right-56 { - right: -14rem !important; + .\32xl\:bottom-1\/2 { + bottom: 50% !important; } - .\32xl\:-bottom-56 { - bottom: -14rem !important; + .\32xl\:bottom-1\/3 { + bottom: 33.333333% !important; } - .\32xl\:-left-56 { - left: -14rem !important; + .\32xl\:bottom-2\/3 { + bottom: 66.666667% !important; } - .\32xl\:-top-60 { - top: -15rem !important; + .\32xl\:bottom-1\/4 { + bottom: 25% !important; } - .\32xl\:-right-60 { - right: -15rem !important; + .\32xl\:bottom-2\/4 { + bottom: 50% !important; } - .\32xl\:-bottom-60 { - bottom: -15rem !important; + .\32xl\:bottom-3\/4 { + bottom: 75% !important; } - .\32xl\:-left-60 { - left: -15rem !important; + .\32xl\:bottom-full { + bottom: 100% !important; } - .\32xl\:-top-64 { - top: -16rem !important; + .\32xl\:-bottom-1\/2 { + bottom: -50% !important; } - .\32xl\:-right-64 { - right: -16rem !important; + .\32xl\:-bottom-1\/3 { + bottom: -33.333333% !important; } - .\32xl\:-bottom-64 { - bottom: -16rem !important; + .\32xl\:-bottom-2\/3 { + bottom: -66.666667% !important; } - .\32xl\:-left-64 { - left: -16rem !important; + .\32xl\:-bottom-1\/4 { + bottom: -25% !important; } - .\32xl\:-top-72 { - top: -18rem !important; + .\32xl\:-bottom-2\/4 { + bottom: -50% !important; } - .\32xl\:-right-72 { - right: -18rem !important; + .\32xl\:-bottom-3\/4 { + bottom: -75% !important; } - .\32xl\:-bottom-72 { - bottom: -18rem !important; + .\32xl\:-bottom-full { + bottom: -100% !important; } - .\32xl\:-left-72 { - left: -18rem !important; + .\32xl\:left-0 { + left: 0px !important; } - .\32xl\:-top-80 { - top: -20rem !important; + .\32xl\:left-1 { + left: 0.25rem !important; } - .\32xl\:-right-80 { - right: -20rem !important; + .\32xl\:left-2 { + left: 0.5rem !important; } - .\32xl\:-bottom-80 { - bottom: -20rem !important; + .\32xl\:left-3 { + left: 0.75rem !important; } - .\32xl\:-left-80 { - left: -20rem !important; + .\32xl\:left-4 { + left: 1rem !important; } - .\32xl\:-top-96 { - top: -24rem !important; + .\32xl\:left-5 { + left: 1.25rem !important; } - .\32xl\:-right-96 { - right: -24rem !important; + .\32xl\:left-6 { + left: 1.5rem !important; } - .\32xl\:-bottom-96 { - bottom: -24rem !important; + .\32xl\:left-7 { + left: 1.75rem !important; } - .\32xl\:-left-96 { - left: -24rem !important; + .\32xl\:left-8 { + left: 2rem !important; } - .\32xl\:-top-px { - top: -1px !important; + .\32xl\:left-9 { + left: 2.25rem !important; } - .\32xl\:-right-px { - right: -1px !important; + .\32xl\:left-10 { + left: 2.5rem !important; } - .\32xl\:-bottom-px { - bottom: -1px !important; + .\32xl\:left-11 { + left: 2.75rem !important; } - .\32xl\:-left-px { - left: -1px !important; + .\32xl\:left-12 { + left: 3rem !important; } - .\32xl\:-top-0\.5 { - top: -0.125rem !important; + .\32xl\:left-14 { + left: 3.5rem !important; } - .\32xl\:-right-0\.5 { - right: -0.125rem !important; + .\32xl\:left-16 { + left: 4rem !important; } - .\32xl\:-bottom-0\.5 { - bottom: -0.125rem !important; + .\32xl\:left-20 { + left: 5rem !important; } - .\32xl\:-left-0\.5 { - left: -0.125rem !important; + .\32xl\:left-24 { + left: 6rem !important; } - .\32xl\:-top-1\.5 { - top: -0.375rem !important; + .\32xl\:left-28 { + left: 7rem !important; } - .\32xl\:-right-1\.5 { - right: -0.375rem !important; + .\32xl\:left-32 { + left: 8rem !important; } - .\32xl\:-bottom-1\.5 { - bottom: -0.375rem !important; + .\32xl\:left-36 { + left: 9rem !important; } - .\32xl\:-left-1\.5 { - left: -0.375rem !important; + .\32xl\:left-40 { + left: 10rem !important; } - .\32xl\:-top-2\.5 { - top: -0.625rem !important; + .\32xl\:left-44 { + left: 11rem !important; } - .\32xl\:-right-2\.5 { - right: -0.625rem !important; + .\32xl\:left-48 { + left: 12rem !important; } - .\32xl\:-bottom-2\.5 { - bottom: -0.625rem !important; + .\32xl\:left-52 { + left: 13rem !important; } - .\32xl\:-left-2\.5 { - left: -0.625rem !important; + .\32xl\:left-56 { + left: 14rem !important; } - .\32xl\:-top-3\.5 { - top: -0.875rem !important; + .\32xl\:left-60 { + left: 15rem !important; } - .\32xl\:-right-3\.5 { - right: -0.875rem !important; + .\32xl\:left-64 { + left: 16rem !important; } - .\32xl\:-bottom-3\.5 { - bottom: -0.875rem !important; + .\32xl\:left-72 { + left: 18rem !important; } - .\32xl\:-left-3\.5 { - left: -0.875rem !important; + .\32xl\:left-80 { + left: 20rem !important; } - .\32xl\:top-1\/2 { - top: 50% !important; + .\32xl\:left-96 { + left: 24rem !important; } - .\32xl\:right-1\/2 { - right: 50% !important; + .\32xl\:left-auto { + left: auto !important; } - .\32xl\:bottom-1\/2 { - bottom: 50% !important; + .\32xl\:left-px { + left: 1px !important; } - .\32xl\:left-1\/2 { - left: 50% !important; + .\32xl\:left-0\.5 { + left: 0.125rem !important; } - .\32xl\:top-1\/3 { - top: 33.333333% !important; + .\32xl\:left-1\.5 { + left: 0.375rem !important; } - .\32xl\:right-1\/3 { - right: 33.333333% !important; + .\32xl\:left-2\.5 { + left: 0.625rem !important; } - .\32xl\:bottom-1\/3 { - bottom: 33.333333% !important; + .\32xl\:left-3\.5 { + left: 0.875rem !important; } - .\32xl\:left-1\/3 { - left: 33.333333% !important; + .\32xl\:-left-0 { + left: 0px !important; } - .\32xl\:top-2\/3 { - top: 66.666667% !important; + .\32xl\:-left-1 { + left: -0.25rem !important; } - .\32xl\:right-2\/3 { - right: 66.666667% !important; + .\32xl\:-left-2 { + left: -0.5rem !important; } - .\32xl\:bottom-2\/3 { - bottom: 66.666667% !important; + .\32xl\:-left-3 { + left: -0.75rem !important; } - .\32xl\:left-2\/3 { - left: 66.666667% !important; + .\32xl\:-left-4 { + left: -1rem !important; } - .\32xl\:top-1\/4 { - top: 25% !important; + .\32xl\:-left-5 { + left: -1.25rem !important; } - .\32xl\:right-1\/4 { - right: 25% !important; + .\32xl\:-left-6 { + left: -1.5rem !important; } - .\32xl\:bottom-1\/4 { - bottom: 25% !important; + .\32xl\:-left-7 { + left: -1.75rem !important; } - .\32xl\:left-1\/4 { - left: 25% !important; + .\32xl\:-left-8 { + left: -2rem !important; } - .\32xl\:top-2\/4 { - top: 50% !important; + .\32xl\:-left-9 { + left: -2.25rem !important; } - .\32xl\:right-2\/4 { - right: 50% !important; + .\32xl\:-left-10 { + left: -2.5rem !important; } - .\32xl\:bottom-2\/4 { - bottom: 50% !important; + .\32xl\:-left-11 { + left: -2.75rem !important; } - .\32xl\:left-2\/4 { - left: 50% !important; + .\32xl\:-left-12 { + left: -3rem !important; } - .\32xl\:top-3\/4 { - top: 75% !important; + .\32xl\:-left-14 { + left: -3.5rem !important; } - .\32xl\:right-3\/4 { - right: 75% !important; + .\32xl\:-left-16 { + left: -4rem !important; } - .\32xl\:bottom-3\/4 { - bottom: 75% !important; + .\32xl\:-left-20 { + left: -5rem !important; } - .\32xl\:left-3\/4 { - left: 75% !important; + .\32xl\:-left-24 { + left: -6rem !important; } - .\32xl\:top-full { - top: 100% !important; + .\32xl\:-left-28 { + left: -7rem !important; } - .\32xl\:right-full { - right: 100% !important; + .\32xl\:-left-32 { + left: -8rem !important; } - .\32xl\:bottom-full { - bottom: 100% !important; + .\32xl\:-left-36 { + left: -9rem !important; } - .\32xl\:left-full { - left: 100% !important; + .\32xl\:-left-40 { + left: -10rem !important; } - .\32xl\:-top-1\/2 { - top: -50% !important; + .\32xl\:-left-44 { + left: -11rem !important; } - .\32xl\:-right-1\/2 { - right: -50% !important; + .\32xl\:-left-48 { + left: -12rem !important; } - .\32xl\:-bottom-1\/2 { - bottom: -50% !important; + .\32xl\:-left-52 { + left: -13rem !important; } - .\32xl\:-left-1\/2 { - left: -50% !important; + .\32xl\:-left-56 { + left: -14rem !important; } - .\32xl\:-top-1\/3 { - top: -33.333333% !important; + .\32xl\:-left-60 { + left: -15rem !important; } - .\32xl\:-right-1\/3 { - right: -33.333333% !important; + .\32xl\:-left-64 { + left: -16rem !important; } - .\32xl\:-bottom-1\/3 { - bottom: -33.333333% !important; + .\32xl\:-left-72 { + left: -18rem !important; } - .\32xl\:-left-1\/3 { - left: -33.333333% !important; + .\32xl\:-left-80 { + left: -20rem !important; } - .\32xl\:-top-2\/3 { - top: -66.666667% !important; + .\32xl\:-left-96 { + left: -24rem !important; } - .\32xl\:-right-2\/3 { - right: -66.666667% !important; + .\32xl\:-left-px { + left: -1px !important; } - .\32xl\:-bottom-2\/3 { - bottom: -66.666667% !important; + .\32xl\:-left-0\.5 { + left: -0.125rem !important; } - .\32xl\:-left-2\/3 { - left: -66.666667% !important; + .\32xl\:-left-1\.5 { + left: -0.375rem !important; } - .\32xl\:-top-1\/4 { - top: -25% !important; + .\32xl\:-left-2\.5 { + left: -0.625rem !important; } - .\32xl\:-right-1\/4 { - right: -25% !important; + .\32xl\:-left-3\.5 { + left: -0.875rem !important; } - .\32xl\:-bottom-1\/4 { - bottom: -25% !important; + .\32xl\:left-1\/2 { + left: 50% !important; } - .\32xl\:-left-1\/4 { - left: -25% !important; + .\32xl\:left-1\/3 { + left: 33.333333% !important; } - .\32xl\:-top-2\/4 { - top: -50% !important; + .\32xl\:left-2\/3 { + left: 66.666667% !important; } - .\32xl\:-right-2\/4 { - right: -50% !important; + .\32xl\:left-1\/4 { + left: 25% !important; } - .\32xl\:-bottom-2\/4 { - bottom: -50% !important; + .\32xl\:left-2\/4 { + left: 50% !important; } - .\32xl\:-left-2\/4 { - left: -50% !important; + .\32xl\:left-3\/4 { + left: 75% !important; } - .\32xl\:-top-3\/4 { - top: -75% !important; + .\32xl\:left-full { + left: 100% !important; } - .\32xl\:-right-3\/4 { - right: -75% !important; + .\32xl\:-left-1\/2 { + left: -50% !important; } - .\32xl\:-bottom-3\/4 { - bottom: -75% !important; + .\32xl\:-left-1\/3 { + left: -33.333333% !important; } - .\32xl\:-left-3\/4 { - left: -75% !important; + .\32xl\:-left-2\/3 { + left: -66.666667% !important; } - .\32xl\:-top-full { - top: -100% !important; + .\32xl\:-left-1\/4 { + left: -25% !important; } - .\32xl\:-right-full { - right: -100% !important; + .\32xl\:-left-2\/4 { + left: -50% !important; } - .\32xl\:-bottom-full { - bottom: -100% !important; + .\32xl\:-left-3\/4 { + left: -75% !important; } .\32xl\:-left-full { @@ -155283,133 +155411,183 @@ video { --tw-scale-y: 1.5 !important; } - .\32xl\:scale-x-0 { + .\32xl\:hover\:scale-0:hover { --tw-scale-x: 0 !important; + --tw-scale-y: 0 !important; } - .\32xl\:scale-x-50 { + .\32xl\:hover\:scale-50:hover { --tw-scale-x: .5 !important; + --tw-scale-y: .5 !important; } - .\32xl\:scale-x-75 { + .\32xl\:hover\:scale-75:hover { --tw-scale-x: .75 !important; + --tw-scale-y: .75 !important; } - .\32xl\:scale-x-90 { + .\32xl\:hover\:scale-90:hover { --tw-scale-x: .9 !important; + --tw-scale-y: .9 !important; } - .\32xl\:scale-x-95 { + .\32xl\:hover\:scale-95:hover { --tw-scale-x: .95 !important; + --tw-scale-y: .95 !important; } - .\32xl\:scale-x-100 { + .\32xl\:hover\:scale-100:hover { --tw-scale-x: 1 !important; + --tw-scale-y: 1 !important; } - .\32xl\:scale-x-105 { + .\32xl\:hover\:scale-105:hover { --tw-scale-x: 1.05 !important; + --tw-scale-y: 1.05 !important; } - .\32xl\:scale-x-110 { + .\32xl\:hover\:scale-110:hover { --tw-scale-x: 1.1 !important; + --tw-scale-y: 1.1 !important; } - .\32xl\:scale-x-125 { + .\32xl\:hover\:scale-125:hover { --tw-scale-x: 1.25 !important; + --tw-scale-y: 1.25 !important; } - .\32xl\:scale-x-150 { + .\32xl\:hover\:scale-150:hover { --tw-scale-x: 1.5 !important; + --tw-scale-y: 1.5 !important; } - .\32xl\:scale-y-0 { + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0 !important; --tw-scale-y: 0 !important; } - .\32xl\:scale-y-50 { + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5 !important; --tw-scale-y: .5 !important; } - .\32xl\:scale-y-75 { + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75 !important; --tw-scale-y: .75 !important; } - .\32xl\:scale-y-90 { + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9 !important; --tw-scale-y: .9 !important; } - .\32xl\:scale-y-95 { + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95 !important; --tw-scale-y: .95 !important; } - .\32xl\:scale-y-100 { + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1 !important; --tw-scale-y: 1 !important; } - .\32xl\:scale-y-105 { + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05 !important; --tw-scale-y: 1.05 !important; } - .\32xl\:scale-y-110 { + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1 !important; --tw-scale-y: 1.1 !important; } - .\32xl\:scale-y-125 { + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25 !important; --tw-scale-y: 1.25 !important; } - .\32xl\:scale-y-150 { + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5 !important; --tw-scale-y: 1.5 !important; } - .\32xl\:hover\:scale-0:hover { + .\32xl\:scale-x-0 { --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; } - .\32xl\:hover\:scale-50:hover { + .\32xl\:scale-x-50 { --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; } - .\32xl\:hover\:scale-75:hover { + .\32xl\:scale-x-75 { --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; } - .\32xl\:hover\:scale-90:hover { + .\32xl\:scale-x-90 { --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; } - .\32xl\:hover\:scale-95:hover { + .\32xl\:scale-x-95 { --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; } - .\32xl\:hover\:scale-100:hover { + .\32xl\:scale-x-100 { --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; } - .\32xl\:hover\:scale-105:hover { + .\32xl\:scale-x-105 { --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; } - .\32xl\:hover\:scale-110:hover { + .\32xl\:scale-x-110 { --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; } - .\32xl\:hover\:scale-125:hover { + .\32xl\:scale-x-125 { --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; } - .\32xl\:hover\:scale-150:hover { + .\32xl\:scale-x-150 { --tw-scale-x: 1.5 !important; + } + + .\32xl\:scale-y-0 { + --tw-scale-y: 0 !important; + } + + .\32xl\:scale-y-50 { + --tw-scale-y: .5 !important; + } + + .\32xl\:scale-y-75 { + --tw-scale-y: .75 !important; + } + + .\32xl\:scale-y-90 { + --tw-scale-y: .9 !important; + } + + .\32xl\:scale-y-95 { + --tw-scale-y: .95 !important; + } + + .\32xl\:scale-y-100 { + --tw-scale-y: 1 !important; + } + + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05 !important; + } + + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1 !important; + } + + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25 !important; + } + + .\32xl\:scale-y-150 { --tw-scale-y: 1.5 !important; } @@ -155493,56 +155671,6 @@ video { --tw-scale-y: 1.5 !important; } - .\32xl\:focus\:scale-0:focus { - --tw-scale-x: 0 !important; - --tw-scale-y: 0 !important; - } - - .\32xl\:focus\:scale-50:focus { - --tw-scale-x: .5 !important; - --tw-scale-y: .5 !important; - } - - .\32xl\:focus\:scale-75:focus { - --tw-scale-x: .75 !important; - --tw-scale-y: .75 !important; - } - - .\32xl\:focus\:scale-90:focus { - --tw-scale-x: .9 !important; - --tw-scale-y: .9 !important; - } - - .\32xl\:focus\:scale-95:focus { - --tw-scale-x: .95 !important; - --tw-scale-y: .95 !important; - } - - .\32xl\:focus\:scale-100:focus { - --tw-scale-x: 1 !important; - --tw-scale-y: 1 !important; - } - - .\32xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05 !important; - --tw-scale-y: 1.05 !important; - } - - .\32xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1 !important; - --tw-scale-y: 1.1 !important; - } - - .\32xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25 !important; - --tw-scale-y: 1.25 !important; - } - - .\32xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5 !important; - --tw-scale-y: 1.5 !important; - } - .\32xl\:focus\:scale-x-0:focus { --tw-scale-x: 0 !important; } @@ -156435,436 +156563,640 @@ video { row-gap: 0.875rem !important; } - .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0px * var(--tw-space-x-reverse)) !important; margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important; margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(4rem * var(--tw-space-x-reverse)) !important; margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(5rem * var(--tw-space-x-reverse)) !important; margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(6rem * var(--tw-space-x-reverse)) !important; margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(7rem * var(--tw-space-x-reverse)) !important; margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(8rem * var(--tw-space-x-reverse)) !important; margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(9rem * var(--tw-space-x-reverse)) !important; margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(10rem * var(--tw-space-x-reverse)) !important; margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(11rem * var(--tw-space-x-reverse)) !important; margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(12rem * var(--tw-space-x-reverse)) !important; margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(13rem * var(--tw-space-x-reverse)) !important; margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(14rem * var(--tw-space-x-reverse)) !important; margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(15rem * var(--tw-space-x-reverse)) !important; margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(16rem * var(--tw-space-x-reverse)) !important; margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(18rem * var(--tw-space-x-reverse)) !important; margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(20rem * var(--tw-space-x-reverse)) !important; margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(24rem * var(--tw-space-x-reverse)) !important; margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(1px * var(--tw-space-x-reverse)) !important; margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0 !important; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; - } - .\32xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0 !important; margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important; margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; } - .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(0px * var(--tw-space-x-reverse)) !important; + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0 !important; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; + } + + .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(0px * var(--tw-space-x-reverse)) !important; - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important; + .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important; + } + + .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0 !important; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important; + margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important; } .\32xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -156873,408 +157205,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-1px * var(--tw-space-x-reverse)) !important; - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0 !important; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important; margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important; } - .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0 !important; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important; - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important; - } - .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1 !important; } @@ -157283,66 +157411,66 @@ video { --tw-space-x-reverse: 1 !important; } - .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; - } - .\32xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; - } - .\32xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; - } - .\32xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; - } - .\32xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important; } - .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0 !important; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; - } - .\32xl\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0 !important; border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important; border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important; } + .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important; + } + + .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important; + } + + .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important; + } + + .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important; + } + + .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0 !important; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important; + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important; + } + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1 !important; } @@ -163756,2188 +163884,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .\32xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .\32xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .\32xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; - } - - .\32xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; - } - - .\32xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; - } - - .\32xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; - } - - .\32xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; - } - - .\32xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; - } - - .\32xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; - } - - .\32xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; - } - - .\32xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; - } - - .\32xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; - } - - .\32xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; - } - - .\32xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; - } - - .\32xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; - } - - .\32xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; - } - - .\32xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; - } - - .\32xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; - } - - .\32xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; - } - - .\32xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; - } - - .\32xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; - } - - .\32xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; - } - - .\32xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; - } - - .\32xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; - } - - .\32xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; - } - - .\32xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; - } - - .\32xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; - } - - .\32xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; - } - - .\32xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; - } - - .\32xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; - } - - .\32xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; - } - - .\32xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; - } - - .\32xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; - } - - .\32xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; - } - - .\32xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; - } - - .\32xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; - } - - .\32xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; - } - - .\32xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; - } - - .\32xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; - } - - .\32xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; - } - - .\32xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; - } - - .\32xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; - } - - .\32xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; - } - - .\32xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; - } - - .\32xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; - } - - .\32xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; - } - - .\32xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; - } - - .\32xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; - } - - .\32xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; - } - - .\32xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; - } - - .\32xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; - } - - .\32xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; - } - - .\32xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; - } - - .\32xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; - } - - .\32xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; - } - - .\32xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; - } - - .\32xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; - } - - .\32xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; - } - - .\32xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; - } - - .\32xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; - } - - .\32xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; - } - - .\32xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; - } - - .\32xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; - } - - .\32xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; - } - - .\32xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; - } - - .\32xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; - } - - .\32xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; - } - - .\32xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; - } - - .\32xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; - } - - .\32xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; - } - - .\32xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; - } - - .\32xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; - } - - .\32xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; - } - - .\32xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; - } - - .\32xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; - } - - .\32xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; - } - - .\32xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; - } - - .\32xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; - } - - .\32xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; - } - - .\32xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; - } - - .\32xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; - } - - .\32xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; - } - - .\32xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; - } - - .\32xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; - } - - .\32xl\:to-transparent { - --tw-gradient-to: transparent !important; + .\32xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:to-current { - --tw-gradient-to: currentColor !important; + .\32xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:to-black { - --tw-gradient-to: #000 !important; + .\32xl\:hover\:from-black:hover { + --tw-gradient-from: #000 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:to-white { - --tw-gradient-to: #fff !important; + .\32xl\:hover\:from-white:hover { + --tw-gradient-from: #fff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:to-gray-50 { - --tw-gradient-to: #f9fafb !important; + .\32xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .\32xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6 !important; + .\32xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .\32xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb !important; + .\32xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .\32xl\:to-gray-300 { - --tw-gradient-to: #d1d5db !important; + .\32xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .\32xl\:to-gray-400 { - --tw-gradient-to: #9ca3af !important; + .\32xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .\32xl\:to-gray-500 { - --tw-gradient-to: #6b7280 !important; + .\32xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .\32xl\:to-gray-600 { - --tw-gradient-to: #4b5563 !important; + .\32xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .\32xl\:to-gray-700 { - --tw-gradient-to: #374151 !important; + .\32xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .\32xl\:to-gray-800 { - --tw-gradient-to: #1f2937 !important; + .\32xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .\32xl\:to-gray-900 { - --tw-gradient-to: #111827 !important; + .\32xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .\32xl\:to-red-50 { - --tw-gradient-to: #fef2f2 !important; + .\32xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .\32xl\:to-red-100 { - --tw-gradient-to: #fee2e2 !important; + .\32xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .\32xl\:to-red-200 { - --tw-gradient-to: #fecaca !important; + .\32xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .\32xl\:to-red-300 { - --tw-gradient-to: #fca5a5 !important; + .\32xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .\32xl\:to-red-400 { - --tw-gradient-to: #f87171 !important; + .\32xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .\32xl\:to-red-500 { - --tw-gradient-to: #ef4444 !important; + .\32xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .\32xl\:to-red-600 { - --tw-gradient-to: #dc2626 !important; + .\32xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .\32xl\:to-red-700 { - --tw-gradient-to: #b91c1c !important; + .\32xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .\32xl\:to-red-800 { - --tw-gradient-to: #991b1b !important; + .\32xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .\32xl\:to-red-900 { - --tw-gradient-to: #7f1d1d !important; + .\32xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .\32xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb !important; + .\32xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .\32xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7 !important; + .\32xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .\32xl\:to-yellow-200 { - --tw-gradient-to: #fde68a !important; + .\32xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .\32xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d !important; + .\32xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .\32xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24 !important; + .\32xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .\32xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b !important; + .\32xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .\32xl\:to-yellow-600 { - --tw-gradient-to: #d97706 !important; + .\32xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .\32xl\:to-yellow-700 { - --tw-gradient-to: #b45309 !important; + .\32xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .\32xl\:to-yellow-800 { - --tw-gradient-to: #92400e !important; + .\32xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .\32xl\:to-yellow-900 { - --tw-gradient-to: #78350f !important; + .\32xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .\32xl\:to-green-50 { - --tw-gradient-to: #ecfdf5 !important; + .\32xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .\32xl\:to-green-100 { - --tw-gradient-to: #d1fae5 !important; + .\32xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .\32xl\:to-green-200 { - --tw-gradient-to: #a7f3d0 !important; + .\32xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .\32xl\:to-green-300 { - --tw-gradient-to: #6ee7b7 !important; + .\32xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .\32xl\:to-green-400 { - --tw-gradient-to: #34d399 !important; + .\32xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .\32xl\:to-green-500 { - --tw-gradient-to: #10b981 !important; + .\32xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .\32xl\:to-green-600 { - --tw-gradient-to: #059669 !important; + .\32xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .\32xl\:to-green-700 { - --tw-gradient-to: #047857 !important; + .\32xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .\32xl\:to-green-800 { - --tw-gradient-to: #065f46 !important; + .\32xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .\32xl\:to-green-900 { - --tw-gradient-to: #064e3b !important; + .\32xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .\32xl\:to-blue-50 { - --tw-gradient-to: #eff6ff !important; + .\32xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .\32xl\:to-blue-100 { - --tw-gradient-to: #dbeafe !important; + .\32xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .\32xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe !important; + .\32xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .\32xl\:to-blue-300 { - --tw-gradient-to: #93c5fd !important; + .\32xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .\32xl\:to-blue-400 { - --tw-gradient-to: #60a5fa !important; + .\32xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .\32xl\:to-blue-500 { - --tw-gradient-to: #3b82f6 !important; + .\32xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .\32xl\:to-blue-600 { - --tw-gradient-to: #2563eb !important; + .\32xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .\32xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8 !important; + .\32xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .\32xl\:to-blue-800 { - --tw-gradient-to: #1e40af !important; + .\32xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .\32xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a !important; + .\32xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .\32xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff !important; + .\32xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .\32xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff !important; + .\32xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .\32xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe !important; + .\32xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .\32xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc !important; + .\32xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .\32xl\:to-indigo-400 { - --tw-gradient-to: #818cf8 !important; + .\32xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .\32xl\:to-indigo-500 { - --tw-gradient-to: #6366f1 !important; + .\32xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .\32xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5 !important; + .\32xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .\32xl\:to-indigo-700 { - --tw-gradient-to: #4338ca !important; + .\32xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .\32xl\:to-indigo-800 { - --tw-gradient-to: #3730a3 !important; + .\32xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .\32xl\:to-indigo-900 { - --tw-gradient-to: #312e81 !important; + .\32xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .\32xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff !important; + .\32xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .\32xl\:to-purple-100 { - --tw-gradient-to: #ede9fe !important; + .\32xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .\32xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe !important; + .\32xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .\32xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd !important; + .\32xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .\32xl\:to-purple-400 { - --tw-gradient-to: #a78bfa !important; + .\32xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .\32xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6 !important; + .\32xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .\32xl\:to-purple-600 { - --tw-gradient-to: #7c3aed !important; + .\32xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .\32xl\:to-purple-700 { - --tw-gradient-to: #6d28d9 !important; + .\32xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .\32xl\:to-purple-800 { - --tw-gradient-to: #5b21b6 !important; + .\32xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .\32xl\:to-purple-900 { - --tw-gradient-to: #4c1d95 !important; + .\32xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .\32xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8 !important; + .\32xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .\32xl\:to-pink-100 { - --tw-gradient-to: #fce7f3 !important; + .\32xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .\32xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8 !important; + .\32xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .\32xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4 !important; + .\32xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .\32xl\:to-pink-400 { - --tw-gradient-to: #f472b6 !important; + .\32xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .\32xl\:to-pink-500 { - --tw-gradient-to: #ec4899 !important; + .\32xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .\32xl\:to-pink-600 { - --tw-gradient-to: #db2777 !important; + .\32xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .\32xl\:to-pink-700 { - --tw-gradient-to: #be185d !important; + .\32xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .\32xl\:to-pink-800 { - --tw-gradient-to: #9d174d !important; + .\32xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .\32xl\:to-pink-900 { - --tw-gradient-to: #831843 !important; + .\32xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843 !important; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .\32xl\:hover\:from-transparent:hover { + .\32xl\:focus\:from-transparent:focus { --tw-gradient-from: transparent !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:hover\:from-current:hover { + .\32xl\:focus\:from-current:focus { --tw-gradient-from: currentColor !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:hover\:from-black:hover { + .\32xl\:focus\:from-black:focus { --tw-gradient-from: #000 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:hover\:from-white:hover { + .\32xl\:focus\:from-white:focus { --tw-gradient-from: #fff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:hover\:from-gray-50:hover { + .\32xl\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .\32xl\:hover\:from-gray-100:hover { + .\32xl\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .\32xl\:hover\:from-gray-200:hover { + .\32xl\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .\32xl\:hover\:from-gray-300:hover { + .\32xl\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .\32xl\:hover\:from-gray-400:hover { + .\32xl\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .\32xl\:hover\:from-gray-500:hover { + .\32xl\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .\32xl\:hover\:from-gray-600:hover { + .\32xl\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .\32xl\:hover\:from-gray-700:hover { + .\32xl\:focus\:from-gray-700:focus { --tw-gradient-from: #374151 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .\32xl\:hover\:from-gray-800:hover { + .\32xl\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .\32xl\:hover\:from-gray-900:hover { + .\32xl\:focus\:from-gray-900:focus { --tw-gradient-from: #111827 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .\32xl\:hover\:from-red-50:hover { + .\32xl\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .\32xl\:hover\:from-red-100:hover { + .\32xl\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .\32xl\:hover\:from-red-200:hover { + .\32xl\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .\32xl\:hover\:from-red-300:hover { + .\32xl\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .\32xl\:hover\:from-red-400:hover { + .\32xl\:focus\:from-red-400:focus { --tw-gradient-from: #f87171 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .\32xl\:hover\:from-red-500:hover { + .\32xl\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .\32xl\:hover\:from-red-600:hover { + .\32xl\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .\32xl\:hover\:from-red-700:hover { + .\32xl\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .\32xl\:hover\:from-red-800:hover { + .\32xl\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .\32xl\:hover\:from-red-900:hover { + .\32xl\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .\32xl\:hover\:from-yellow-50:hover { + .\32xl\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .\32xl\:hover\:from-yellow-100:hover { + .\32xl\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .\32xl\:hover\:from-yellow-200:hover { + .\32xl\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .\32xl\:hover\:from-yellow-300:hover { + .\32xl\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .\32xl\:hover\:from-yellow-400:hover { + .\32xl\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .\32xl\:hover\:from-yellow-500:hover { + .\32xl\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .\32xl\:hover\:from-yellow-600:hover { + .\32xl\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .\32xl\:hover\:from-yellow-700:hover { + .\32xl\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .\32xl\:hover\:from-yellow-800:hover { + .\32xl\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .\32xl\:hover\:from-yellow-900:hover { + .\32xl\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .\32xl\:hover\:from-green-50:hover { + .\32xl\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .\32xl\:hover\:from-green-100:hover { + .\32xl\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .\32xl\:hover\:from-green-200:hover { + .\32xl\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .\32xl\:hover\:from-green-300:hover { + .\32xl\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .\32xl\:hover\:from-green-400:hover { + .\32xl\:focus\:from-green-400:focus { --tw-gradient-from: #34d399 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .\32xl\:hover\:from-green-500:hover { + .\32xl\:focus\:from-green-500:focus { --tw-gradient-from: #10b981 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .\32xl\:hover\:from-green-600:hover { + .\32xl\:focus\:from-green-600:focus { --tw-gradient-from: #059669 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .\32xl\:hover\:from-green-700:hover { + .\32xl\:focus\:from-green-700:focus { --tw-gradient-from: #047857 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .\32xl\:hover\:from-green-800:hover { + .\32xl\:focus\:from-green-800:focus { --tw-gradient-from: #065f46 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .\32xl\:hover\:from-green-900:hover { + .\32xl\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .\32xl\:hover\:from-blue-50:hover { + .\32xl\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .\32xl\:hover\:from-blue-100:hover { + .\32xl\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .\32xl\:hover\:from-blue-200:hover { + .\32xl\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .\32xl\:hover\:from-blue-300:hover { + .\32xl\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .\32xl\:hover\:from-blue-400:hover { + .\32xl\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .\32xl\:hover\:from-blue-500:hover { + .\32xl\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .\32xl\:hover\:from-blue-600:hover { + .\32xl\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .\32xl\:hover\:from-blue-700:hover { + .\32xl\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .\32xl\:hover\:from-blue-800:hover { + .\32xl\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .\32xl\:hover\:from-blue-900:hover { + .\32xl\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .\32xl\:hover\:from-indigo-50:hover { + .\32xl\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .\32xl\:hover\:from-indigo-100:hover { + .\32xl\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .\32xl\:hover\:from-indigo-200:hover { + .\32xl\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .\32xl\:hover\:from-indigo-300:hover { + .\32xl\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .\32xl\:hover\:from-indigo-400:hover { + .\32xl\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .\32xl\:hover\:from-indigo-500:hover { + .\32xl\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .\32xl\:hover\:from-indigo-600:hover { + .\32xl\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .\32xl\:hover\:from-indigo-700:hover { + .\32xl\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .\32xl\:hover\:from-indigo-800:hover { + .\32xl\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .\32xl\:hover\:from-indigo-900:hover { + .\32xl\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .\32xl\:hover\:from-purple-50:hover { + .\32xl\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .\32xl\:hover\:from-purple-100:hover { + .\32xl\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .\32xl\:hover\:from-purple-200:hover { + .\32xl\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .\32xl\:hover\:from-purple-300:hover { + .\32xl\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .\32xl\:hover\:from-purple-400:hover { + .\32xl\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .\32xl\:hover\:from-purple-500:hover { + .\32xl\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .\32xl\:hover\:from-purple-600:hover { + .\32xl\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .\32xl\:hover\:from-purple-700:hover { + .\32xl\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .\32xl\:hover\:from-purple-800:hover { + .\32xl\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .\32xl\:hover\:from-purple-900:hover { + .\32xl\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .\32xl\:hover\:from-pink-50:hover { + .\32xl\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .\32xl\:hover\:from-pink-100:hover { + .\32xl\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .\32xl\:hover\:from-pink-200:hover { + .\32xl\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .\32xl\:hover\:from-pink-300:hover { + .\32xl\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .\32xl\:hover\:from-pink-400:hover { + .\32xl\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .\32xl\:hover\:from-pink-500:hover { + .\32xl\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .\32xl\:hover\:from-pink-600:hover { + .\32xl\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .\32xl\:hover\:from-pink-700:hover { + .\32xl\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .\32xl\:hover\:from-pink-800:hover { + .\32xl\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .\32xl\:hover\:from-pink-900:hover { + .\32xl\:focus\:from-pink-900:focus { --tw-gradient-from: #831843 !important; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .\32xl\:hover\:via-transparent:hover { + .\32xl\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:hover\:via-current:hover { + .\32xl\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:hover\:via-black:hover { + .\32xl\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:hover\:via-white:hover { + .\32xl\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:hover\:via-gray-50:hover { + .\32xl\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .\32xl\:hover\:via-gray-100:hover { + .\32xl\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .\32xl\:hover\:via-gray-200:hover { + .\32xl\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .\32xl\:hover\:via-gray-300:hover { + .\32xl\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .\32xl\:hover\:via-gray-400:hover { + .\32xl\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .\32xl\:hover\:via-gray-500:hover { + .\32xl\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .\32xl\:hover\:via-gray-600:hover { + .\32xl\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .\32xl\:hover\:via-gray-700:hover { + .\32xl\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .\32xl\:hover\:via-gray-800:hover { + .\32xl\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .\32xl\:hover\:via-gray-900:hover { + .\32xl\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .\32xl\:hover\:via-red-50:hover { + .\32xl\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .\32xl\:hover\:via-red-100:hover { + .\32xl\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .\32xl\:hover\:via-red-200:hover { + .\32xl\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .\32xl\:hover\:via-red-300:hover { + .\32xl\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .\32xl\:hover\:via-red-400:hover { + .\32xl\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .\32xl\:hover\:via-red-500:hover { + .\32xl\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .\32xl\:hover\:via-red-600:hover { + .\32xl\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .\32xl\:hover\:via-red-700:hover { + .\32xl\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .\32xl\:hover\:via-red-800:hover { + .\32xl\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .\32xl\:hover\:via-red-900:hover { + .\32xl\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .\32xl\:hover\:via-yellow-50:hover { + .\32xl\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .\32xl\:hover\:via-yellow-100:hover { + .\32xl\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .\32xl\:hover\:via-yellow-200:hover { + .\32xl\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .\32xl\:hover\:via-yellow-300:hover { + .\32xl\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .\32xl\:hover\:via-yellow-400:hover { + .\32xl\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .\32xl\:hover\:via-yellow-500:hover { + .\32xl\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .\32xl\:hover\:via-yellow-600:hover { + .\32xl\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .\32xl\:hover\:via-yellow-700:hover { + .\32xl\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .\32xl\:hover\:via-yellow-800:hover { + .\32xl\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .\32xl\:hover\:via-yellow-900:hover { + .\32xl\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .\32xl\:hover\:via-green-50:hover { + .\32xl\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .\32xl\:hover\:via-green-100:hover { + .\32xl\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .\32xl\:hover\:via-green-200:hover { + .\32xl\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .\32xl\:hover\:via-green-300:hover { + .\32xl\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .\32xl\:hover\:via-green-400:hover { + .\32xl\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .\32xl\:hover\:via-green-500:hover { + .\32xl\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .\32xl\:hover\:via-green-600:hover { + .\32xl\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .\32xl\:hover\:via-green-700:hover { + .\32xl\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .\32xl\:hover\:via-green-800:hover { + .\32xl\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .\32xl\:hover\:via-green-900:hover { + .\32xl\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .\32xl\:hover\:via-blue-50:hover { + .\32xl\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .\32xl\:hover\:via-blue-100:hover { + .\32xl\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .\32xl\:hover\:via-blue-200:hover { + .\32xl\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .\32xl\:hover\:via-blue-300:hover { + .\32xl\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .\32xl\:hover\:via-blue-400:hover { + .\32xl\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .\32xl\:hover\:via-blue-500:hover { + .\32xl\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .\32xl\:hover\:via-blue-600:hover { + .\32xl\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .\32xl\:hover\:via-blue-700:hover { + .\32xl\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .\32xl\:hover\:via-blue-800:hover { + .\32xl\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .\32xl\:hover\:via-blue-900:hover { + .\32xl\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .\32xl\:hover\:via-indigo-50:hover { + .\32xl\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .\32xl\:hover\:via-indigo-100:hover { + .\32xl\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .\32xl\:hover\:via-indigo-200:hover { + .\32xl\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .\32xl\:hover\:via-indigo-300:hover { + .\32xl\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .\32xl\:hover\:via-indigo-400:hover { + .\32xl\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .\32xl\:hover\:via-indigo-500:hover { + .\32xl\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .\32xl\:hover\:via-indigo-600:hover { + .\32xl\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .\32xl\:hover\:via-indigo-700:hover { + .\32xl\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .\32xl\:hover\:via-indigo-800:hover { + .\32xl\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .\32xl\:hover\:via-indigo-900:hover { + .\32xl\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .\32xl\:hover\:via-purple-50:hover { + .\32xl\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .\32xl\:hover\:via-purple-100:hover { + .\32xl\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .\32xl\:hover\:via-purple-200:hover { + .\32xl\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .\32xl\:hover\:via-purple-300:hover { + .\32xl\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .\32xl\:hover\:via-purple-400:hover { + .\32xl\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .\32xl\:hover\:via-purple-500:hover { + .\32xl\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .\32xl\:hover\:via-purple-600:hover { + .\32xl\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .\32xl\:hover\:via-purple-700:hover { + .\32xl\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .\32xl\:hover\:via-purple-800:hover { + .\32xl\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .\32xl\:hover\:via-purple-900:hover { + .\32xl\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .\32xl\:hover\:via-pink-50:hover { + .\32xl\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .\32xl\:hover\:via-pink-100:hover { + .\32xl\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .\32xl\:hover\:via-pink-200:hover { + .\32xl\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .\32xl\:hover\:via-pink-300:hover { + .\32xl\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .\32xl\:hover\:via-pink-400:hover { + .\32xl\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .\32xl\:hover\:via-pink-500:hover { + .\32xl\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .\32xl\:hover\:via-pink-600:hover { + .\32xl\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .\32xl\:hover\:via-pink-700:hover { + .\32xl\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .\32xl\:hover\:via-pink-800:hover { + .\32xl\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .\32xl\:hover\:via-pink-900:hover { + .\32xl\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } - .\32xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent !important; - } - - .\32xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor !important; - } - - .\32xl\:hover\:to-black:hover { - --tw-gradient-to: #000 !important; - } - - .\32xl\:hover\:to-white:hover { - --tw-gradient-to: #fff !important; - } - - .\32xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb !important; - } - - .\32xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6 !important; - } - - .\32xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb !important; - } - - .\32xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db !important; - } - - .\32xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af !important; - } - - .\32xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280 !important; - } - - .\32xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563 !important; - } - - .\32xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151 !important; - } - - .\32xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937 !important; - } - - .\32xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827 !important; - } - - .\32xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2 !important; - } - - .\32xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2 !important; - } - - .\32xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca !important; - } - - .\32xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5 !important; - } - - .\32xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171 !important; - } - - .\32xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444 !important; - } - - .\32xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626 !important; - } - - .\32xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c !important; - } - - .\32xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b !important; - } - - .\32xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d !important; - } - - .\32xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb !important; - } - - .\32xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7 !important; - } - - .\32xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a !important; - } - - .\32xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d !important; - } - - .\32xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24 !important; - } - - .\32xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b !important; - } - - .\32xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706 !important; - } - - .\32xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309 !important; - } - - .\32xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e !important; - } - - .\32xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f !important; - } - - .\32xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5 !important; - } - - .\32xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5 !important; - } - - .\32xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0 !important; - } - - .\32xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7 !important; - } - - .\32xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399 !important; - } - - .\32xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981 !important; - } - - .\32xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669 !important; - } - - .\32xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857 !important; - } - - .\32xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46 !important; - } - - .\32xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b !important; - } - - .\32xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff !important; - } - - .\32xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe !important; - } - - .\32xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe !important; - } - - .\32xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd !important; - } - - .\32xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa !important; - } - - .\32xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6 !important; - } - - .\32xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb !important; - } - - .\32xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8 !important; - } - - .\32xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af !important; - } - - .\32xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a !important; - } - - .\32xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff !important; - } - - .\32xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff !important; - } - - .\32xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe !important; - } - - .\32xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc !important; - } - - .\32xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8 !important; - } - - .\32xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1 !important; - } - - .\32xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5 !important; - } - - .\32xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca !important; - } - - .\32xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3 !important; - } - - .\32xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81 !important; - } - - .\32xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff !important; - } - - .\32xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe !important; - } - - .\32xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe !important; - } - - .\32xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd !important; - } - - .\32xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa !important; - } - - .\32xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6 !important; - } - - .\32xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed !important; - } - - .\32xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9 !important; - } - - .\32xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6 !important; - } - - .\32xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95 !important; - } - - .\32xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8 !important; - } - - .\32xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3 !important; - } - - .\32xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8 !important; - } - - .\32xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4 !important; - } - - .\32xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6 !important; - } - - .\32xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899 !important; - } - - .\32xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777 !important; - } - - .\32xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d !important; - } - - .\32xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d !important; - } - - .\32xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843 !important; - } - - .\32xl\:focus\:from-transparent:focus { - --tw-gradient-from: transparent !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:focus\:from-current:focus { - --tw-gradient-from: currentColor !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:focus\:from-black:focus { - --tw-gradient-from: #000 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important; } - .\32xl\:focus\:from-white:focus { - --tw-gradient-from: #fff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important; } - .\32xl\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)) !important; } - .\32xl\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)) !important; } - .\32xl\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)) !important; } - .\32xl\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)) !important; } - .\32xl\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)) !important; } - .\32xl\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)) !important; } - .\32xl\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)) !important; } - .\32xl\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)) !important; } - .\32xl\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)) !important; } - .\32xl\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)) !important; } - .\32xl\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)) !important; } - .\32xl\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)) !important; } - .\32xl\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)) !important; } - .\32xl\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)) !important; } - .\32xl\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)) !important; } - .\32xl\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)) !important; } - .\32xl\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)) !important; } - .\32xl\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)) !important; } - .\32xl\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)) !important; } - .\32xl\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)) !important; } - .\32xl\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)) !important; } - .\32xl\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)) !important; } - .\32xl\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)) !important; } - .\32xl\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)) !important; } - .\32xl\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)) !important; } - .\32xl\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)) !important; } - .\32xl\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)) !important; } - .\32xl\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)) !important; } - .\32xl\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)) !important; } - .\32xl\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)) !important; } - .\32xl\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)) !important; } - .\32xl\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)) !important; } - .\32xl\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)) !important; } - .\32xl\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)) !important; } - .\32xl\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)) !important; } - .\32xl\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)) !important; } - .\32xl\:focus\:from-green-600:focus { - --tw-gradient-from: #059669 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)) !important; } - .\32xl\:focus\:from-green-700:focus { - --tw-gradient-from: #047857 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)) !important; } - .\32xl\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)) !important; } - .\32xl\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)) !important; } - .\32xl\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)) !important; } - .\32xl\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)) !important; } - .\32xl\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)) !important; } - .\32xl\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)) !important; } - .\32xl\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)) !important; } - .\32xl\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)) !important; } - .\32xl\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)) !important; } - .\32xl\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)) !important; } - .\32xl\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)) !important; } - .\32xl\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)) !important; } - .\32xl\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)) !important; } - .\32xl\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)) !important; } - .\32xl\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)) !important; } - .\32xl\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)) !important; } - .\32xl\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)) !important; } - .\32xl\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)) !important; } - .\32xl\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)) !important; } - .\32xl\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)) !important; } - .\32xl\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)) !important; } - .\32xl\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)) !important; } - .\32xl\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; + .\32xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)) !important; } - .\32xl\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; + .\32xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)) !important; } - .\32xl\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; + .\32xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)) !important; } - .\32xl\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; + .\32xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)) !important; } - .\32xl\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; + .\32xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)) !important; } - .\32xl\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; + .\32xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)) !important; } - .\32xl\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; + .\32xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)) !important; } - .\32xl\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; + .\32xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)) !important; } - .\32xl\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; + .\32xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)) !important; } - .\32xl\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; + .\32xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)) !important; } - .\32xl\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; + .\32xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)) !important; } - .\32xl\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; + .\32xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)) !important; } - .\32xl\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; + .\32xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)) !important; } - .\32xl\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; + .\32xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)) !important; } - .\32xl\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; + .\32xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)) !important; } - .\32xl\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; + .\32xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)) !important; } - .\32xl\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; + .\32xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)) !important; } - .\32xl\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; + .\32xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)) !important; } - .\32xl\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; + .\32xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)) !important; } - .\32xl\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843 !important; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; + .\32xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } .\32xl\:focus\:via-transparent:focus { @@ -166276,6 +165732,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)) !important; } + .\32xl\:to-transparent { + --tw-gradient-to: transparent !important; + } + + .\32xl\:to-current { + --tw-gradient-to: currentColor !important; + } + + .\32xl\:to-black { + --tw-gradient-to: #000 !important; + } + + .\32xl\:to-white { + --tw-gradient-to: #fff !important; + } + + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb !important; + } + + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6 !important; + } + + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb !important; + } + + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db !important; + } + + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af !important; + } + + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280 !important; + } + + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563 !important; + } + + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151 !important; + } + + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937 !important; + } + + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827 !important; + } + + .\32xl\:to-red-50 { + --tw-gradient-to: #fef2f2 !important; + } + + .\32xl\:to-red-100 { + --tw-gradient-to: #fee2e2 !important; + } + + .\32xl\:to-red-200 { + --tw-gradient-to: #fecaca !important; + } + + .\32xl\:to-red-300 { + --tw-gradient-to: #fca5a5 !important; + } + + .\32xl\:to-red-400 { + --tw-gradient-to: #f87171 !important; + } + + .\32xl\:to-red-500 { + --tw-gradient-to: #ef4444 !important; + } + + .\32xl\:to-red-600 { + --tw-gradient-to: #dc2626 !important; + } + + .\32xl\:to-red-700 { + --tw-gradient-to: #b91c1c !important; + } + + .\32xl\:to-red-800 { + --tw-gradient-to: #991b1b !important; + } + + .\32xl\:to-red-900 { + --tw-gradient-to: #7f1d1d !important; + } + + .\32xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb !important; + } + + .\32xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7 !important; + } + + .\32xl\:to-yellow-200 { + --tw-gradient-to: #fde68a !important; + } + + .\32xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d !important; + } + + .\32xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24 !important; + } + + .\32xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b !important; + } + + .\32xl\:to-yellow-600 { + --tw-gradient-to: #d97706 !important; + } + + .\32xl\:to-yellow-700 { + --tw-gradient-to: #b45309 !important; + } + + .\32xl\:to-yellow-800 { + --tw-gradient-to: #92400e !important; + } + + .\32xl\:to-yellow-900 { + --tw-gradient-to: #78350f !important; + } + + .\32xl\:to-green-50 { + --tw-gradient-to: #ecfdf5 !important; + } + + .\32xl\:to-green-100 { + --tw-gradient-to: #d1fae5 !important; + } + + .\32xl\:to-green-200 { + --tw-gradient-to: #a7f3d0 !important; + } + + .\32xl\:to-green-300 { + --tw-gradient-to: #6ee7b7 !important; + } + + .\32xl\:to-green-400 { + --tw-gradient-to: #34d399 !important; + } + + .\32xl\:to-green-500 { + --tw-gradient-to: #10b981 !important; + } + + .\32xl\:to-green-600 { + --tw-gradient-to: #059669 !important; + } + + .\32xl\:to-green-700 { + --tw-gradient-to: #047857 !important; + } + + .\32xl\:to-green-800 { + --tw-gradient-to: #065f46 !important; + } + + .\32xl\:to-green-900 { + --tw-gradient-to: #064e3b !important; + } + + .\32xl\:to-blue-50 { + --tw-gradient-to: #eff6ff !important; + } + + .\32xl\:to-blue-100 { + --tw-gradient-to: #dbeafe !important; + } + + .\32xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe !important; + } + + .\32xl\:to-blue-300 { + --tw-gradient-to: #93c5fd !important; + } + + .\32xl\:to-blue-400 { + --tw-gradient-to: #60a5fa !important; + } + + .\32xl\:to-blue-500 { + --tw-gradient-to: #3b82f6 !important; + } + + .\32xl\:to-blue-600 { + --tw-gradient-to: #2563eb !important; + } + + .\32xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8 !important; + } + + .\32xl\:to-blue-800 { + --tw-gradient-to: #1e40af !important; + } + + .\32xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a !important; + } + + .\32xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff !important; + } + + .\32xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff !important; + } + + .\32xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe !important; + } + + .\32xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc !important; + } + + .\32xl\:to-indigo-400 { + --tw-gradient-to: #818cf8 !important; + } + + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6366f1 !important; + } + + .\32xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5 !important; + } + + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4338ca !important; + } + + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3730a3 !important; + } + + .\32xl\:to-indigo-900 { + --tw-gradient-to: #312e81 !important; + } + + .\32xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff !important; + } + + .\32xl\:to-purple-100 { + --tw-gradient-to: #ede9fe !important; + } + + .\32xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe !important; + } + + .\32xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd !important; + } + + .\32xl\:to-purple-400 { + --tw-gradient-to: #a78bfa !important; + } + + .\32xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6 !important; + } + + .\32xl\:to-purple-600 { + --tw-gradient-to: #7c3aed !important; + } + + .\32xl\:to-purple-700 { + --tw-gradient-to: #6d28d9 !important; + } + + .\32xl\:to-purple-800 { + --tw-gradient-to: #5b21b6 !important; + } + + .\32xl\:to-purple-900 { + --tw-gradient-to: #4c1d95 !important; + } + + .\32xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8 !important; + } + + .\32xl\:to-pink-100 { + --tw-gradient-to: #fce7f3 !important; + } + + .\32xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8 !important; + } + + .\32xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4 !important; + } + + .\32xl\:to-pink-400 { + --tw-gradient-to: #f472b6 !important; + } + + .\32xl\:to-pink-500 { + --tw-gradient-to: #ec4899 !important; + } + + .\32xl\:to-pink-600 { + --tw-gradient-to: #db2777 !important; + } + + .\32xl\:to-pink-700 { + --tw-gradient-to: #be185d !important; + } + + .\32xl\:to-pink-800 { + --tw-gradient-to: #9d174d !important; + } + + .\32xl\:to-pink-900 { + --tw-gradient-to: #831843 !important; + } + + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent !important; + } + + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor !important; + } + + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000 !important; + } + + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff !important; + } + + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb !important; + } + + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6 !important; + } + + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb !important; + } + + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db !important; + } + + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af !important; + } + + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280 !important; + } + + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563 !important; + } + + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151 !important; + } + + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937 !important; + } + + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827 !important; + } + + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2 !important; + } + + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2 !important; + } + + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca !important; + } + + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5 !important; + } + + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171 !important; + } + + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444 !important; + } + + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626 !important; + } + + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c !important; + } + + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b !important; + } + + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d !important; + } + + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb !important; + } + + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7 !important; + } + + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a !important; + } + + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d !important; + } + + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24 !important; + } + + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b !important; + } + + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706 !important; + } + + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309 !important; + } + + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e !important; + } + + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f !important; + } + + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5 !important; + } + + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5 !important; + } + + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0 !important; + } + + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7 !important; + } + + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399 !important; + } + + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981 !important; + } + + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669 !important; + } + + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857 !important; + } + + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46 !important; + } + + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b !important; + } + + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff !important; + } + + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe !important; + } + + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe !important; + } + + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd !important; + } + + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa !important; + } + + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6 !important; + } + + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb !important; + } + + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8 !important; + } + + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af !important; + } + + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a !important; + } + + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff !important; + } + + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff !important; + } + + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe !important; + } + + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc !important; + } + + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8 !important; + } + + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1 !important; + } + + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5 !important; + } + + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca !important; + } + + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3 !important; + } + + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81 !important; + } + + .\32xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff !important; + } + + .\32xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe !important; + } + + .\32xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe !important; + } + + .\32xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd !important; + } + + .\32xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa !important; + } + + .\32xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6 !important; + } + + .\32xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed !important; + } + + .\32xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9 !important; + } + + .\32xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6 !important; + } + + .\32xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95 !important; + } + + .\32xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8 !important; + } + + .\32xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3 !important; + } + + .\32xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8 !important; + } + + .\32xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4 !important; + } + + .\32xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6 !important; + } + + .\32xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899 !important; + } + + .\32xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777 !important; + } + + .\32xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d !important; + } + + .\32xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d !important; + } + + .\32xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843 !important; + } + .\32xl\:focus\:to-transparent:focus { --tw-gradient-to: transparent !important; } @@ -172285,10 +172413,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:ring-inset { - --tw-ring-inset: inset !important; - } - .\32xl\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -172325,10 +172449,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } - .\32xl\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset !important; - } - .\32xl\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; @@ -172365,6 +172485,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; } + .\32xl\:ring-inset { + --tw-ring-inset: inset !important; + } + + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset !important; + } + .\32xl\:focus\:ring-inset:focus { --tw-ring-inset: inset !important; } @@ -175125,6 +175253,38 @@ video { backdrop-filter: none !important; } + .\32xl\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0) !important; + } + + .\32xl\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px) !important; + } + + .\32xl\:backdrop-blur { + --tw-backdrop-blur: blur(8px) !important; + } + + .\32xl\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px) !important; + } + + .\32xl\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px) !important; + } + + .\32xl\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px) !important; + } + + .\32xl\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px) !important; + } + + .\32xl\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px) !important; + } + .\32xl\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0) !important; } diff --git a/tests/fixtures/tailwind-output-no-color-opacity.css b/tests/fixtures/tailwind-output-no-color-opacity.css index f51fc44b442f..e5743d33a648 100644 --- a/tests/fixtures/tailwind-output-no-color-opacity.css +++ b/tests/fixtures/tailwind-output-no-color-opacity.css @@ -1273,14 +1273,434 @@ video { left: -100%; } -.inset-y-0 { - top: 0px; - bottom: 0px; -} - .inset-x-0 { + left: 0px; right: 0px; +} + +.inset-x-1 { + left: 0.25rem; + right: 0.25rem; +} + +.inset-x-2 { + left: 0.5rem; + right: 0.5rem; +} + +.inset-x-3 { + left: 0.75rem; + right: 0.75rem; +} + +.inset-x-4 { + left: 1rem; + right: 1rem; +} + +.inset-x-5 { + left: 1.25rem; + right: 1.25rem; +} + +.inset-x-6 { + left: 1.5rem; + right: 1.5rem; +} + +.inset-x-7 { + left: 1.75rem; + right: 1.75rem; +} + +.inset-x-8 { + left: 2rem; + right: 2rem; +} + +.inset-x-9 { + left: 2.25rem; + right: 2.25rem; +} + +.inset-x-10 { + left: 2.5rem; + right: 2.5rem; +} + +.inset-x-11 { + left: 2.75rem; + right: 2.75rem; +} + +.inset-x-12 { + left: 3rem; + right: 3rem; +} + +.inset-x-14 { + left: 3.5rem; + right: 3.5rem; +} + +.inset-x-16 { + left: 4rem; + right: 4rem; +} + +.inset-x-20 { + left: 5rem; + right: 5rem; +} + +.inset-x-24 { + left: 6rem; + right: 6rem; +} + +.inset-x-28 { + left: 7rem; + right: 7rem; +} + +.inset-x-32 { + left: 8rem; + right: 8rem; +} + +.inset-x-36 { + left: 9rem; + right: 9rem; +} + +.inset-x-40 { + left: 10rem; + right: 10rem; +} + +.inset-x-44 { + left: 11rem; + right: 11rem; +} + +.inset-x-48 { + left: 12rem; + right: 12rem; +} + +.inset-x-52 { + left: 13rem; + right: 13rem; +} + +.inset-x-56 { + left: 14rem; + right: 14rem; +} + +.inset-x-60 { + left: 15rem; + right: 15rem; +} + +.inset-x-64 { + left: 16rem; + right: 16rem; +} + +.inset-x-72 { + left: 18rem; + right: 18rem; +} + +.inset-x-80 { + left: 20rem; + right: 20rem; +} + +.inset-x-96 { + left: 24rem; + right: 24rem; +} + +.inset-x-auto { + left: auto; + right: auto; +} + +.inset-x-px { + left: 1px; + right: 1px; +} + +.inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; +} + +.inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; +} + +.inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; +} + +.inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; +} + +.-inset-x-0 { left: 0px; + right: 0px; +} + +.-inset-x-1 { + left: -0.25rem; + right: -0.25rem; +} + +.-inset-x-2 { + left: -0.5rem; + right: -0.5rem; +} + +.-inset-x-3 { + left: -0.75rem; + right: -0.75rem; +} + +.-inset-x-4 { + left: -1rem; + right: -1rem; +} + +.-inset-x-5 { + left: -1.25rem; + right: -1.25rem; +} + +.-inset-x-6 { + left: -1.5rem; + right: -1.5rem; +} + +.-inset-x-7 { + left: -1.75rem; + right: -1.75rem; +} + +.-inset-x-8 { + left: -2rem; + right: -2rem; +} + +.-inset-x-9 { + left: -2.25rem; + right: -2.25rem; +} + +.-inset-x-10 { + left: -2.5rem; + right: -2.5rem; +} + +.-inset-x-11 { + left: -2.75rem; + right: -2.75rem; +} + +.-inset-x-12 { + left: -3rem; + right: -3rem; +} + +.-inset-x-14 { + left: -3.5rem; + right: -3.5rem; +} + +.-inset-x-16 { + left: -4rem; + right: -4rem; +} + +.-inset-x-20 { + left: -5rem; + right: -5rem; +} + +.-inset-x-24 { + left: -6rem; + right: -6rem; +} + +.-inset-x-28 { + left: -7rem; + right: -7rem; +} + +.-inset-x-32 { + left: -8rem; + right: -8rem; +} + +.-inset-x-36 { + left: -9rem; + right: -9rem; +} + +.-inset-x-40 { + left: -10rem; + right: -10rem; +} + +.-inset-x-44 { + left: -11rem; + right: -11rem; +} + +.-inset-x-48 { + left: -12rem; + right: -12rem; +} + +.-inset-x-52 { + left: -13rem; + right: -13rem; +} + +.-inset-x-56 { + left: -14rem; + right: -14rem; +} + +.-inset-x-60 { + left: -15rem; + right: -15rem; +} + +.-inset-x-64 { + left: -16rem; + right: -16rem; +} + +.-inset-x-72 { + left: -18rem; + right: -18rem; +} + +.-inset-x-80 { + left: -20rem; + right: -20rem; +} + +.-inset-x-96 { + left: -24rem; + right: -24rem; +} + +.-inset-x-px { + left: -1px; + right: -1px; +} + +.-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; +} + +.-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; +} + +.-inset-x-2\.5 { + left: -0.625rem; + right: -0.625rem; +} + +.-inset-x-3\.5 { + left: -0.875rem; + right: -0.875rem; +} + +.inset-x-1\/2 { + left: 50%; + right: 50%; +} + +.inset-x-1\/3 { + left: 33.333333%; + right: 33.333333%; +} + +.inset-x-2\/3 { + left: 66.666667%; + right: 66.666667%; +} + +.inset-x-1\/4 { + left: 25%; + right: 25%; +} + +.inset-x-2\/4 { + left: 50%; + right: 50%; +} + +.inset-x-3\/4 { + left: 75%; + right: 75%; +} + +.inset-x-full { + left: 100%; + right: 100%; +} + +.-inset-x-1\/2 { + left: -50%; + right: -50%; +} + +.-inset-x-1\/3 { + left: -33.333333%; + right: -33.333333%; +} + +.-inset-x-2\/3 { + left: -66.666667%; + right: -66.666667%; +} + +.-inset-x-1\/4 { + left: -25%; + right: -25%; +} + +.-inset-x-2\/4 { + left: -50%; + right: -50%; +} + +.-inset-x-3\/4 { + left: -75%; + right: -75%; +} + +.-inset-x-full { + left: -100%; + right: -100%; +} + +.inset-y-0 { + top: 0px; + bottom: 0px; } .inset-y-1 { @@ -1288,2195 +1708,1775 @@ video { bottom: 0.25rem; } -.inset-x-1 { - right: 0.25rem; - left: 0.25rem; -} - .inset-y-2 { top: 0.5rem; bottom: 0.5rem; } -.inset-x-2 { - right: 0.5rem; - left: 0.5rem; -} - .inset-y-3 { top: 0.75rem; bottom: 0.75rem; } -.inset-x-3 { - right: 0.75rem; - left: 0.75rem; -} - .inset-y-4 { top: 1rem; bottom: 1rem; } -.inset-x-4 { - right: 1rem; - left: 1rem; -} - .inset-y-5 { top: 1.25rem; bottom: 1.25rem; } -.inset-x-5 { - right: 1.25rem; - left: 1.25rem; -} - .inset-y-6 { top: 1.5rem; bottom: 1.5rem; } -.inset-x-6 { - right: 1.5rem; - left: 1.5rem; -} - .inset-y-7 { top: 1.75rem; bottom: 1.75rem; } -.inset-x-7 { - right: 1.75rem; - left: 1.75rem; -} - .inset-y-8 { top: 2rem; bottom: 2rem; } -.inset-x-8 { - right: 2rem; - left: 2rem; -} - .inset-y-9 { top: 2.25rem; bottom: 2.25rem; } -.inset-x-9 { - right: 2.25rem; - left: 2.25rem; -} - .inset-y-10 { top: 2.5rem; bottom: 2.5rem; } -.inset-x-10 { - right: 2.5rem; - left: 2.5rem; -} - .inset-y-11 { top: 2.75rem; bottom: 2.75rem; } -.inset-x-11 { - right: 2.75rem; - left: 2.75rem; -} - .inset-y-12 { top: 3rem; bottom: 3rem; } -.inset-x-12 { - right: 3rem; - left: 3rem; -} - .inset-y-14 { top: 3.5rem; bottom: 3.5rem; } -.inset-x-14 { - right: 3.5rem; - left: 3.5rem; -} - .inset-y-16 { top: 4rem; bottom: 4rem; } -.inset-x-16 { - right: 4rem; - left: 4rem; -} - .inset-y-20 { top: 5rem; bottom: 5rem; } -.inset-x-20 { - right: 5rem; - left: 5rem; -} - .inset-y-24 { top: 6rem; bottom: 6rem; } -.inset-x-24 { - right: 6rem; - left: 6rem; -} - .inset-y-28 { top: 7rem; bottom: 7rem; } -.inset-x-28 { - right: 7rem; - left: 7rem; -} - .inset-y-32 { top: 8rem; bottom: 8rem; } -.inset-x-32 { - right: 8rem; - left: 8rem; -} - .inset-y-36 { top: 9rem; bottom: 9rem; } -.inset-x-36 { - right: 9rem; - left: 9rem; -} - .inset-y-40 { top: 10rem; bottom: 10rem; } -.inset-x-40 { - right: 10rem; - left: 10rem; -} - .inset-y-44 { top: 11rem; bottom: 11rem; } -.inset-x-44 { - right: 11rem; - left: 11rem; -} - .inset-y-48 { top: 12rem; bottom: 12rem; } -.inset-x-48 { - right: 12rem; - left: 12rem; -} - .inset-y-52 { top: 13rem; bottom: 13rem; } -.inset-x-52 { - right: 13rem; - left: 13rem; -} - .inset-y-56 { top: 14rem; bottom: 14rem; } -.inset-x-56 { - right: 14rem; - left: 14rem; -} - .inset-y-60 { top: 15rem; bottom: 15rem; } -.inset-x-60 { - right: 15rem; - left: 15rem; -} - .inset-y-64 { top: 16rem; bottom: 16rem; } -.inset-x-64 { - right: 16rem; - left: 16rem; -} - .inset-y-72 { top: 18rem; bottom: 18rem; } -.inset-x-72 { - right: 18rem; - left: 18rem; -} - .inset-y-80 { top: 20rem; bottom: 20rem; } -.inset-x-80 { - right: 20rem; - left: 20rem; -} - .inset-y-96 { top: 24rem; bottom: 24rem; } -.inset-x-96 { - right: 24rem; - left: 24rem; -} - .inset-y-auto { top: auto; bottom: auto; } -.inset-x-auto { - right: auto; - left: auto; -} - .inset-y-px { top: 1px; bottom: 1px; } -.inset-x-px { - right: 1px; - left: 1px; -} - .inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } -.inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; -} - .inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } -.inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; -} - .inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } -.inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; -} - .inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } -.inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; -} - .-inset-y-0 { top: 0px; bottom: 0px; } -.-inset-x-0 { - right: 0px; - left: 0px; -} - .-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } -.-inset-x-1 { - right: -0.25rem; - left: -0.25rem; -} - .-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } -.-inset-x-2 { - right: -0.5rem; - left: -0.5rem; -} - .-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } -.-inset-x-3 { - right: -0.75rem; - left: -0.75rem; -} - .-inset-y-4 { top: -1rem; bottom: -1rem; } -.-inset-x-4 { - right: -1rem; - left: -1rem; -} - .-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } -.-inset-x-5 { - right: -1.25rem; - left: -1.25rem; -} - .-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } -.-inset-x-6 { - right: -1.5rem; - left: -1.5rem; -} - .-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } -.-inset-x-7 { - right: -1.75rem; - left: -1.75rem; -} - .-inset-y-8 { top: -2rem; bottom: -2rem; } -.-inset-x-8 { - right: -2rem; - left: -2rem; -} - .-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } -.-inset-x-9 { - right: -2.25rem; - left: -2.25rem; -} - .-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } -.-inset-x-10 { - right: -2.5rem; - left: -2.5rem; -} - .-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } -.-inset-x-11 { - right: -2.75rem; - left: -2.75rem; -} - .-inset-y-12 { top: -3rem; bottom: -3rem; } -.-inset-x-12 { - right: -3rem; - left: -3rem; -} - .-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } -.-inset-x-14 { - right: -3.5rem; - left: -3.5rem; -} - .-inset-y-16 { top: -4rem; bottom: -4rem; } -.-inset-x-16 { - right: -4rem; - left: -4rem; -} - .-inset-y-20 { top: -5rem; bottom: -5rem; } -.-inset-x-20 { - right: -5rem; - left: -5rem; -} - .-inset-y-24 { top: -6rem; bottom: -6rem; } -.-inset-x-24 { - right: -6rem; - left: -6rem; -} - .-inset-y-28 { top: -7rem; bottom: -7rem; } -.-inset-x-28 { - right: -7rem; - left: -7rem; -} - .-inset-y-32 { top: -8rem; bottom: -8rem; } -.-inset-x-32 { - right: -8rem; - left: -8rem; -} - .-inset-y-36 { top: -9rem; bottom: -9rem; } -.-inset-x-36 { - right: -9rem; - left: -9rem; -} - .-inset-y-40 { top: -10rem; bottom: -10rem; } -.-inset-x-40 { - right: -10rem; - left: -10rem; -} - .-inset-y-44 { top: -11rem; bottom: -11rem; } -.-inset-x-44 { - right: -11rem; - left: -11rem; -} - .-inset-y-48 { top: -12rem; bottom: -12rem; } -.-inset-x-48 { - right: -12rem; - left: -12rem; -} - .-inset-y-52 { top: -13rem; bottom: -13rem; } -.-inset-x-52 { - right: -13rem; - left: -13rem; -} - .-inset-y-56 { top: -14rem; bottom: -14rem; } -.-inset-x-56 { - right: -14rem; - left: -14rem; -} - .-inset-y-60 { top: -15rem; bottom: -15rem; } -.-inset-x-60 { - right: -15rem; - left: -15rem; -} - .-inset-y-64 { top: -16rem; bottom: -16rem; } -.-inset-x-64 { - right: -16rem; - left: -16rem; -} - .-inset-y-72 { top: -18rem; bottom: -18rem; } -.-inset-x-72 { - right: -18rem; - left: -18rem; -} - .-inset-y-80 { top: -20rem; bottom: -20rem; } -.-inset-x-80 { - right: -20rem; - left: -20rem; -} - .-inset-y-96 { top: -24rem; bottom: -24rem; } -.-inset-x-96 { - right: -24rem; - left: -24rem; -} - .-inset-y-px { top: -1px; bottom: -1px; } -.-inset-x-px { - right: -1px; - left: -1px; -} - .-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } -.-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; -} - .-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } -.-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; -} - .-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } -.-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; -} - .-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } -.-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; -} - .inset-y-1\/2 { top: 50%; bottom: 50%; } -.inset-x-1\/2 { - right: 50%; - left: 50%; -} - .inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } -.inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; -} - .inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } -.inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; -} - .inset-y-1\/4 { top: 25%; bottom: 25%; } -.inset-x-1\/4 { - right: 25%; - left: 25%; -} - .inset-y-2\/4 { top: 50%; bottom: 50%; } -.inset-x-2\/4 { - right: 50%; - left: 50%; -} - .inset-y-3\/4 { top: 75%; bottom: 75%; } -.inset-x-3\/4 { - right: 75%; - left: 75%; -} - .inset-y-full { top: 100%; bottom: 100%; } -.inset-x-full { - right: 100%; - left: 100%; -} - .-inset-y-1\/2 { top: -50%; bottom: -50%; } -.-inset-x-1\/2 { - right: -50%; - left: -50%; -} - .-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } -.-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; -} - .-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } -.-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; -} - .-inset-y-1\/4 { top: -25%; bottom: -25%; } -.-inset-x-1\/4 { - right: -25%; - left: -25%; -} - .-inset-y-2\/4 { top: -50%; bottom: -50%; } -.-inset-x-2\/4 { - right: -50%; - left: -50%; -} - .-inset-y-3\/4 { top: -75%; bottom: -75%; } -.-inset-x-3\/4 { - right: -75%; - left: -75%; -} - .-inset-y-full { top: -100%; bottom: -100%; } -.-inset-x-full { - right: -100%; - left: -100%; -} - .top-0 { top: 0px; } -.right-0 { - right: 0px; +.top-1 { + top: 0.25rem; } -.bottom-0 { - bottom: 0px; +.top-2 { + top: 0.5rem; } -.left-0 { - left: 0px; +.top-3 { + top: 0.75rem; } -.top-1 { - top: 0.25rem; +.top-4 { + top: 1rem; } -.right-1 { - right: 0.25rem; +.top-5 { + top: 1.25rem; } -.bottom-1 { - bottom: 0.25rem; +.top-6 { + top: 1.5rem; } -.left-1 { - left: 0.25rem; +.top-7 { + top: 1.75rem; } -.top-2 { - top: 0.5rem; +.top-8 { + top: 2rem; } -.right-2 { - right: 0.5rem; +.top-9 { + top: 2.25rem; } -.bottom-2 { - bottom: 0.5rem; +.top-10 { + top: 2.5rem; } -.left-2 { - left: 0.5rem; +.top-11 { + top: 2.75rem; } -.top-3 { - top: 0.75rem; +.top-12 { + top: 3rem; } -.right-3 { - right: 0.75rem; +.top-14 { + top: 3.5rem; } -.bottom-3 { - bottom: 0.75rem; +.top-16 { + top: 4rem; } -.left-3 { - left: 0.75rem; +.top-20 { + top: 5rem; } -.top-4 { - top: 1rem; +.top-24 { + top: 6rem; } -.right-4 { - right: 1rem; +.top-28 { + top: 7rem; } -.bottom-4 { - bottom: 1rem; +.top-32 { + top: 8rem; } -.left-4 { - left: 1rem; +.top-36 { + top: 9rem; } -.top-5 { - top: 1.25rem; +.top-40 { + top: 10rem; } -.right-5 { - right: 1.25rem; +.top-44 { + top: 11rem; } -.bottom-5 { - bottom: 1.25rem; +.top-48 { + top: 12rem; } -.left-5 { - left: 1.25rem; +.top-52 { + top: 13rem; } -.top-6 { - top: 1.5rem; +.top-56 { + top: 14rem; } -.right-6 { - right: 1.5rem; +.top-60 { + top: 15rem; } -.bottom-6 { - bottom: 1.5rem; +.top-64 { + top: 16rem; } -.left-6 { - left: 1.5rem; +.top-72 { + top: 18rem; } -.top-7 { - top: 1.75rem; +.top-80 { + top: 20rem; } -.right-7 { - right: 1.75rem; +.top-96 { + top: 24rem; } -.bottom-7 { - bottom: 1.75rem; +.top-auto { + top: auto; } -.left-7 { - left: 1.75rem; +.top-px { + top: 1px; } -.top-8 { - top: 2rem; +.top-0\.5 { + top: 0.125rem; } -.right-8 { - right: 2rem; +.top-1\.5 { + top: 0.375rem; } -.bottom-8 { - bottom: 2rem; +.top-2\.5 { + top: 0.625rem; } -.left-8 { - left: 2rem; +.top-3\.5 { + top: 0.875rem; } -.top-9 { - top: 2.25rem; +.-top-0 { + top: 0px; } -.right-9 { - right: 2.25rem; +.-top-1 { + top: -0.25rem; } -.bottom-9 { - bottom: 2.25rem; +.-top-2 { + top: -0.5rem; } -.left-9 { - left: 2.25rem; +.-top-3 { + top: -0.75rem; } -.top-10 { - top: 2.5rem; +.-top-4 { + top: -1rem; } -.right-10 { - right: 2.5rem; +.-top-5 { + top: -1.25rem; } -.bottom-10 { - bottom: 2.5rem; +.-top-6 { + top: -1.5rem; } -.left-10 { - left: 2.5rem; +.-top-7 { + top: -1.75rem; } -.top-11 { - top: 2.75rem; +.-top-8 { + top: -2rem; } -.right-11 { - right: 2.75rem; +.-top-9 { + top: -2.25rem; } -.bottom-11 { - bottom: 2.75rem; +.-top-10 { + top: -2.5rem; } -.left-11 { - left: 2.75rem; +.-top-11 { + top: -2.75rem; } -.top-12 { - top: 3rem; +.-top-12 { + top: -3rem; } -.right-12 { - right: 3rem; +.-top-14 { + top: -3.5rem; } -.bottom-12 { - bottom: 3rem; +.-top-16 { + top: -4rem; } -.left-12 { - left: 3rem; +.-top-20 { + top: -5rem; } -.top-14 { - top: 3.5rem; +.-top-24 { + top: -6rem; } -.right-14 { - right: 3.5rem; +.-top-28 { + top: -7rem; } -.bottom-14 { - bottom: 3.5rem; +.-top-32 { + top: -8rem; } -.left-14 { - left: 3.5rem; +.-top-36 { + top: -9rem; } -.top-16 { - top: 4rem; +.-top-40 { + top: -10rem; } -.right-16 { - right: 4rem; +.-top-44 { + top: -11rem; } -.bottom-16 { - bottom: 4rem; +.-top-48 { + top: -12rem; } -.left-16 { - left: 4rem; +.-top-52 { + top: -13rem; } -.top-20 { - top: 5rem; +.-top-56 { + top: -14rem; } -.right-20 { - right: 5rem; +.-top-60 { + top: -15rem; } -.bottom-20 { - bottom: 5rem; +.-top-64 { + top: -16rem; } -.left-20 { - left: 5rem; +.-top-72 { + top: -18rem; } -.top-24 { - top: 6rem; +.-top-80 { + top: -20rem; } -.right-24 { - right: 6rem; +.-top-96 { + top: -24rem; } -.bottom-24 { - bottom: 6rem; +.-top-px { + top: -1px; } -.left-24 { - left: 6rem; +.-top-0\.5 { + top: -0.125rem; } -.top-28 { - top: 7rem; +.-top-1\.5 { + top: -0.375rem; } -.right-28 { - right: 7rem; +.-top-2\.5 { + top: -0.625rem; } -.bottom-28 { - bottom: 7rem; +.-top-3\.5 { + top: -0.875rem; } -.left-28 { - left: 7rem; +.top-1\/2 { + top: 50%; } -.top-32 { - top: 8rem; +.top-1\/3 { + top: 33.333333%; } -.right-32 { - right: 8rem; +.top-2\/3 { + top: 66.666667%; } -.bottom-32 { - bottom: 8rem; +.top-1\/4 { + top: 25%; } -.left-32 { - left: 8rem; +.top-2\/4 { + top: 50%; } -.top-36 { - top: 9rem; +.top-3\/4 { + top: 75%; } -.right-36 { - right: 9rem; +.top-full { + top: 100%; } -.bottom-36 { - bottom: 9rem; +.-top-1\/2 { + top: -50%; } -.left-36 { - left: 9rem; +.-top-1\/3 { + top: -33.333333%; } -.top-40 { - top: 10rem; +.-top-2\/3 { + top: -66.666667%; } -.right-40 { - right: 10rem; +.-top-1\/4 { + top: -25%; } -.bottom-40 { - bottom: 10rem; +.-top-2\/4 { + top: -50%; } -.left-40 { - left: 10rem; +.-top-3\/4 { + top: -75%; } -.top-44 { - top: 11rem; +.-top-full { + top: -100%; } -.right-44 { - right: 11rem; +.right-0 { + right: 0px; } -.bottom-44 { - bottom: 11rem; +.right-1 { + right: 0.25rem; } -.left-44 { - left: 11rem; +.right-2 { + right: 0.5rem; } -.top-48 { - top: 12rem; +.right-3 { + right: 0.75rem; } -.right-48 { - right: 12rem; +.right-4 { + right: 1rem; } -.bottom-48 { - bottom: 12rem; +.right-5 { + right: 1.25rem; } -.left-48 { - left: 12rem; +.right-6 { + right: 1.5rem; } -.top-52 { - top: 13rem; +.right-7 { + right: 1.75rem; } -.right-52 { - right: 13rem; +.right-8 { + right: 2rem; } -.bottom-52 { - bottom: 13rem; +.right-9 { + right: 2.25rem; } -.left-52 { - left: 13rem; +.right-10 { + right: 2.5rem; } -.top-56 { - top: 14rem; +.right-11 { + right: 2.75rem; } -.right-56 { - right: 14rem; +.right-12 { + right: 3rem; } -.bottom-56 { - bottom: 14rem; +.right-14 { + right: 3.5rem; } -.left-56 { - left: 14rem; +.right-16 { + right: 4rem; } -.top-60 { - top: 15rem; +.right-20 { + right: 5rem; } -.right-60 { - right: 15rem; +.right-24 { + right: 6rem; } -.bottom-60 { - bottom: 15rem; +.right-28 { + right: 7rem; } -.left-60 { - left: 15rem; +.right-32 { + right: 8rem; } -.top-64 { - top: 16rem; +.right-36 { + right: 9rem; } -.right-64 { - right: 16rem; +.right-40 { + right: 10rem; } -.bottom-64 { - bottom: 16rem; +.right-44 { + right: 11rem; } -.left-64 { - left: 16rem; +.right-48 { + right: 12rem; } -.top-72 { - top: 18rem; +.right-52 { + right: 13rem; } -.right-72 { - right: 18rem; +.right-56 { + right: 14rem; } -.bottom-72 { - bottom: 18rem; +.right-60 { + right: 15rem; } -.left-72 { - left: 18rem; +.right-64 { + right: 16rem; } -.top-80 { - top: 20rem; +.right-72 { + right: 18rem; } .right-80 { right: 20rem; } -.bottom-80 { - bottom: 20rem; +.right-96 { + right: 24rem; } -.left-80 { - left: 20rem; +.right-auto { + right: auto; } -.top-96 { - top: 24rem; +.right-px { + right: 1px; } -.right-96 { - right: 24rem; +.right-0\.5 { + right: 0.125rem; } -.bottom-96 { - bottom: 24rem; +.right-1\.5 { + right: 0.375rem; } -.left-96 { - left: 24rem; +.right-2\.5 { + right: 0.625rem; } -.top-auto { - top: auto; +.right-3\.5 { + right: 0.875rem; } -.right-auto { - right: auto; +.-right-0 { + right: 0px; } -.bottom-auto { - bottom: auto; +.-right-1 { + right: -0.25rem; } -.left-auto { - left: auto; +.-right-2 { + right: -0.5rem; } -.top-px { - top: 1px; +.-right-3 { + right: -0.75rem; } -.right-px { - right: 1px; +.-right-4 { + right: -1rem; } -.bottom-px { - bottom: 1px; +.-right-5 { + right: -1.25rem; } -.left-px { - left: 1px; +.-right-6 { + right: -1.5rem; } -.top-0\.5 { - top: 0.125rem; +.-right-7 { + right: -1.75rem; } -.right-0\.5 { - right: 0.125rem; +.-right-8 { + right: -2rem; } -.bottom-0\.5 { - bottom: 0.125rem; +.-right-9 { + right: -2.25rem; } -.left-0\.5 { - left: 0.125rem; +.-right-10 { + right: -2.5rem; } -.top-1\.5 { - top: 0.375rem; +.-right-11 { + right: -2.75rem; } -.right-1\.5 { - right: 0.375rem; +.-right-12 { + right: -3rem; } -.bottom-1\.5 { - bottom: 0.375rem; +.-right-14 { + right: -3.5rem; } -.left-1\.5 { - left: 0.375rem; +.-right-16 { + right: -4rem; } -.top-2\.5 { - top: 0.625rem; +.-right-20 { + right: -5rem; } -.right-2\.5 { - right: 0.625rem; +.-right-24 { + right: -6rem; } -.bottom-2\.5 { - bottom: 0.625rem; +.-right-28 { + right: -7rem; } -.left-2\.5 { - left: 0.625rem; +.-right-32 { + right: -8rem; } -.top-3\.5 { - top: 0.875rem; +.-right-36 { + right: -9rem; } -.right-3\.5 { - right: 0.875rem; +.-right-40 { + right: -10rem; } -.bottom-3\.5 { - bottom: 0.875rem; +.-right-44 { + right: -11rem; } -.left-3\.5 { - left: 0.875rem; +.-right-48 { + right: -12rem; } -.-top-0 { - top: 0px; +.-right-52 { + right: -13rem; } -.-right-0 { - right: 0px; +.-right-56 { + right: -14rem; } -.-bottom-0 { - bottom: 0px; +.-right-60 { + right: -15rem; } -.-left-0 { - left: 0px; +.-right-64 { + right: -16rem; } -.-top-1 { - top: -0.25rem; +.-right-72 { + right: -18rem; } -.-right-1 { - right: -0.25rem; +.-right-80 { + right: -20rem; } -.-bottom-1 { - bottom: -0.25rem; +.-right-96 { + right: -24rem; } -.-left-1 { - left: -0.25rem; +.-right-px { + right: -1px; } -.-top-2 { - top: -0.5rem; +.-right-0\.5 { + right: -0.125rem; } -.-right-2 { - right: -0.5rem; +.-right-1\.5 { + right: -0.375rem; } -.-bottom-2 { - bottom: -0.5rem; +.-right-2\.5 { + right: -0.625rem; } -.-left-2 { - left: -0.5rem; +.-right-3\.5 { + right: -0.875rem; } -.-top-3 { - top: -0.75rem; +.right-1\/2 { + right: 50%; } -.-right-3 { - right: -0.75rem; +.right-1\/3 { + right: 33.333333%; } -.-bottom-3 { - bottom: -0.75rem; +.right-2\/3 { + right: 66.666667%; } -.-left-3 { - left: -0.75rem; +.right-1\/4 { + right: 25%; } -.-top-4 { - top: -1rem; +.right-2\/4 { + right: 50%; } -.-right-4 { - right: -1rem; +.right-3\/4 { + right: 75%; } -.-bottom-4 { - bottom: -1rem; +.right-full { + right: 100%; } -.-left-4 { - left: -1rem; +.-right-1\/2 { + right: -50%; } -.-top-5 { - top: -1.25rem; +.-right-1\/3 { + right: -33.333333%; } -.-right-5 { - right: -1.25rem; +.-right-2\/3 { + right: -66.666667%; } -.-bottom-5 { - bottom: -1.25rem; +.-right-1\/4 { + right: -25%; } -.-left-5 { - left: -1.25rem; +.-right-2\/4 { + right: -50%; } -.-top-6 { - top: -1.5rem; +.-right-3\/4 { + right: -75%; } -.-right-6 { - right: -1.5rem; +.-right-full { + right: -100%; } -.-bottom-6 { - bottom: -1.5rem; +.bottom-0 { + bottom: 0px; } -.-left-6 { - left: -1.5rem; +.bottom-1 { + bottom: 0.25rem; } -.-top-7 { - top: -1.75rem; +.bottom-2 { + bottom: 0.5rem; } -.-right-7 { - right: -1.75rem; +.bottom-3 { + bottom: 0.75rem; } -.-bottom-7 { - bottom: -1.75rem; +.bottom-4 { + bottom: 1rem; } -.-left-7 { - left: -1.75rem; +.bottom-5 { + bottom: 1.25rem; } -.-top-8 { - top: -2rem; +.bottom-6 { + bottom: 1.5rem; } -.-right-8 { - right: -2rem; +.bottom-7 { + bottom: 1.75rem; } -.-bottom-8 { - bottom: -2rem; +.bottom-8 { + bottom: 2rem; } -.-left-8 { - left: -2rem; +.bottom-9 { + bottom: 2.25rem; } -.-top-9 { - top: -2.25rem; +.bottom-10 { + bottom: 2.5rem; } -.-right-9 { - right: -2.25rem; +.bottom-11 { + bottom: 2.75rem; } -.-bottom-9 { - bottom: -2.25rem; +.bottom-12 { + bottom: 3rem; } -.-left-9 { - left: -2.25rem; +.bottom-14 { + bottom: 3.5rem; } -.-top-10 { - top: -2.5rem; +.bottom-16 { + bottom: 4rem; } -.-right-10 { - right: -2.5rem; +.bottom-20 { + bottom: 5rem; } -.-bottom-10 { - bottom: -2.5rem; +.bottom-24 { + bottom: 6rem; } -.-left-10 { - left: -2.5rem; +.bottom-28 { + bottom: 7rem; } -.-top-11 { - top: -2.75rem; +.bottom-32 { + bottom: 8rem; } -.-right-11 { - right: -2.75rem; +.bottom-36 { + bottom: 9rem; } -.-bottom-11 { - bottom: -2.75rem; +.bottom-40 { + bottom: 10rem; } -.-left-11 { - left: -2.75rem; +.bottom-44 { + bottom: 11rem; } -.-top-12 { - top: -3rem; +.bottom-48 { + bottom: 12rem; } -.-right-12 { - right: -3rem; +.bottom-52 { + bottom: 13rem; } -.-bottom-12 { - bottom: -3rem; +.bottom-56 { + bottom: 14rem; } -.-left-12 { - left: -3rem; +.bottom-60 { + bottom: 15rem; } -.-top-14 { - top: -3.5rem; +.bottom-64 { + bottom: 16rem; } -.-right-14 { - right: -3.5rem; +.bottom-72 { + bottom: 18rem; } -.-bottom-14 { - bottom: -3.5rem; +.bottom-80 { + bottom: 20rem; } -.-left-14 { - left: -3.5rem; +.bottom-96 { + bottom: 24rem; } -.-top-16 { - top: -4rem; +.bottom-auto { + bottom: auto; } -.-right-16 { - right: -4rem; +.bottom-px { + bottom: 1px; } -.-bottom-16 { - bottom: -4rem; +.bottom-0\.5 { + bottom: 0.125rem; } -.-left-16 { - left: -4rem; +.bottom-1\.5 { + bottom: 0.375rem; } -.-top-20 { - top: -5rem; +.bottom-2\.5 { + bottom: 0.625rem; } -.-right-20 { - right: -5rem; +.bottom-3\.5 { + bottom: 0.875rem; } -.-bottom-20 { - bottom: -5rem; +.-bottom-0 { + bottom: 0px; } -.-left-20 { - left: -5rem; +.-bottom-1 { + bottom: -0.25rem; } -.-top-24 { - top: -6rem; +.-bottom-2 { + bottom: -0.5rem; } -.-right-24 { - right: -6rem; +.-bottom-3 { + bottom: -0.75rem; } -.-bottom-24 { - bottom: -6rem; +.-bottom-4 { + bottom: -1rem; } -.-left-24 { - left: -6rem; +.-bottom-5 { + bottom: -1.25rem; } -.-top-28 { - top: -7rem; +.-bottom-6 { + bottom: -1.5rem; } -.-right-28 { - right: -7rem; +.-bottom-7 { + bottom: -1.75rem; } -.-bottom-28 { - bottom: -7rem; +.-bottom-8 { + bottom: -2rem; } -.-left-28 { - left: -7rem; +.-bottom-9 { + bottom: -2.25rem; } -.-top-32 { - top: -8rem; +.-bottom-10 { + bottom: -2.5rem; } -.-right-32 { - right: -8rem; +.-bottom-11 { + bottom: -2.75rem; } -.-bottom-32 { - bottom: -8rem; +.-bottom-12 { + bottom: -3rem; } -.-left-32 { - left: -8rem; +.-bottom-14 { + bottom: -3.5rem; } -.-top-36 { - top: -9rem; +.-bottom-16 { + bottom: -4rem; } -.-right-36 { - right: -9rem; +.-bottom-20 { + bottom: -5rem; } -.-bottom-36 { - bottom: -9rem; +.-bottom-24 { + bottom: -6rem; } -.-left-36 { - left: -9rem; +.-bottom-28 { + bottom: -7rem; } -.-top-40 { - top: -10rem; +.-bottom-32 { + bottom: -8rem; } -.-right-40 { - right: -10rem; +.-bottom-36 { + bottom: -9rem; } .-bottom-40 { bottom: -10rem; } -.-left-40 { - left: -10rem; +.-bottom-44 { + bottom: -11rem; } -.-top-44 { - top: -11rem; +.-bottom-48 { + bottom: -12rem; } -.-right-44 { - right: -11rem; +.-bottom-52 { + bottom: -13rem; } -.-bottom-44 { - bottom: -11rem; +.-bottom-56 { + bottom: -14rem; } -.-left-44 { - left: -11rem; +.-bottom-60 { + bottom: -15rem; } -.-top-48 { - top: -12rem; +.-bottom-64 { + bottom: -16rem; } -.-right-48 { - right: -12rem; +.-bottom-72 { + bottom: -18rem; } -.-bottom-48 { - bottom: -12rem; +.-bottom-80 { + bottom: -20rem; } -.-left-48 { - left: -12rem; +.-bottom-96 { + bottom: -24rem; } -.-top-52 { - top: -13rem; +.-bottom-px { + bottom: -1px; } -.-right-52 { - right: -13rem; +.-bottom-0\.5 { + bottom: -0.125rem; } -.-bottom-52 { - bottom: -13rem; +.-bottom-1\.5 { + bottom: -0.375rem; } -.-left-52 { - left: -13rem; +.-bottom-2\.5 { + bottom: -0.625rem; } -.-top-56 { - top: -14rem; +.-bottom-3\.5 { + bottom: -0.875rem; } -.-right-56 { - right: -14rem; +.bottom-1\/2 { + bottom: 50%; } -.-bottom-56 { - bottom: -14rem; +.bottom-1\/3 { + bottom: 33.333333%; } -.-left-56 { - left: -14rem; +.bottom-2\/3 { + bottom: 66.666667%; } -.-top-60 { - top: -15rem; +.bottom-1\/4 { + bottom: 25%; } -.-right-60 { - right: -15rem; +.bottom-2\/4 { + bottom: 50%; } -.-bottom-60 { - bottom: -15rem; +.bottom-3\/4 { + bottom: 75%; } -.-left-60 { - left: -15rem; +.bottom-full { + bottom: 100%; } -.-top-64 { - top: -16rem; +.-bottom-1\/2 { + bottom: -50%; } -.-right-64 { - right: -16rem; +.-bottom-1\/3 { + bottom: -33.333333%; } -.-bottom-64 { - bottom: -16rem; +.-bottom-2\/3 { + bottom: -66.666667%; } -.-left-64 { - left: -16rem; +.-bottom-1\/4 { + bottom: -25%; } -.-top-72 { - top: -18rem; +.-bottom-2\/4 { + bottom: -50%; } -.-right-72 { - right: -18rem; +.-bottom-3\/4 { + bottom: -75%; } -.-bottom-72 { - bottom: -18rem; +.-bottom-full { + bottom: -100%; } -.-left-72 { - left: -18rem; +.left-0 { + left: 0px; } -.-top-80 { - top: -20rem; +.left-1 { + left: 0.25rem; } -.-right-80 { - right: -20rem; +.left-2 { + left: 0.5rem; } -.-bottom-80 { - bottom: -20rem; +.left-3 { + left: 0.75rem; } -.-left-80 { - left: -20rem; +.left-4 { + left: 1rem; } -.-top-96 { - top: -24rem; +.left-5 { + left: 1.25rem; } -.-right-96 { - right: -24rem; +.left-6 { + left: 1.5rem; } -.-bottom-96 { - bottom: -24rem; +.left-7 { + left: 1.75rem; } -.-left-96 { - left: -24rem; +.left-8 { + left: 2rem; } -.-top-px { - top: -1px; +.left-9 { + left: 2.25rem; } -.-right-px { - right: -1px; +.left-10 { + left: 2.5rem; } -.-bottom-px { - bottom: -1px; +.left-11 { + left: 2.75rem; } -.-left-px { - left: -1px; +.left-12 { + left: 3rem; } -.-top-0\.5 { - top: -0.125rem; +.left-14 { + left: 3.5rem; } -.-right-0\.5 { - right: -0.125rem; +.left-16 { + left: 4rem; } -.-bottom-0\.5 { - bottom: -0.125rem; +.left-20 { + left: 5rem; } -.-left-0\.5 { - left: -0.125rem; +.left-24 { + left: 6rem; } -.-top-1\.5 { - top: -0.375rem; +.left-28 { + left: 7rem; } -.-right-1\.5 { - right: -0.375rem; +.left-32 { + left: 8rem; } -.-bottom-1\.5 { - bottom: -0.375rem; +.left-36 { + left: 9rem; } -.-left-1\.5 { - left: -0.375rem; +.left-40 { + left: 10rem; } -.-top-2\.5 { - top: -0.625rem; +.left-44 { + left: 11rem; } -.-right-2\.5 { - right: -0.625rem; +.left-48 { + left: 12rem; } -.-bottom-2\.5 { - bottom: -0.625rem; +.left-52 { + left: 13rem; } -.-left-2\.5 { - left: -0.625rem; +.left-56 { + left: 14rem; } -.-top-3\.5 { - top: -0.875rem; +.left-60 { + left: 15rem; } -.-right-3\.5 { - right: -0.875rem; +.left-64 { + left: 16rem; } -.-bottom-3\.5 { - bottom: -0.875rem; +.left-72 { + left: 18rem; } -.-left-3\.5 { - left: -0.875rem; +.left-80 { + left: 20rem; } -.top-1\/2 { - top: 50%; +.left-96 { + left: 24rem; } -.right-1\/2 { - right: 50%; +.left-auto { + left: auto; } -.bottom-1\/2 { - bottom: 50%; +.left-px { + left: 1px; } -.left-1\/2 { - left: 50%; +.left-0\.5 { + left: 0.125rem; } -.top-1\/3 { - top: 33.333333%; +.left-1\.5 { + left: 0.375rem; } -.right-1\/3 { - right: 33.333333%; +.left-2\.5 { + left: 0.625rem; } -.bottom-1\/3 { - bottom: 33.333333%; +.left-3\.5 { + left: 0.875rem; } -.left-1\/3 { - left: 33.333333%; +.-left-0 { + left: 0px; } -.top-2\/3 { - top: 66.666667%; +.-left-1 { + left: -0.25rem; } -.right-2\/3 { - right: 66.666667%; +.-left-2 { + left: -0.5rem; } -.bottom-2\/3 { - bottom: 66.666667%; +.-left-3 { + left: -0.75rem; } -.left-2\/3 { - left: 66.666667%; +.-left-4 { + left: -1rem; } -.top-1\/4 { - top: 25%; +.-left-5 { + left: -1.25rem; } -.right-1\/4 { - right: 25%; +.-left-6 { + left: -1.5rem; } -.bottom-1\/4 { - bottom: 25%; +.-left-7 { + left: -1.75rem; } -.left-1\/4 { - left: 25%; +.-left-8 { + left: -2rem; } -.top-2\/4 { - top: 50%; +.-left-9 { + left: -2.25rem; } -.right-2\/4 { - right: 50%; +.-left-10 { + left: -2.5rem; } -.bottom-2\/4 { - bottom: 50%; +.-left-11 { + left: -2.75rem; } -.left-2\/4 { - left: 50%; +.-left-12 { + left: -3rem; } -.top-3\/4 { - top: 75%; +.-left-14 { + left: -3.5rem; } -.right-3\/4 { - right: 75%; +.-left-16 { + left: -4rem; } -.bottom-3\/4 { - bottom: 75%; +.-left-20 { + left: -5rem; } -.left-3\/4 { - left: 75%; +.-left-24 { + left: -6rem; } -.top-full { - top: 100%; +.-left-28 { + left: -7rem; } -.right-full { - right: 100%; +.-left-32 { + left: -8rem; } -.bottom-full { - bottom: 100%; +.-left-36 { + left: -9rem; } -.left-full { - left: 100%; +.-left-40 { + left: -10rem; } -.-top-1\/2 { - top: -50%; +.-left-44 { + left: -11rem; } -.-right-1\/2 { - right: -50%; +.-left-48 { + left: -12rem; } -.-bottom-1\/2 { - bottom: -50%; +.-left-52 { + left: -13rem; } -.-left-1\/2 { - left: -50%; +.-left-56 { + left: -14rem; } -.-top-1\/3 { - top: -33.333333%; +.-left-60 { + left: -15rem; } -.-right-1\/3 { - right: -33.333333%; +.-left-64 { + left: -16rem; } -.-bottom-1\/3 { - bottom: -33.333333%; +.-left-72 { + left: -18rem; } -.-left-1\/3 { - left: -33.333333%; +.-left-80 { + left: -20rem; } -.-top-2\/3 { - top: -66.666667%; +.-left-96 { + left: -24rem; } -.-right-2\/3 { - right: -66.666667%; +.-left-px { + left: -1px; } -.-bottom-2\/3 { - bottom: -66.666667%; +.-left-0\.5 { + left: -0.125rem; } -.-left-2\/3 { - left: -66.666667%; +.-left-1\.5 { + left: -0.375rem; } -.-top-1\/4 { - top: -25%; +.-left-2\.5 { + left: -0.625rem; } -.-right-1\/4 { - right: -25%; +.-left-3\.5 { + left: -0.875rem; } -.-bottom-1\/4 { - bottom: -25%; +.left-1\/2 { + left: 50%; } -.-left-1\/4 { - left: -25%; +.left-1\/3 { + left: 33.333333%; } -.-top-2\/4 { - top: -50%; +.left-2\/3 { + left: 66.666667%; } -.-right-2\/4 { - right: -50%; +.left-1\/4 { + left: 25%; } -.-bottom-2\/4 { - bottom: -50%; +.left-2\/4 { + left: 50%; } -.-left-2\/4 { - left: -50%; +.left-3\/4 { + left: 75%; } -.-top-3\/4 { - top: -75%; +.left-full { + left: 100%; } -.-right-3\/4 { - right: -75%; +.-left-1\/2 { + left: -50%; } -.-bottom-3\/4 { - bottom: -75%; +.-left-1\/3 { + left: -33.333333%; } -.-left-3\/4 { - left: -75%; +.-left-2\/3 { + left: -66.666667%; } -.-top-full { - top: -100%; +.-left-1\/4 { + left: -25%; } -.-right-full { - right: -100%; +.-left-2\/4 { + left: -50%; } -.-bottom-full { - bottom: -100%; +.-left-3\/4 { + left: -75%; } .-left-full { @@ -9533,133 +9533,183 @@ video { --tw-scale-y: 1.5; } -.scale-x-0 { +.hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } -.scale-x-50 { +.hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } -.scale-x-75 { +.hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } -.scale-x-90 { +.hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } -.scale-x-95 { +.hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } -.scale-x-100 { +.hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } -.scale-x-105 { +.hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.scale-x-110 { +.hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.scale-x-125 { +.hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.scale-x-150 { +.hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.scale-y-0 { +.focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } -.scale-y-50 { +.focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } -.scale-y-75 { +.focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } -.scale-y-90 { +.focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } -.scale-y-95 { +.focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } -.scale-y-100 { +.focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } -.scale-y-105 { +.focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } -.scale-y-110 { +.focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } -.scale-y-125 { +.focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } -.scale-y-150 { +.focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } -.hover\:scale-0:hover { +.scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } -.hover\:scale-50:hover { +.scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } -.hover\:scale-75:hover { +.scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } -.hover\:scale-90:hover { +.scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } -.hover\:scale-95:hover { +.scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } -.hover\:scale-100:hover { +.scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } -.hover\:scale-105:hover { +.scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } -.hover\:scale-110:hover { +.scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } -.hover\:scale-125:hover { +.scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } -.hover\:scale-150:hover { +.scale-x-150 { --tw-scale-x: 1.5; +} + +.scale-y-0 { + --tw-scale-y: 0; +} + +.scale-y-50 { + --tw-scale-y: .5; +} + +.scale-y-75 { + --tw-scale-y: .75; +} + +.scale-y-90 { + --tw-scale-y: .9; +} + +.scale-y-95 { + --tw-scale-y: .95; +} + +.scale-y-100 { + --tw-scale-y: 1; +} + +.scale-y-105 { + --tw-scale-y: 1.05; +} + +.scale-y-110 { + --tw-scale-y: 1.1; +} + +.scale-y-125 { + --tw-scale-y: 1.25; +} + +.scale-y-150 { --tw-scale-y: 1.5; } @@ -9743,56 +9793,6 @@ video { --tw-scale-y: 1.5; } -.focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; -} - -.focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; -} - -.focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; -} - -.focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; -} - -.focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; -} - -.focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; -} - -.focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; -} - -.focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; -} - -.focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; -} - -.focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; -} - .focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -10716,436 +10716,640 @@ video { row-gap: 0.875rem; } -.space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); -} - .space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } -.space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); -} - .space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); -} - .space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); -} - .space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); -} - .space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); -} - .space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); -} - .space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); -} - .space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); -} - .space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); -} - .space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); -} - .space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); -} - .space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); -} - .space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); -} - .space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); -} - .space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); -} - .space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); -} - .space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); -} - .space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); -} - .space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); -} - .space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); -} - .space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); -} - .space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); -} - .space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); -} - .space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); -} - .space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); -} - .space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); -} - .space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); -} - .space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); -} - .space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); -} - .space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); -} - .space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } -.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); -} - .space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); -} - .space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); -} - .space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); -} - .space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } -.-space-y-0 > :not([hidden]) ~ :not([hidden]) { +.-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } -.-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); +} + +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} + +.space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); +} + +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); +} + +.space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); +} + +.space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); +} + +.space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); +} + +.space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); +} + +.space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); +} + +.space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); +} + +.space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); +} + +.space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); +} + +.space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); +} + +.space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); +} + +.space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); +} + +.space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); +} + +.space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); +} + +.space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); +} + +.space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); +} + +.space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); +} + +.space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); +} + +.space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); +} + +.space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); +} + +.space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); +} + +.space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); +} + +.space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); +} + +.space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); +} + +.space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); +} + +.space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); +} + +.space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); +} + +.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); +} + +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); +} + +.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); +} + +.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); +} + +.-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -11154,408 +11358,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } -.-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } -.-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } -.-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } -.-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } -.-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } -.-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } -.-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } -.-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } -.-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } -.-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } -.-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } -.-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } -.-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } -.-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } -.-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } -.-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } -.-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } -.-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } -.-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } -.-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } -.-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } -.-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } -.-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } -.-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } -.-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } -.-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } -.-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } -.-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } -.-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } -.-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } -.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } -.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } -.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } -.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); -} - .space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -11564,66 +11564,66 @@ video { --tw-space-x-reverse: 1; } -.divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); -} - .divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); -} - .divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); -} - .divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); -} - .divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); -} - .divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } +.divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); +} + +.divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); +} + +.divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); +} + +.divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); +} + +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); +} + .divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -16475,2188 +16475,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); -} - -.via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); -} - -.via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); -} - -.via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); -} - -.via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); -} - -.via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); -} - -.via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); -} - -.via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); -} - -.via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); -} - -.via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); -} - -.via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); -} - -.via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); -} - -.via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); -} - -.via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); -} - -.via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); -} - -.via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); -} - -.via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); -} - -.via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); -} - -.via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); -} - -.via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); -} - -.via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); -} - -.via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); -} - -.via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); -} - -.via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); -} - -.via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); -} - -.via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); -} - -.via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); -} - -.via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); -} - -.via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); -} - -.via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); -} - -.via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); -} - -.via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); -} - -.via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); -} - -.via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); -} - -.via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); -} - -.via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); -} - -.via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); -} - -.via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); -} - -.via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); -} - -.via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); -} - -.via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); -} - -.via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); -} - -.via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); -} - -.via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); -} - -.via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); -} - -.via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); -} - -.via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); -} - -.via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); -} - -.via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); -} - -.via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); -} - -.via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); -} - -.via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); -} - -.via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); -} - -.via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); -} - -.via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); -} - -.via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); -} - -.via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); -} - -.via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); -} - -.via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); -} - -.via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); -} - -.via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); -} - -.via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); -} - -.via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); -} - -.via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); -} - -.via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); -} - -.via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); -} - -.via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); -} - -.via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); -} - -.via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); -} - -.via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); -} - -.via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); -} - -.via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); -} - -.via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); -} - -.via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); -} - -.via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); -} - -.via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); -} - -.via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); -} - -.via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); -} - -.via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); -} - -.via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); -} - -.via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); -} - -.via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); -} - -.via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); -} - -.via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); -} - -.to-transparent { - --tw-gradient-to: transparent; +.hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.to-current { - --tw-gradient-to: currentColor; +.hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.to-black { - --tw-gradient-to: #000; +.hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.to-white { - --tw-gradient-to: #fff; +.hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.to-gray-50 { - --tw-gradient-to: #f9fafb; +.hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.to-gray-100 { - --tw-gradient-to: #f3f4f6; +.hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.to-gray-200 { - --tw-gradient-to: #e5e7eb; +.hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.to-gray-300 { - --tw-gradient-to: #d1d5db; +.hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.to-gray-400 { - --tw-gradient-to: #9ca3af; +.hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.to-gray-500 { - --tw-gradient-to: #6b7280; +.hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.to-gray-600 { - --tw-gradient-to: #4b5563; +.hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.to-gray-700 { - --tw-gradient-to: #374151; +.hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.to-gray-800 { - --tw-gradient-to: #1f2937; +.hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.to-gray-900 { - --tw-gradient-to: #111827; +.hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.to-red-50 { - --tw-gradient-to: #fef2f2; +.hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.to-red-100 { - --tw-gradient-to: #fee2e2; +.hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.to-red-200 { - --tw-gradient-to: #fecaca; +.hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.to-red-300 { - --tw-gradient-to: #fca5a5; +.hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.to-red-400 { - --tw-gradient-to: #f87171; +.hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.to-red-500 { - --tw-gradient-to: #ef4444; +.hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.to-red-600 { - --tw-gradient-to: #dc2626; +.hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.to-red-700 { - --tw-gradient-to: #b91c1c; +.hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.to-red-800 { - --tw-gradient-to: #991b1b; +.hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.to-red-900 { - --tw-gradient-to: #7f1d1d; +.hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.to-yellow-50 { - --tw-gradient-to: #fffbeb; +.hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.to-yellow-100 { - --tw-gradient-to: #fef3c7; +.hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.to-yellow-200 { - --tw-gradient-to: #fde68a; +.hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.to-yellow-300 { - --tw-gradient-to: #fcd34d; +.hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.to-yellow-400 { - --tw-gradient-to: #fbbf24; +.hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.to-yellow-500 { - --tw-gradient-to: #f59e0b; +.hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.to-yellow-600 { - --tw-gradient-to: #d97706; +.hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.to-yellow-700 { - --tw-gradient-to: #b45309; +.hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.to-yellow-800 { - --tw-gradient-to: #92400e; +.hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.to-yellow-900 { - --tw-gradient-to: #78350f; +.hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.to-green-50 { - --tw-gradient-to: #ecfdf5; +.hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.to-green-100 { - --tw-gradient-to: #d1fae5; +.hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.to-green-200 { - --tw-gradient-to: #a7f3d0; +.hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.to-green-300 { - --tw-gradient-to: #6ee7b7; +.hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.to-green-400 { - --tw-gradient-to: #34d399; +.hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.to-green-500 { - --tw-gradient-to: #10b981; +.hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.to-green-600 { - --tw-gradient-to: #059669; +.hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.to-green-700 { - --tw-gradient-to: #047857; +.hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.to-green-800 { - --tw-gradient-to: #065f46; +.hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.to-green-900 { - --tw-gradient-to: #064e3b; +.hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.to-blue-50 { - --tw-gradient-to: #eff6ff; +.hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.to-blue-100 { - --tw-gradient-to: #dbeafe; +.hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.to-blue-200 { - --tw-gradient-to: #bfdbfe; +.hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.to-blue-300 { - --tw-gradient-to: #93c5fd; +.hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.to-blue-400 { - --tw-gradient-to: #60a5fa; +.hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.to-blue-500 { - --tw-gradient-to: #3b82f6; +.hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.to-blue-600 { - --tw-gradient-to: #2563eb; +.hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.to-blue-700 { - --tw-gradient-to: #1d4ed8; +.hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.to-blue-800 { - --tw-gradient-to: #1e40af; +.hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.to-blue-900 { - --tw-gradient-to: #1e3a8a; +.hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.to-indigo-50 { - --tw-gradient-to: #eef2ff; +.hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.to-indigo-100 { - --tw-gradient-to: #e0e7ff; +.hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.to-indigo-200 { - --tw-gradient-to: #c7d2fe; +.hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.to-indigo-300 { - --tw-gradient-to: #a5b4fc; +.hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.to-indigo-400 { - --tw-gradient-to: #818cf8; +.hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.to-indigo-500 { - --tw-gradient-to: #6366f1; +.hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.to-indigo-600 { - --tw-gradient-to: #4f46e5; +.hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.to-indigo-700 { - --tw-gradient-to: #4338ca; +.hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.to-indigo-800 { - --tw-gradient-to: #3730a3; +.hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.to-indigo-900 { - --tw-gradient-to: #312e81; +.hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.to-purple-50 { - --tw-gradient-to: #f5f3ff; +.hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.to-purple-100 { - --tw-gradient-to: #ede9fe; +.hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.to-purple-200 { - --tw-gradient-to: #ddd6fe; +.hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.to-purple-300 { - --tw-gradient-to: #c4b5fd; +.hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.to-purple-400 { - --tw-gradient-to: #a78bfa; +.hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.to-purple-500 { - --tw-gradient-to: #8b5cf6; +.hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.to-purple-600 { - --tw-gradient-to: #7c3aed; +.hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.to-purple-700 { - --tw-gradient-to: #6d28d9; +.hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.to-purple-800 { - --tw-gradient-to: #5b21b6; +.hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.to-purple-900 { - --tw-gradient-to: #4c1d95; +.hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.to-pink-50 { - --tw-gradient-to: #fdf2f8; +.hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.to-pink-100 { - --tw-gradient-to: #fce7f3; +.hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.to-pink-200 { - --tw-gradient-to: #fbcfe8; +.hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.to-pink-300 { - --tw-gradient-to: #f9a8d4; +.hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.to-pink-400 { - --tw-gradient-to: #f472b6; +.hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.to-pink-500 { - --tw-gradient-to: #ec4899; +.hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.to-pink-600 { - --tw-gradient-to: #db2777; +.hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.to-pink-700 { - --tw-gradient-to: #be185d; +.hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.to-pink-800 { - --tw-gradient-to: #9d174d; +.hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.to-pink-900 { - --tw-gradient-to: #831843; +.hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.hover\:from-transparent:hover { +.focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:from-current:hover { +.focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:from-black:hover { +.focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:from-white:hover { +.focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:from-gray-50:hover { +.focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.hover\:from-gray-100:hover { +.focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.hover\:from-gray-200:hover { +.focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.hover\:from-gray-300:hover { +.focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.hover\:from-gray-400:hover { +.focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.hover\:from-gray-500:hover { +.focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.hover\:from-gray-600:hover { +.focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.hover\:from-gray-700:hover { +.focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.hover\:from-gray-800:hover { +.focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.hover\:from-gray-900:hover { +.focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.hover\:from-red-50:hover { +.focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.hover\:from-red-100:hover { +.focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.hover\:from-red-200:hover { +.focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.hover\:from-red-300:hover { +.focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.hover\:from-red-400:hover { +.focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.hover\:from-red-500:hover { +.focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.hover\:from-red-600:hover { +.focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.hover\:from-red-700:hover { +.focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.hover\:from-red-800:hover { +.focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.hover\:from-red-900:hover { +.focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.hover\:from-yellow-50:hover { +.focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.hover\:from-yellow-100:hover { +.focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.hover\:from-yellow-200:hover { +.focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.hover\:from-yellow-300:hover { +.focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.hover\:from-yellow-400:hover { +.focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.hover\:from-yellow-500:hover { +.focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.hover\:from-yellow-600:hover { +.focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.hover\:from-yellow-700:hover { +.focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.hover\:from-yellow-800:hover { +.focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.hover\:from-yellow-900:hover { +.focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.hover\:from-green-50:hover { +.focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.hover\:from-green-100:hover { +.focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.hover\:from-green-200:hover { +.focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.hover\:from-green-300:hover { +.focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.hover\:from-green-400:hover { +.focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.hover\:from-green-500:hover { +.focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.hover\:from-green-600:hover { +.focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.hover\:from-green-700:hover { +.focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.hover\:from-green-800:hover { +.focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.hover\:from-green-900:hover { +.focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.hover\:from-blue-50:hover { +.focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.hover\:from-blue-100:hover { +.focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.hover\:from-blue-200:hover { +.focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.hover\:from-blue-300:hover { +.focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.hover\:from-blue-400:hover { +.focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.hover\:from-blue-500:hover { +.focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.hover\:from-blue-600:hover { +.focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.hover\:from-blue-700:hover { +.focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.hover\:from-blue-800:hover { +.focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.hover\:from-blue-900:hover { +.focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.hover\:from-indigo-50:hover { +.focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.hover\:from-indigo-100:hover { +.focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.hover\:from-indigo-200:hover { +.focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.hover\:from-indigo-300:hover { +.focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.hover\:from-indigo-400:hover { +.focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.hover\:from-indigo-500:hover { +.focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.hover\:from-indigo-600:hover { +.focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.hover\:from-indigo-700:hover { +.focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.hover\:from-indigo-800:hover { +.focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.hover\:from-indigo-900:hover { +.focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.hover\:from-purple-50:hover { +.focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.hover\:from-purple-100:hover { +.focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.hover\:from-purple-200:hover { +.focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.hover\:from-purple-300:hover { +.focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.hover\:from-purple-400:hover { +.focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.hover\:from-purple-500:hover { +.focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.hover\:from-purple-600:hover { +.focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.hover\:from-purple-700:hover { +.focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.hover\:from-purple-800:hover { +.focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.hover\:from-purple-900:hover { +.focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.hover\:from-pink-50:hover { +.focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.hover\:from-pink-100:hover { +.focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.hover\:from-pink-200:hover { +.focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.hover\:from-pink-300:hover { +.focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.hover\:from-pink-400:hover { +.focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.hover\:from-pink-500:hover { +.focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.hover\:from-pink-600:hover { +.focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.hover\:from-pink-700:hover { +.focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.hover\:from-pink-800:hover { +.focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.hover\:from-pink-900:hover { +.focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.hover\:via-transparent:hover { +.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:via-current:hover { +.via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:via-black:hover { +.via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:via-white:hover { +.via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:via-gray-50:hover { +.via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.hover\:via-gray-100:hover { +.via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.hover\:via-gray-200:hover { +.via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.hover\:via-gray-300:hover { +.via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.hover\:via-gray-400:hover { +.via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.hover\:via-gray-500:hover { +.via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.hover\:via-gray-600:hover { +.via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.hover\:via-gray-700:hover { +.via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.hover\:via-gray-800:hover { +.via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.hover\:via-gray-900:hover { +.via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.hover\:via-red-50:hover { +.via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.hover\:via-red-100:hover { +.via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.hover\:via-red-200:hover { +.via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.hover\:via-red-300:hover { +.via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.hover\:via-red-400:hover { +.via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.hover\:via-red-500:hover { +.via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.hover\:via-red-600:hover { +.via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.hover\:via-red-700:hover { +.via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.hover\:via-red-800:hover { +.via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.hover\:via-red-900:hover { +.via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.hover\:via-yellow-50:hover { +.via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.hover\:via-yellow-100:hover { +.via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.hover\:via-yellow-200:hover { +.via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.hover\:via-yellow-300:hover { +.via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.hover\:via-yellow-400:hover { +.via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.hover\:via-yellow-500:hover { +.via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.hover\:via-yellow-600:hover { +.via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.hover\:via-yellow-700:hover { +.via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.hover\:via-yellow-800:hover { +.via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.hover\:via-yellow-900:hover { +.via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.hover\:via-green-50:hover { +.via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.hover\:via-green-100:hover { +.via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.hover\:via-green-200:hover { +.via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.hover\:via-green-300:hover { +.via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.hover\:via-green-400:hover { +.via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.hover\:via-green-500:hover { +.via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.hover\:via-green-600:hover { +.via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.hover\:via-green-700:hover { +.via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.hover\:via-green-800:hover { +.via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.hover\:via-green-900:hover { +.via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.hover\:via-blue-50:hover { +.via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.hover\:via-blue-100:hover { +.via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.hover\:via-blue-200:hover { +.via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.hover\:via-blue-300:hover { +.via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.hover\:via-blue-400:hover { +.via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.hover\:via-blue-500:hover { +.via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.hover\:via-blue-600:hover { +.via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.hover\:via-blue-700:hover { +.via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.hover\:via-blue-800:hover { +.via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.hover\:via-blue-900:hover { +.via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.hover\:via-indigo-50:hover { +.via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.hover\:via-indigo-100:hover { +.via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.hover\:via-indigo-200:hover { +.via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.hover\:via-indigo-300:hover { +.via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.hover\:via-indigo-400:hover { +.via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.hover\:via-indigo-500:hover { +.via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.hover\:via-indigo-600:hover { +.via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.hover\:via-indigo-700:hover { +.via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.hover\:via-indigo-800:hover { +.via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.hover\:via-indigo-900:hover { +.via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.hover\:via-purple-50:hover { +.via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.hover\:via-purple-100:hover { +.via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.hover\:via-purple-200:hover { +.via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.hover\:via-purple-300:hover { +.via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.hover\:via-purple-400:hover { +.via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.hover\:via-purple-500:hover { +.via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.hover\:via-purple-600:hover { +.via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.hover\:via-purple-700:hover { +.via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.hover\:via-purple-800:hover { +.via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.hover\:via-purple-900:hover { +.via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.hover\:via-pink-50:hover { +.via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.hover\:via-pink-100:hover { +.via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.hover\:via-pink-200:hover { +.via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.hover\:via-pink-300:hover { +.via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.hover\:via-pink-400:hover { +.via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.hover\:via-pink-500:hover { +.via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.hover\:via-pink-600:hover { +.via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.hover\:via-pink-700:hover { +.via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.hover\:via-pink-800:hover { +.via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.hover\:via-pink-900:hover { +.via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.hover\:to-transparent:hover { - --tw-gradient-to: transparent; -} - -.hover\:to-current:hover { - --tw-gradient-to: currentColor; -} - -.hover\:to-black:hover { - --tw-gradient-to: #000; -} - -.hover\:to-white:hover { - --tw-gradient-to: #fff; -} - -.hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; -} - -.hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; -} - -.hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; -} - -.hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; -} - -.hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; -} - -.hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; -} - -.hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; -} - -.hover\:to-gray-700:hover { - --tw-gradient-to: #374151; -} - -.hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; -} - -.hover\:to-gray-900:hover { - --tw-gradient-to: #111827; -} - -.hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; -} - -.hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; -} - -.hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; -} - -.hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; -} - -.hover\:to-red-400:hover { - --tw-gradient-to: #f87171; -} - -.hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; -} - -.hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; -} - -.hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; -} - -.hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; -} - -.hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; -} - -.hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; -} - -.hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; -} - -.hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; -} - -.hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; -} - -.hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; -} - -.hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; -} - -.hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; -} - -.hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; -} - -.hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; -} - -.hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; -} - -.hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; -} - -.hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; -} - -.hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; -} - -.hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; -} - -.hover\:to-green-400:hover { - --tw-gradient-to: #34d399; -} - -.hover\:to-green-500:hover { - --tw-gradient-to: #10b981; -} - -.hover\:to-green-600:hover { - --tw-gradient-to: #059669; -} - -.hover\:to-green-700:hover { - --tw-gradient-to: #047857; -} - -.hover\:to-green-800:hover { - --tw-gradient-to: #065f46; -} - -.hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; -} - -.hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; -} - -.hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; -} - -.hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; -} - -.hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; -} - -.hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; -} - -.hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; -} - -.hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; -} - -.hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; -} - -.hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; -} - -.hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; -} - -.hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; -} - -.hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; -} - -.hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; -} - -.hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; -} - -.hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; -} - -.hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; -} - -.hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; -} - -.hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; -} - -.hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; -} - -.hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; -} - -.hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; -} - -.hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; -} - -.hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; -} - -.hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; -} - -.hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; -} - -.hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; -} - -.hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; -} - -.hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; -} - -.hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; -} - -.hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; -} - -.hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; -} - -.hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; -} - -.hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; -} - -.hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; -} - -.hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; -} - -.hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; -} - -.hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; -} - -.hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; -} - -.hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; -} - -.hover\:to-pink-900:hover { - --tw-gradient-to: #831843; -} - -.focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .focus\:via-transparent:focus { @@ -18995,6 +18323,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } +.to-transparent { + --tw-gradient-to: transparent; +} + +.to-current { + --tw-gradient-to: currentColor; +} + +.to-black { + --tw-gradient-to: #000; +} + +.to-white { + --tw-gradient-to: #fff; +} + +.to-gray-50 { + --tw-gradient-to: #f9fafb; +} + +.to-gray-100 { + --tw-gradient-to: #f3f4f6; +} + +.to-gray-200 { + --tw-gradient-to: #e5e7eb; +} + +.to-gray-300 { + --tw-gradient-to: #d1d5db; +} + +.to-gray-400 { + --tw-gradient-to: #9ca3af; +} + +.to-gray-500 { + --tw-gradient-to: #6b7280; +} + +.to-gray-600 { + --tw-gradient-to: #4b5563; +} + +.to-gray-700 { + --tw-gradient-to: #374151; +} + +.to-gray-800 { + --tw-gradient-to: #1f2937; +} + +.to-gray-900 { + --tw-gradient-to: #111827; +} + +.to-red-50 { + --tw-gradient-to: #fef2f2; +} + +.to-red-100 { + --tw-gradient-to: #fee2e2; +} + +.to-red-200 { + --tw-gradient-to: #fecaca; +} + +.to-red-300 { + --tw-gradient-to: #fca5a5; +} + +.to-red-400 { + --tw-gradient-to: #f87171; +} + +.to-red-500 { + --tw-gradient-to: #ef4444; +} + +.to-red-600 { + --tw-gradient-to: #dc2626; +} + +.to-red-700 { + --tw-gradient-to: #b91c1c; +} + +.to-red-800 { + --tw-gradient-to: #991b1b; +} + +.to-red-900 { + --tw-gradient-to: #7f1d1d; +} + +.to-yellow-50 { + --tw-gradient-to: #fffbeb; +} + +.to-yellow-100 { + --tw-gradient-to: #fef3c7; +} + +.to-yellow-200 { + --tw-gradient-to: #fde68a; +} + +.to-yellow-300 { + --tw-gradient-to: #fcd34d; +} + +.to-yellow-400 { + --tw-gradient-to: #fbbf24; +} + +.to-yellow-500 { + --tw-gradient-to: #f59e0b; +} + +.to-yellow-600 { + --tw-gradient-to: #d97706; +} + +.to-yellow-700 { + --tw-gradient-to: #b45309; +} + +.to-yellow-800 { + --tw-gradient-to: #92400e; +} + +.to-yellow-900 { + --tw-gradient-to: #78350f; +} + +.to-green-50 { + --tw-gradient-to: #ecfdf5; +} + +.to-green-100 { + --tw-gradient-to: #d1fae5; +} + +.to-green-200 { + --tw-gradient-to: #a7f3d0; +} + +.to-green-300 { + --tw-gradient-to: #6ee7b7; +} + +.to-green-400 { + --tw-gradient-to: #34d399; +} + +.to-green-500 { + --tw-gradient-to: #10b981; +} + +.to-green-600 { + --tw-gradient-to: #059669; +} + +.to-green-700 { + --tw-gradient-to: #047857; +} + +.to-green-800 { + --tw-gradient-to: #065f46; +} + +.to-green-900 { + --tw-gradient-to: #064e3b; +} + +.to-blue-50 { + --tw-gradient-to: #eff6ff; +} + +.to-blue-100 { + --tw-gradient-to: #dbeafe; +} + +.to-blue-200 { + --tw-gradient-to: #bfdbfe; +} + +.to-blue-300 { + --tw-gradient-to: #93c5fd; +} + +.to-blue-400 { + --tw-gradient-to: #60a5fa; +} + +.to-blue-500 { + --tw-gradient-to: #3b82f6; +} + +.to-blue-600 { + --tw-gradient-to: #2563eb; +} + +.to-blue-700 { + --tw-gradient-to: #1d4ed8; +} + +.to-blue-800 { + --tw-gradient-to: #1e40af; +} + +.to-blue-900 { + --tw-gradient-to: #1e3a8a; +} + +.to-indigo-50 { + --tw-gradient-to: #eef2ff; +} + +.to-indigo-100 { + --tw-gradient-to: #e0e7ff; +} + +.to-indigo-200 { + --tw-gradient-to: #c7d2fe; +} + +.to-indigo-300 { + --tw-gradient-to: #a5b4fc; +} + +.to-indigo-400 { + --tw-gradient-to: #818cf8; +} + +.to-indigo-500 { + --tw-gradient-to: #6366f1; +} + +.to-indigo-600 { + --tw-gradient-to: #4f46e5; +} + +.to-indigo-700 { + --tw-gradient-to: #4338ca; +} + +.to-indigo-800 { + --tw-gradient-to: #3730a3; +} + +.to-indigo-900 { + --tw-gradient-to: #312e81; +} + +.to-purple-50 { + --tw-gradient-to: #f5f3ff; +} + +.to-purple-100 { + --tw-gradient-to: #ede9fe; +} + +.to-purple-200 { + --tw-gradient-to: #ddd6fe; +} + +.to-purple-300 { + --tw-gradient-to: #c4b5fd; +} + +.to-purple-400 { + --tw-gradient-to: #a78bfa; +} + +.to-purple-500 { + --tw-gradient-to: #8b5cf6; +} + +.to-purple-600 { + --tw-gradient-to: #7c3aed; +} + +.to-purple-700 { + --tw-gradient-to: #6d28d9; +} + +.to-purple-800 { + --tw-gradient-to: #5b21b6; +} + +.to-purple-900 { + --tw-gradient-to: #4c1d95; +} + +.to-pink-50 { + --tw-gradient-to: #fdf2f8; +} + +.to-pink-100 { + --tw-gradient-to: #fce7f3; +} + +.to-pink-200 { + --tw-gradient-to: #fbcfe8; +} + +.to-pink-300 { + --tw-gradient-to: #f9a8d4; +} + +.to-pink-400 { + --tw-gradient-to: #f472b6; +} + +.to-pink-500 { + --tw-gradient-to: #ec4899; +} + +.to-pink-600 { + --tw-gradient-to: #db2777; +} + +.to-pink-700 { + --tw-gradient-to: #be185d; +} + +.to-pink-800 { + --tw-gradient-to: #9d174d; +} + +.to-pink-900 { + --tw-gradient-to: #831843; +} + +.hover\:to-transparent:hover { + --tw-gradient-to: transparent; +} + +.hover\:to-current:hover { + --tw-gradient-to: currentColor; +} + +.hover\:to-black:hover { + --tw-gradient-to: #000; +} + +.hover\:to-white:hover { + --tw-gradient-to: #fff; +} + +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; +} + +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; +} + +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; +} + +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; +} + +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; +} + +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; +} + +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; +} + +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151; +} + +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; +} + +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827; +} + +.hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; +} + +.hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; +} + +.hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; +} + +.hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; +} + +.hover\:to-red-400:hover { + --tw-gradient-to: #f87171; +} + +.hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; +} + +.hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; +} + +.hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; +} + +.hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; +} + +.hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; +} + +.hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; +} + +.hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; +} + +.hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; +} + +.hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; +} + +.hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; +} + +.hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; +} + +.hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; +} + +.hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; +} + +.hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; +} + +.hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; +} + +.hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; +} + +.hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; +} + +.hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; +} + +.hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; +} + +.hover\:to-green-400:hover { + --tw-gradient-to: #34d399; +} + +.hover\:to-green-500:hover { + --tw-gradient-to: #10b981; +} + +.hover\:to-green-600:hover { + --tw-gradient-to: #059669; +} + +.hover\:to-green-700:hover { + --tw-gradient-to: #047857; +} + +.hover\:to-green-800:hover { + --tw-gradient-to: #065f46; +} + +.hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; +} + +.hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; +} + +.hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; +} + +.hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; +} + +.hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; +} + +.hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; +} + +.hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; +} + +.hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; +} + +.hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; +} + +.hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; +} + +.hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; +} + +.hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; +} + +.hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; +} + +.hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; +} + +.hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; +} + +.hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; +} + +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; +} + +.hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; +} + +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; +} + +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; +} + +.hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; +} + +.hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; +} + +.hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; +} + +.hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; +} + +.hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; +} + +.hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; +} + +.hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; +} + +.hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; +} + +.hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; +} + +.hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; +} + +.hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; +} + +.hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; +} + +.hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; +} + +.hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; +} + +.hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; +} + +.hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; +} + +.hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; +} + +.hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; +} + +.hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; +} + +.hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; +} + +.hover\:to-pink-900:hover { + --tw-gradient-to: #831843; +} + .focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -24023,10 +24023,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.ring-inset { - --tw-ring-inset: inset; -} - .focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -24063,10 +24059,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; -} - .focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -24103,6 +24095,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } +.ring-inset { + --tw-ring-inset: inset; +} + +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; +} + .focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -27863,116 +27863,541 @@ video { left: -0.375rem; } - .sm\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .sm\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .sm\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .sm\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .sm\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .sm\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .sm\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .sm\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .sm\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .sm\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .sm\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .sm\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .sm\:inset-x-0 { + left: 0px; + right: 0px; + } + + .sm\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .sm\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .sm\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .sm\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .sm\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .sm\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .sm\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .sm\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .sm\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .sm\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .sm\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .sm\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .sm\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .sm\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .sm\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .sm\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .sm\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .sm\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .sm\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .sm\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .sm\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .sm\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .sm\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .sm\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .sm\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .sm\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .sm\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .sm\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .sm\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .sm\:inset-x-auto { + left: auto; + right: auto; + } + + .sm\:inset-x-px { + left: 1px; + right: 1px; + } + + .sm\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .sm\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .sm\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .sm\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .sm\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .sm\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .sm\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .sm\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .sm\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .sm\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .sm\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .sm\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .sm\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .sm\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .sm\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .sm\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .sm\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .sm\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .sm\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .sm\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .sm\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .sm\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .sm\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .sm\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .sm\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .sm\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .sm\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .sm\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .sm\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .sm\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .sm\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .sm\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .sm\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .sm\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .sm\:-inset-x-px { + left: -1px; + right: -1px; + } + + .sm\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .sm\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .sm\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .sm\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .sm\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .sm\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .sm\:inset-x-1\/2 { left: 50%; + right: 50%; } - .sm\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .sm\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .sm\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .sm\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .sm\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .sm\:inset-x-1\/4 { left: 25%; + right: 25%; } - .sm\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .sm\:inset-x-2\/4 { left: 50%; + right: 50%; } - .sm\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .sm\:inset-x-3\/4 { left: 75%; + right: 75%; } - .sm\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .sm\:inset-x-full { left: 100%; + right: 100%; } - .sm\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .sm\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .sm\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .sm\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .sm\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .sm\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .sm\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .sm\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .sm\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .sm\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .sm\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .sm\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .sm\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .sm\:-inset-x-full { left: -100%; + right: -100%; } .sm\:inset-y-0 { @@ -27980,2205 +28405,1780 @@ video { bottom: 0px; } - .sm\:inset-x-0 { - right: 0px; - left: 0px; - } - .sm\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .sm\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .sm\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .sm\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .sm\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .sm\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .sm\:inset-y-4 { top: 1rem; bottom: 1rem; } - .sm\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .sm\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .sm\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .sm\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .sm\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .sm\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .sm\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .sm\:inset-y-8 { top: 2rem; bottom: 2rem; } - .sm\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .sm\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .sm\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .sm\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .sm\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .sm\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .sm\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .sm\:inset-y-12 { top: 3rem; bottom: 3rem; } - .sm\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .sm\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .sm\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .sm\:inset-y-16 { top: 4rem; bottom: 4rem; } - .sm\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .sm\:inset-y-20 { top: 5rem; bottom: 5rem; } - .sm\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .sm\:inset-y-24 { top: 6rem; bottom: 6rem; } - .sm\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .sm\:inset-y-28 { top: 7rem; bottom: 7rem; } - .sm\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .sm\:inset-y-32 { top: 8rem; bottom: 8rem; } - .sm\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .sm\:inset-y-36 { top: 9rem; bottom: 9rem; } - .sm\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .sm\:inset-y-40 { top: 10rem; bottom: 10rem; } - .sm\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .sm\:inset-y-44 { top: 11rem; bottom: 11rem; } - .sm\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .sm\:inset-y-48 { top: 12rem; bottom: 12rem; } - .sm\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .sm\:inset-y-52 { top: 13rem; bottom: 13rem; } - .sm\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .sm\:inset-y-56 { top: 14rem; bottom: 14rem; } - .sm\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .sm\:inset-y-60 { top: 15rem; bottom: 15rem; } - .sm\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .sm\:inset-y-64 { top: 16rem; bottom: 16rem; } - .sm\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .sm\:inset-y-72 { top: 18rem; bottom: 18rem; } - .sm\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .sm\:inset-y-80 { top: 20rem; bottom: 20rem; } - .sm\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .sm\:inset-y-96 { top: 24rem; bottom: 24rem; } - .sm\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .sm\:inset-y-auto { top: auto; bottom: auto; } - .sm\:inset-x-auto { - right: auto; - left: auto; - } - .sm\:inset-y-px { top: 1px; bottom: 1px; } - .sm\:inset-x-px { - right: 1px; - left: 1px; - } - .sm\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .sm\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .sm\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .sm\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .sm\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .sm\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .sm\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .sm\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .sm\:-inset-y-0 { top: 0px; bottom: 0px; } - .sm\:-inset-x-0 { - right: 0px; - left: 0px; - } - .sm\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .sm\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .sm\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .sm\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .sm\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .sm\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .sm\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .sm\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .sm\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .sm\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .sm\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .sm\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .sm\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .sm\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .sm\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .sm\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .sm\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .sm\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .sm\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .sm\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .sm\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .sm\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .sm\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .sm\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .sm\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .sm\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .sm\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .sm\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .sm\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .sm\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .sm\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .sm\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .sm\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .sm\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .sm\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .sm\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .sm\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .sm\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .sm\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .sm\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .sm\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .sm\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .sm\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .sm\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .sm\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .sm\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .sm\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .sm\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .sm\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .sm\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .sm\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .sm\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .sm\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .sm\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .sm\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .sm\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .sm\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .sm\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .sm\:-inset-y-px { top: -1px; bottom: -1px; } - .sm\:-inset-x-px { - right: -1px; - left: -1px; - } - .sm\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .sm\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .sm\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .sm\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .sm\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .sm\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .sm\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .sm\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .sm\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .sm\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .sm\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .sm\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .sm\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .sm\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .sm\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .sm\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .sm\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .sm\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .sm\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .sm\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .sm\:inset-y-full { top: 100%; bottom: 100%; } - .sm\:inset-x-full { - right: 100%; - left: 100%; - } - .sm\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .sm\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .sm\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .sm\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .sm\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .sm\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .sm\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .sm\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .sm\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .sm\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .sm\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .sm\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .sm\:-inset-y-full { top: -100%; bottom: -100%; } - .sm\:-inset-x-full { - right: -100%; - left: -100%; - } - .sm\:top-0 { top: 0px; } - .sm\:right-0 { - right: 0px; + .sm\:top-1 { + top: 0.25rem; } - .sm\:bottom-0 { - bottom: 0px; + .sm\:top-2 { + top: 0.5rem; } - .sm\:left-0 { - left: 0px; + .sm\:top-3 { + top: 0.75rem; } - .sm\:top-1 { - top: 0.25rem; + .sm\:top-4 { + top: 1rem; } - .sm\:right-1 { - right: 0.25rem; + .sm\:top-5 { + top: 1.25rem; } - .sm\:bottom-1 { - bottom: 0.25rem; + .sm\:top-6 { + top: 1.5rem; } - .sm\:left-1 { - left: 0.25rem; + .sm\:top-7 { + top: 1.75rem; } - .sm\:top-2 { - top: 0.5rem; + .sm\:top-8 { + top: 2rem; } - .sm\:right-2 { - right: 0.5rem; + .sm\:top-9 { + top: 2.25rem; } - .sm\:bottom-2 { - bottom: 0.5rem; + .sm\:top-10 { + top: 2.5rem; } - .sm\:left-2 { - left: 0.5rem; + .sm\:top-11 { + top: 2.75rem; } - .sm\:top-3 { - top: 0.75rem; + .sm\:top-12 { + top: 3rem; } - .sm\:right-3 { - right: 0.75rem; + .sm\:top-14 { + top: 3.5rem; } - .sm\:bottom-3 { - bottom: 0.75rem; + .sm\:top-16 { + top: 4rem; } - .sm\:left-3 { - left: 0.75rem; + .sm\:top-20 { + top: 5rem; } - .sm\:top-4 { - top: 1rem; + .sm\:top-24 { + top: 6rem; } - .sm\:right-4 { - right: 1rem; + .sm\:top-28 { + top: 7rem; } - .sm\:bottom-4 { - bottom: 1rem; + .sm\:top-32 { + top: 8rem; } - .sm\:left-4 { - left: 1rem; + .sm\:top-36 { + top: 9rem; } - .sm\:top-5 { - top: 1.25rem; + .sm\:top-40 { + top: 10rem; } - .sm\:right-5 { - right: 1.25rem; + .sm\:top-44 { + top: 11rem; } - .sm\:bottom-5 { - bottom: 1.25rem; + .sm\:top-48 { + top: 12rem; } - .sm\:left-5 { - left: 1.25rem; + .sm\:top-52 { + top: 13rem; } - .sm\:top-6 { - top: 1.5rem; + .sm\:top-56 { + top: 14rem; } - .sm\:right-6 { - right: 1.5rem; + .sm\:top-60 { + top: 15rem; } - .sm\:bottom-6 { - bottom: 1.5rem; + .sm\:top-64 { + top: 16rem; } - .sm\:left-6 { - left: 1.5rem; + .sm\:top-72 { + top: 18rem; } - .sm\:top-7 { - top: 1.75rem; + .sm\:top-80 { + top: 20rem; } - .sm\:right-7 { - right: 1.75rem; + .sm\:top-96 { + top: 24rem; } - .sm\:bottom-7 { - bottom: 1.75rem; + .sm\:top-auto { + top: auto; } - .sm\:left-7 { - left: 1.75rem; + .sm\:top-px { + top: 1px; } - .sm\:top-8 { - top: 2rem; + .sm\:top-0\.5 { + top: 0.125rem; } - .sm\:right-8 { - right: 2rem; + .sm\:top-1\.5 { + top: 0.375rem; } - .sm\:bottom-8 { - bottom: 2rem; + .sm\:top-2\.5 { + top: 0.625rem; } - .sm\:left-8 { - left: 2rem; + .sm\:top-3\.5 { + top: 0.875rem; } - .sm\:top-9 { - top: 2.25rem; + .sm\:-top-0 { + top: 0px; } - .sm\:right-9 { - right: 2.25rem; + .sm\:-top-1 { + top: -0.25rem; } - .sm\:bottom-9 { - bottom: 2.25rem; + .sm\:-top-2 { + top: -0.5rem; } - .sm\:left-9 { - left: 2.25rem; + .sm\:-top-3 { + top: -0.75rem; } - .sm\:top-10 { - top: 2.5rem; + .sm\:-top-4 { + top: -1rem; } - .sm\:right-10 { - right: 2.5rem; + .sm\:-top-5 { + top: -1.25rem; } - .sm\:bottom-10 { - bottom: 2.5rem; + .sm\:-top-6 { + top: -1.5rem; } - .sm\:left-10 { - left: 2.5rem; + .sm\:-top-7 { + top: -1.75rem; } - .sm\:top-11 { - top: 2.75rem; + .sm\:-top-8 { + top: -2rem; } - .sm\:right-11 { - right: 2.75rem; + .sm\:-top-9 { + top: -2.25rem; } - .sm\:bottom-11 { - bottom: 2.75rem; + .sm\:-top-10 { + top: -2.5rem; } - .sm\:left-11 { - left: 2.75rem; + .sm\:-top-11 { + top: -2.75rem; } - .sm\:top-12 { - top: 3rem; + .sm\:-top-12 { + top: -3rem; } - .sm\:right-12 { - right: 3rem; + .sm\:-top-14 { + top: -3.5rem; } - .sm\:bottom-12 { - bottom: 3rem; + .sm\:-top-16 { + top: -4rem; } - .sm\:left-12 { - left: 3rem; + .sm\:-top-20 { + top: -5rem; } - .sm\:top-14 { - top: 3.5rem; + .sm\:-top-24 { + top: -6rem; } - .sm\:right-14 { - right: 3.5rem; + .sm\:-top-28 { + top: -7rem; } - .sm\:bottom-14 { - bottom: 3.5rem; + .sm\:-top-32 { + top: -8rem; } - .sm\:left-14 { - left: 3.5rem; + .sm\:-top-36 { + top: -9rem; } - .sm\:top-16 { - top: 4rem; + .sm\:-top-40 { + top: -10rem; } - .sm\:right-16 { - right: 4rem; + .sm\:-top-44 { + top: -11rem; } - .sm\:bottom-16 { - bottom: 4rem; + .sm\:-top-48 { + top: -12rem; } - .sm\:left-16 { - left: 4rem; + .sm\:-top-52 { + top: -13rem; } - .sm\:top-20 { - top: 5rem; + .sm\:-top-56 { + top: -14rem; } - .sm\:right-20 { - right: 5rem; + .sm\:-top-60 { + top: -15rem; } - .sm\:bottom-20 { - bottom: 5rem; + .sm\:-top-64 { + top: -16rem; } - .sm\:left-20 { - left: 5rem; + .sm\:-top-72 { + top: -18rem; } - .sm\:top-24 { - top: 6rem; + .sm\:-top-80 { + top: -20rem; } - .sm\:right-24 { - right: 6rem; + .sm\:-top-96 { + top: -24rem; } - .sm\:bottom-24 { - bottom: 6rem; + .sm\:-top-px { + top: -1px; } - .sm\:left-24 { - left: 6rem; + .sm\:-top-0\.5 { + top: -0.125rem; } - .sm\:top-28 { - top: 7rem; + .sm\:-top-1\.5 { + top: -0.375rem; } - .sm\:right-28 { - right: 7rem; + .sm\:-top-2\.5 { + top: -0.625rem; } - .sm\:bottom-28 { - bottom: 7rem; + .sm\:-top-3\.5 { + top: -0.875rem; } - .sm\:left-28 { - left: 7rem; + .sm\:top-1\/2 { + top: 50%; } - .sm\:top-32 { - top: 8rem; + .sm\:top-1\/3 { + top: 33.333333%; } - .sm\:right-32 { - right: 8rem; + .sm\:top-2\/3 { + top: 66.666667%; } - .sm\:bottom-32 { - bottom: 8rem; + .sm\:top-1\/4 { + top: 25%; } - .sm\:left-32 { - left: 8rem; + .sm\:top-2\/4 { + top: 50%; } - .sm\:top-36 { - top: 9rem; + .sm\:top-3\/4 { + top: 75%; } - .sm\:right-36 { - right: 9rem; + .sm\:top-full { + top: 100%; } - .sm\:bottom-36 { - bottom: 9rem; + .sm\:-top-1\/2 { + top: -50%; } - .sm\:left-36 { - left: 9rem; + .sm\:-top-1\/3 { + top: -33.333333%; } - .sm\:top-40 { - top: 10rem; + .sm\:-top-2\/3 { + top: -66.666667%; } - .sm\:right-40 { - right: 10rem; + .sm\:-top-1\/4 { + top: -25%; } - .sm\:bottom-40 { - bottom: 10rem; + .sm\:-top-2\/4 { + top: -50%; } - .sm\:left-40 { - left: 10rem; + .sm\:-top-3\/4 { + top: -75%; } - .sm\:top-44 { - top: 11rem; + .sm\:-top-full { + top: -100%; } - .sm\:right-44 { - right: 11rem; + .sm\:right-0 { + right: 0px; } - .sm\:bottom-44 { - bottom: 11rem; + .sm\:right-1 { + right: 0.25rem; } - .sm\:left-44 { - left: 11rem; + .sm\:right-2 { + right: 0.5rem; } - .sm\:top-48 { - top: 12rem; + .sm\:right-3 { + right: 0.75rem; } - .sm\:right-48 { - right: 12rem; + .sm\:right-4 { + right: 1rem; } - .sm\:bottom-48 { - bottom: 12rem; + .sm\:right-5 { + right: 1.25rem; } - .sm\:left-48 { - left: 12rem; + .sm\:right-6 { + right: 1.5rem; } - .sm\:top-52 { - top: 13rem; + .sm\:right-7 { + right: 1.75rem; } - .sm\:right-52 { - right: 13rem; + .sm\:right-8 { + right: 2rem; } - .sm\:bottom-52 { - bottom: 13rem; + .sm\:right-9 { + right: 2.25rem; } - .sm\:left-52 { - left: 13rem; + .sm\:right-10 { + right: 2.5rem; } - .sm\:top-56 { - top: 14rem; + .sm\:right-11 { + right: 2.75rem; } - .sm\:right-56 { - right: 14rem; + .sm\:right-12 { + right: 3rem; } - .sm\:bottom-56 { - bottom: 14rem; + .sm\:right-14 { + right: 3.5rem; } - .sm\:left-56 { - left: 14rem; + .sm\:right-16 { + right: 4rem; } - .sm\:top-60 { - top: 15rem; + .sm\:right-20 { + right: 5rem; } - .sm\:right-60 { - right: 15rem; + .sm\:right-24 { + right: 6rem; } - .sm\:bottom-60 { - bottom: 15rem; + .sm\:right-28 { + right: 7rem; } - .sm\:left-60 { - left: 15rem; + .sm\:right-32 { + right: 8rem; } - .sm\:top-64 { - top: 16rem; + .sm\:right-36 { + right: 9rem; } - .sm\:right-64 { - right: 16rem; + .sm\:right-40 { + right: 10rem; } - .sm\:bottom-64 { - bottom: 16rem; + .sm\:right-44 { + right: 11rem; } - .sm\:left-64 { - left: 16rem; + .sm\:right-48 { + right: 12rem; } - .sm\:top-72 { - top: 18rem; + .sm\:right-52 { + right: 13rem; } - .sm\:right-72 { - right: 18rem; + .sm\:right-56 { + right: 14rem; } - .sm\:bottom-72 { - bottom: 18rem; + .sm\:right-60 { + right: 15rem; } - .sm\:left-72 { - left: 18rem; + .sm\:right-64 { + right: 16rem; } - .sm\:top-80 { - top: 20rem; + .sm\:right-72 { + right: 18rem; } .sm\:right-80 { right: 20rem; } - .sm\:bottom-80 { - bottom: 20rem; + .sm\:right-96 { + right: 24rem; } - .sm\:left-80 { - left: 20rem; + .sm\:right-auto { + right: auto; } - .sm\:top-96 { - top: 24rem; + .sm\:right-px { + right: 1px; } - .sm\:right-96 { - right: 24rem; + .sm\:right-0\.5 { + right: 0.125rem; } - .sm\:bottom-96 { - bottom: 24rem; + .sm\:right-1\.5 { + right: 0.375rem; } - .sm\:left-96 { - left: 24rem; + .sm\:right-2\.5 { + right: 0.625rem; } - .sm\:top-auto { - top: auto; + .sm\:right-3\.5 { + right: 0.875rem; } - .sm\:right-auto { - right: auto; + .sm\:-right-0 { + right: 0px; } - .sm\:bottom-auto { - bottom: auto; + .sm\:-right-1 { + right: -0.25rem; } - .sm\:left-auto { - left: auto; + .sm\:-right-2 { + right: -0.5rem; } - .sm\:top-px { - top: 1px; + .sm\:-right-3 { + right: -0.75rem; } - .sm\:right-px { - right: 1px; + .sm\:-right-4 { + right: -1rem; } - .sm\:bottom-px { - bottom: 1px; + .sm\:-right-5 { + right: -1.25rem; } - .sm\:left-px { - left: 1px; + .sm\:-right-6 { + right: -1.5rem; } - .sm\:top-0\.5 { - top: 0.125rem; + .sm\:-right-7 { + right: -1.75rem; } - .sm\:right-0\.5 { - right: 0.125rem; + .sm\:-right-8 { + right: -2rem; } - .sm\:bottom-0\.5 { - bottom: 0.125rem; + .sm\:-right-9 { + right: -2.25rem; } - .sm\:left-0\.5 { - left: 0.125rem; + .sm\:-right-10 { + right: -2.5rem; } - .sm\:top-1\.5 { - top: 0.375rem; + .sm\:-right-11 { + right: -2.75rem; } - .sm\:right-1\.5 { - right: 0.375rem; + .sm\:-right-12 { + right: -3rem; } - .sm\:bottom-1\.5 { - bottom: 0.375rem; + .sm\:-right-14 { + right: -3.5rem; } - .sm\:left-1\.5 { - left: 0.375rem; + .sm\:-right-16 { + right: -4rem; } - .sm\:top-2\.5 { - top: 0.625rem; + .sm\:-right-20 { + right: -5rem; } - .sm\:right-2\.5 { - right: 0.625rem; + .sm\:-right-24 { + right: -6rem; } - .sm\:bottom-2\.5 { - bottom: 0.625rem; + .sm\:-right-28 { + right: -7rem; } - .sm\:left-2\.5 { - left: 0.625rem; + .sm\:-right-32 { + right: -8rem; } - .sm\:top-3\.5 { - top: 0.875rem; + .sm\:-right-36 { + right: -9rem; } - .sm\:right-3\.5 { - right: 0.875rem; + .sm\:-right-40 { + right: -10rem; } - .sm\:bottom-3\.5 { - bottom: 0.875rem; + .sm\:-right-44 { + right: -11rem; } - .sm\:left-3\.5 { - left: 0.875rem; + .sm\:-right-48 { + right: -12rem; } - .sm\:-top-0 { - top: 0px; + .sm\:-right-52 { + right: -13rem; } - .sm\:-right-0 { - right: 0px; + .sm\:-right-56 { + right: -14rem; } - .sm\:-bottom-0 { - bottom: 0px; + .sm\:-right-60 { + right: -15rem; } - .sm\:-left-0 { - left: 0px; + .sm\:-right-64 { + right: -16rem; } - .sm\:-top-1 { - top: -0.25rem; + .sm\:-right-72 { + right: -18rem; } - .sm\:-right-1 { - right: -0.25rem; + .sm\:-right-80 { + right: -20rem; } - .sm\:-bottom-1 { - bottom: -0.25rem; + .sm\:-right-96 { + right: -24rem; } - .sm\:-left-1 { - left: -0.25rem; + .sm\:-right-px { + right: -1px; } - .sm\:-top-2 { - top: -0.5rem; + .sm\:-right-0\.5 { + right: -0.125rem; } - .sm\:-right-2 { - right: -0.5rem; + .sm\:-right-1\.5 { + right: -0.375rem; } - .sm\:-bottom-2 { - bottom: -0.5rem; + .sm\:-right-2\.5 { + right: -0.625rem; } - .sm\:-left-2 { - left: -0.5rem; + .sm\:-right-3\.5 { + right: -0.875rem; } - .sm\:-top-3 { - top: -0.75rem; + .sm\:right-1\/2 { + right: 50%; } - .sm\:-right-3 { - right: -0.75rem; + .sm\:right-1\/3 { + right: 33.333333%; } - .sm\:-bottom-3 { - bottom: -0.75rem; + .sm\:right-2\/3 { + right: 66.666667%; } - .sm\:-left-3 { - left: -0.75rem; + .sm\:right-1\/4 { + right: 25%; } - .sm\:-top-4 { - top: -1rem; + .sm\:right-2\/4 { + right: 50%; } - .sm\:-right-4 { - right: -1rem; + .sm\:right-3\/4 { + right: 75%; } - .sm\:-bottom-4 { - bottom: -1rem; + .sm\:right-full { + right: 100%; } - .sm\:-left-4 { - left: -1rem; + .sm\:-right-1\/2 { + right: -50%; } - .sm\:-top-5 { - top: -1.25rem; + .sm\:-right-1\/3 { + right: -33.333333%; } - .sm\:-right-5 { - right: -1.25rem; + .sm\:-right-2\/3 { + right: -66.666667%; } - .sm\:-bottom-5 { - bottom: -1.25rem; + .sm\:-right-1\/4 { + right: -25%; } - .sm\:-left-5 { - left: -1.25rem; + .sm\:-right-2\/4 { + right: -50%; } - .sm\:-top-6 { - top: -1.5rem; + .sm\:-right-3\/4 { + right: -75%; } - .sm\:-right-6 { - right: -1.5rem; + .sm\:-right-full { + right: -100%; } - .sm\:-bottom-6 { - bottom: -1.5rem; + .sm\:bottom-0 { + bottom: 0px; } - .sm\:-left-6 { - left: -1.5rem; + .sm\:bottom-1 { + bottom: 0.25rem; } - .sm\:-top-7 { - top: -1.75rem; + .sm\:bottom-2 { + bottom: 0.5rem; } - .sm\:-right-7 { - right: -1.75rem; + .sm\:bottom-3 { + bottom: 0.75rem; } - .sm\:-bottom-7 { - bottom: -1.75rem; + .sm\:bottom-4 { + bottom: 1rem; } - .sm\:-left-7 { - left: -1.75rem; + .sm\:bottom-5 { + bottom: 1.25rem; } - .sm\:-top-8 { - top: -2rem; + .sm\:bottom-6 { + bottom: 1.5rem; } - .sm\:-right-8 { - right: -2rem; + .sm\:bottom-7 { + bottom: 1.75rem; } - .sm\:-bottom-8 { - bottom: -2rem; + .sm\:bottom-8 { + bottom: 2rem; } - .sm\:-left-8 { - left: -2rem; + .sm\:bottom-9 { + bottom: 2.25rem; } - .sm\:-top-9 { - top: -2.25rem; + .sm\:bottom-10 { + bottom: 2.5rem; } - .sm\:-right-9 { - right: -2.25rem; + .sm\:bottom-11 { + bottom: 2.75rem; } - .sm\:-bottom-9 { - bottom: -2.25rem; + .sm\:bottom-12 { + bottom: 3rem; } - .sm\:-left-9 { - left: -2.25rem; + .sm\:bottom-14 { + bottom: 3.5rem; } - .sm\:-top-10 { - top: -2.5rem; + .sm\:bottom-16 { + bottom: 4rem; } - .sm\:-right-10 { - right: -2.5rem; + .sm\:bottom-20 { + bottom: 5rem; } - .sm\:-bottom-10 { - bottom: -2.5rem; + .sm\:bottom-24 { + bottom: 6rem; } - .sm\:-left-10 { - left: -2.5rem; + .sm\:bottom-28 { + bottom: 7rem; } - .sm\:-top-11 { - top: -2.75rem; + .sm\:bottom-32 { + bottom: 8rem; } - .sm\:-right-11 { - right: -2.75rem; + .sm\:bottom-36 { + bottom: 9rem; } - .sm\:-bottom-11 { - bottom: -2.75rem; + .sm\:bottom-40 { + bottom: 10rem; } - .sm\:-left-11 { - left: -2.75rem; + .sm\:bottom-44 { + bottom: 11rem; } - .sm\:-top-12 { - top: -3rem; + .sm\:bottom-48 { + bottom: 12rem; } - .sm\:-right-12 { - right: -3rem; + .sm\:bottom-52 { + bottom: 13rem; } - .sm\:-bottom-12 { - bottom: -3rem; + .sm\:bottom-56 { + bottom: 14rem; } - .sm\:-left-12 { - left: -3rem; + .sm\:bottom-60 { + bottom: 15rem; } - .sm\:-top-14 { - top: -3.5rem; + .sm\:bottom-64 { + bottom: 16rem; } - .sm\:-right-14 { - right: -3.5rem; + .sm\:bottom-72 { + bottom: 18rem; } - .sm\:-bottom-14 { - bottom: -3.5rem; + .sm\:bottom-80 { + bottom: 20rem; } - .sm\:-left-14 { - left: -3.5rem; + .sm\:bottom-96 { + bottom: 24rem; } - .sm\:-top-16 { - top: -4rem; + .sm\:bottom-auto { + bottom: auto; } - .sm\:-right-16 { - right: -4rem; + .sm\:bottom-px { + bottom: 1px; } - .sm\:-bottom-16 { - bottom: -4rem; + .sm\:bottom-0\.5 { + bottom: 0.125rem; } - .sm\:-left-16 { - left: -4rem; + .sm\:bottom-1\.5 { + bottom: 0.375rem; } - .sm\:-top-20 { - top: -5rem; + .sm\:bottom-2\.5 { + bottom: 0.625rem; } - .sm\:-right-20 { - right: -5rem; + .sm\:bottom-3\.5 { + bottom: 0.875rem; } - .sm\:-bottom-20 { - bottom: -5rem; + .sm\:-bottom-0 { + bottom: 0px; } - .sm\:-left-20 { - left: -5rem; + .sm\:-bottom-1 { + bottom: -0.25rem; } - .sm\:-top-24 { - top: -6rem; + .sm\:-bottom-2 { + bottom: -0.5rem; } - .sm\:-right-24 { - right: -6rem; + .sm\:-bottom-3 { + bottom: -0.75rem; } - .sm\:-bottom-24 { - bottom: -6rem; + .sm\:-bottom-4 { + bottom: -1rem; } - .sm\:-left-24 { - left: -6rem; + .sm\:-bottom-5 { + bottom: -1.25rem; } - .sm\:-top-28 { - top: -7rem; + .sm\:-bottom-6 { + bottom: -1.5rem; } - .sm\:-right-28 { - right: -7rem; + .sm\:-bottom-7 { + bottom: -1.75rem; } - .sm\:-bottom-28 { - bottom: -7rem; + .sm\:-bottom-8 { + bottom: -2rem; } - .sm\:-left-28 { - left: -7rem; + .sm\:-bottom-9 { + bottom: -2.25rem; } - .sm\:-top-32 { - top: -8rem; + .sm\:-bottom-10 { + bottom: -2.5rem; } - .sm\:-right-32 { - right: -8rem; + .sm\:-bottom-11 { + bottom: -2.75rem; } - .sm\:-bottom-32 { - bottom: -8rem; + .sm\:-bottom-12 { + bottom: -3rem; } - .sm\:-left-32 { - left: -8rem; + .sm\:-bottom-14 { + bottom: -3.5rem; } - .sm\:-top-36 { - top: -9rem; + .sm\:-bottom-16 { + bottom: -4rem; } - .sm\:-right-36 { - right: -9rem; + .sm\:-bottom-20 { + bottom: -5rem; } - .sm\:-bottom-36 { - bottom: -9rem; + .sm\:-bottom-24 { + bottom: -6rem; } - .sm\:-left-36 { - left: -9rem; + .sm\:-bottom-28 { + bottom: -7rem; } - .sm\:-top-40 { - top: -10rem; + .sm\:-bottom-32 { + bottom: -8rem; } - .sm\:-right-40 { - right: -10rem; + .sm\:-bottom-36 { + bottom: -9rem; } .sm\:-bottom-40 { bottom: -10rem; } - .sm\:-left-40 { - left: -10rem; + .sm\:-bottom-44 { + bottom: -11rem; } - .sm\:-top-44 { - top: -11rem; + .sm\:-bottom-48 { + bottom: -12rem; } - .sm\:-right-44 { - right: -11rem; + .sm\:-bottom-52 { + bottom: -13rem; } - .sm\:-bottom-44 { - bottom: -11rem; + .sm\:-bottom-56 { + bottom: -14rem; } - .sm\:-left-44 { - left: -11rem; + .sm\:-bottom-60 { + bottom: -15rem; } - .sm\:-top-48 { - top: -12rem; + .sm\:-bottom-64 { + bottom: -16rem; } - .sm\:-right-48 { - right: -12rem; + .sm\:-bottom-72 { + bottom: -18rem; } - .sm\:-bottom-48 { - bottom: -12rem; + .sm\:-bottom-80 { + bottom: -20rem; } - .sm\:-left-48 { - left: -12rem; + .sm\:-bottom-96 { + bottom: -24rem; } - .sm\:-top-52 { - top: -13rem; + .sm\:-bottom-px { + bottom: -1px; } - .sm\:-right-52 { - right: -13rem; + .sm\:-bottom-0\.5 { + bottom: -0.125rem; } - .sm\:-bottom-52 { - bottom: -13rem; + .sm\:-bottom-1\.5 { + bottom: -0.375rem; } - .sm\:-left-52 { - left: -13rem; + .sm\:-bottom-2\.5 { + bottom: -0.625rem; } - .sm\:-top-56 { - top: -14rem; + .sm\:-bottom-3\.5 { + bottom: -0.875rem; } - .sm\:-right-56 { - right: -14rem; + .sm\:bottom-1\/2 { + bottom: 50%; } - .sm\:-bottom-56 { - bottom: -14rem; + .sm\:bottom-1\/3 { + bottom: 33.333333%; } - .sm\:-left-56 { - left: -14rem; + .sm\:bottom-2\/3 { + bottom: 66.666667%; } - .sm\:-top-60 { - top: -15rem; + .sm\:bottom-1\/4 { + bottom: 25%; } - .sm\:-right-60 { - right: -15rem; + .sm\:bottom-2\/4 { + bottom: 50%; } - .sm\:-bottom-60 { - bottom: -15rem; + .sm\:bottom-3\/4 { + bottom: 75%; } - .sm\:-left-60 { - left: -15rem; + .sm\:bottom-full { + bottom: 100%; } - .sm\:-top-64 { - top: -16rem; + .sm\:-bottom-1\/2 { + bottom: -50%; } - .sm\:-right-64 { - right: -16rem; + .sm\:-bottom-1\/3 { + bottom: -33.333333%; } - .sm\:-bottom-64 { - bottom: -16rem; + .sm\:-bottom-2\/3 { + bottom: -66.666667%; } - .sm\:-left-64 { - left: -16rem; + .sm\:-bottom-1\/4 { + bottom: -25%; } - .sm\:-top-72 { - top: -18rem; + .sm\:-bottom-2\/4 { + bottom: -50%; } - .sm\:-right-72 { - right: -18rem; + .sm\:-bottom-3\/4 { + bottom: -75%; } - .sm\:-bottom-72 { - bottom: -18rem; + .sm\:-bottom-full { + bottom: -100%; } - .sm\:-left-72 { - left: -18rem; + .sm\:left-0 { + left: 0px; } - .sm\:-top-80 { - top: -20rem; + .sm\:left-1 { + left: 0.25rem; } - .sm\:-right-80 { - right: -20rem; + .sm\:left-2 { + left: 0.5rem; } - .sm\:-bottom-80 { - bottom: -20rem; + .sm\:left-3 { + left: 0.75rem; } - .sm\:-left-80 { - left: -20rem; + .sm\:left-4 { + left: 1rem; } - .sm\:-top-96 { - top: -24rem; + .sm\:left-5 { + left: 1.25rem; } - .sm\:-right-96 { - right: -24rem; + .sm\:left-6 { + left: 1.5rem; } - .sm\:-bottom-96 { - bottom: -24rem; + .sm\:left-7 { + left: 1.75rem; } - .sm\:-left-96 { - left: -24rem; + .sm\:left-8 { + left: 2rem; } - .sm\:-top-px { - top: -1px; + .sm\:left-9 { + left: 2.25rem; } - .sm\:-right-px { - right: -1px; + .sm\:left-10 { + left: 2.5rem; } - .sm\:-bottom-px { - bottom: -1px; + .sm\:left-11 { + left: 2.75rem; } - .sm\:-left-px { - left: -1px; + .sm\:left-12 { + left: 3rem; } - .sm\:-top-0\.5 { - top: -0.125rem; + .sm\:left-14 { + left: 3.5rem; } - .sm\:-right-0\.5 { - right: -0.125rem; + .sm\:left-16 { + left: 4rem; } - .sm\:-bottom-0\.5 { - bottom: -0.125rem; + .sm\:left-20 { + left: 5rem; } - .sm\:-left-0\.5 { - left: -0.125rem; + .sm\:left-24 { + left: 6rem; } - .sm\:-top-1\.5 { - top: -0.375rem; + .sm\:left-28 { + left: 7rem; } - .sm\:-right-1\.5 { - right: -0.375rem; + .sm\:left-32 { + left: 8rem; } - .sm\:-bottom-1\.5 { - bottom: -0.375rem; + .sm\:left-36 { + left: 9rem; } - .sm\:-left-1\.5 { - left: -0.375rem; + .sm\:left-40 { + left: 10rem; } - .sm\:-top-2\.5 { - top: -0.625rem; + .sm\:left-44 { + left: 11rem; } - .sm\:-right-2\.5 { - right: -0.625rem; + .sm\:left-48 { + left: 12rem; } - .sm\:-bottom-2\.5 { - bottom: -0.625rem; + .sm\:left-52 { + left: 13rem; } - .sm\:-left-2\.5 { - left: -0.625rem; + .sm\:left-56 { + left: 14rem; } - .sm\:-top-3\.5 { - top: -0.875rem; + .sm\:left-60 { + left: 15rem; } - .sm\:-right-3\.5 { - right: -0.875rem; + .sm\:left-64 { + left: 16rem; } - .sm\:-bottom-3\.5 { - bottom: -0.875rem; + .sm\:left-72 { + left: 18rem; } - .sm\:-left-3\.5 { - left: -0.875rem; + .sm\:left-80 { + left: 20rem; } - .sm\:top-1\/2 { - top: 50%; + .sm\:left-96 { + left: 24rem; } - .sm\:right-1\/2 { - right: 50%; + .sm\:left-auto { + left: auto; } - .sm\:bottom-1\/2 { - bottom: 50%; + .sm\:left-px { + left: 1px; } - .sm\:left-1\/2 { - left: 50%; + .sm\:left-0\.5 { + left: 0.125rem; } - .sm\:top-1\/3 { - top: 33.333333%; + .sm\:left-1\.5 { + left: 0.375rem; } - .sm\:right-1\/3 { - right: 33.333333%; + .sm\:left-2\.5 { + left: 0.625rem; } - .sm\:bottom-1\/3 { - bottom: 33.333333%; + .sm\:left-3\.5 { + left: 0.875rem; } - .sm\:left-1\/3 { - left: 33.333333%; + .sm\:-left-0 { + left: 0px; } - .sm\:top-2\/3 { - top: 66.666667%; + .sm\:-left-1 { + left: -0.25rem; } - .sm\:right-2\/3 { - right: 66.666667%; + .sm\:-left-2 { + left: -0.5rem; } - .sm\:bottom-2\/3 { - bottom: 66.666667%; + .sm\:-left-3 { + left: -0.75rem; } - .sm\:left-2\/3 { - left: 66.666667%; + .sm\:-left-4 { + left: -1rem; } - .sm\:top-1\/4 { - top: 25%; + .sm\:-left-5 { + left: -1.25rem; } - .sm\:right-1\/4 { - right: 25%; + .sm\:-left-6 { + left: -1.5rem; } - .sm\:bottom-1\/4 { - bottom: 25%; + .sm\:-left-7 { + left: -1.75rem; } - .sm\:left-1\/4 { - left: 25%; + .sm\:-left-8 { + left: -2rem; } - .sm\:top-2\/4 { - top: 50%; + .sm\:-left-9 { + left: -2.25rem; } - .sm\:right-2\/4 { - right: 50%; + .sm\:-left-10 { + left: -2.5rem; } - .sm\:bottom-2\/4 { - bottom: 50%; + .sm\:-left-11 { + left: -2.75rem; } - .sm\:left-2\/4 { - left: 50%; + .sm\:-left-12 { + left: -3rem; } - .sm\:top-3\/4 { - top: 75%; + .sm\:-left-14 { + left: -3.5rem; } - .sm\:right-3\/4 { - right: 75%; + .sm\:-left-16 { + left: -4rem; } - .sm\:bottom-3\/4 { - bottom: 75%; + .sm\:-left-20 { + left: -5rem; } - .sm\:left-3\/4 { - left: 75%; + .sm\:-left-24 { + left: -6rem; } - .sm\:top-full { - top: 100%; + .sm\:-left-28 { + left: -7rem; } - .sm\:right-full { - right: 100%; + .sm\:-left-32 { + left: -8rem; } - .sm\:bottom-full { - bottom: 100%; + .sm\:-left-36 { + left: -9rem; } - .sm\:left-full { - left: 100%; + .sm\:-left-40 { + left: -10rem; } - .sm\:-top-1\/2 { - top: -50%; + .sm\:-left-44 { + left: -11rem; } - .sm\:-right-1\/2 { - right: -50%; + .sm\:-left-48 { + left: -12rem; } - .sm\:-bottom-1\/2 { - bottom: -50%; + .sm\:-left-52 { + left: -13rem; } - .sm\:-left-1\/2 { - left: -50%; + .sm\:-left-56 { + left: -14rem; } - .sm\:-top-1\/3 { - top: -33.333333%; + .sm\:-left-60 { + left: -15rem; } - .sm\:-right-1\/3 { - right: -33.333333%; + .sm\:-left-64 { + left: -16rem; } - .sm\:-bottom-1\/3 { - bottom: -33.333333%; + .sm\:-left-72 { + left: -18rem; } - .sm\:-left-1\/3 { - left: -33.333333%; + .sm\:-left-80 { + left: -20rem; } - .sm\:-top-2\/3 { - top: -66.666667%; + .sm\:-left-96 { + left: -24rem; } - .sm\:-right-2\/3 { - right: -66.666667%; + .sm\:-left-px { + left: -1px; } - .sm\:-bottom-2\/3 { - bottom: -66.666667%; + .sm\:-left-0\.5 { + left: -0.125rem; } - .sm\:-left-2\/3 { - left: -66.666667%; + .sm\:-left-1\.5 { + left: -0.375rem; } - .sm\:-top-1\/4 { - top: -25%; + .sm\:-left-2\.5 { + left: -0.625rem; } - .sm\:-right-1\/4 { - right: -25%; + .sm\:-left-3\.5 { + left: -0.875rem; } - .sm\:-bottom-1\/4 { - bottom: -25%; + .sm\:left-1\/2 { + left: 50%; } - .sm\:-left-1\/4 { - left: -25%; + .sm\:left-1\/3 { + left: 33.333333%; } - .sm\:-top-2\/4 { - top: -50%; + .sm\:left-2\/3 { + left: 66.666667%; } - .sm\:-right-2\/4 { - right: -50%; + .sm\:left-1\/4 { + left: 25%; } - .sm\:-bottom-2\/4 { - bottom: -50%; + .sm\:left-2\/4 { + left: 50%; } - .sm\:-left-2\/4 { - left: -50%; + .sm\:left-3\/4 { + left: 75%; } - .sm\:-top-3\/4 { - top: -75%; + .sm\:left-full { + left: 100%; } - .sm\:-right-3\/4 { - right: -75%; + .sm\:-left-1\/2 { + left: -50%; } - .sm\:-bottom-3\/4 { - bottom: -75%; + .sm\:-left-1\/3 { + left: -33.333333%; } - .sm\:-left-3\/4 { - left: -75%; + .sm\:-left-2\/3 { + left: -66.666667%; } - .sm\:-top-full { - top: -100%; + .sm\:-left-1\/4 { + left: -25%; } - .sm\:-right-full { - right: -100%; + .sm\:-left-2\/4 { + left: -50%; } - .sm\:-bottom-full { - bottom: -100%; + .sm\:-left-3\/4 { + left: -75%; } .sm\:-left-full { @@ -36235,133 +36235,183 @@ video { --tw-scale-y: 1.5; } - .sm\:scale-x-0 { + .sm\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:scale-x-50 { + .sm\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:scale-x-75 { + .sm\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:scale-x-90 { + .sm\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:scale-x-95 { + .sm\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:scale-x-100 { + .sm\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:scale-x-105 { + .sm\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:scale-x-110 { + .sm\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:scale-x-125 { + .sm\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:scale-x-150 { + .sm\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:scale-y-0 { + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .sm\:scale-y-50 { + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .sm\:scale-y-75 { + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .sm\:scale-y-90 { + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .sm\:scale-y-95 { + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .sm\:scale-y-100 { + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .sm\:scale-y-105 { + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .sm\:scale-y-110 { + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .sm\:scale-y-125 { + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .sm\:scale-y-150 { + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .sm\:hover\:scale-0:hover { + .sm\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .sm\:hover\:scale-50:hover { + .sm\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .sm\:hover\:scale-75:hover { + .sm\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .sm\:hover\:scale-90:hover { + .sm\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .sm\:hover\:scale-95:hover { + .sm\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .sm\:hover\:scale-100:hover { + .sm\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .sm\:hover\:scale-105:hover { + .sm\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .sm\:hover\:scale-110:hover { + .sm\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .sm\:hover\:scale-125:hover { + .sm\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .sm\:hover\:scale-150:hover { + .sm\:scale-x-150 { --tw-scale-x: 1.5; + } + + .sm\:scale-y-0 { + --tw-scale-y: 0; + } + + .sm\:scale-y-50 { + --tw-scale-y: .5; + } + + .sm\:scale-y-75 { + --tw-scale-y: .75; + } + + .sm\:scale-y-90 { + --tw-scale-y: .9; + } + + .sm\:scale-y-95 { + --tw-scale-y: .95; + } + + .sm\:scale-y-100 { + --tw-scale-y: 1; + } + + .sm\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .sm\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .sm\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .sm\:scale-y-150 { --tw-scale-y: 1.5; } @@ -36445,56 +36495,6 @@ video { --tw-scale-y: 1.5; } - .sm\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .sm\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .sm\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .sm\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .sm\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .sm\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .sm\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .sm\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .sm\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .sm\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .sm\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -37387,436 +37387,640 @@ video { row-gap: 0.875rem; } - .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .sm\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .sm\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .sm\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -37825,408 +38029,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -38235,66 +38235,66 @@ video { --tw-space-x-reverse: 1; } - .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -43146,2188 +43146,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .sm\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .sm\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .sm\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .sm\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .sm\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .sm\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .sm\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .sm\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .sm\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .sm\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .sm\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .sm\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .sm\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .sm\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .sm\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .sm\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .sm\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .sm\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .sm\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .sm\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .sm\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .sm\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .sm\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .sm\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .sm\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .sm\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .sm\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .sm\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .sm\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .sm\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .sm\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .sm\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .sm\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .sm\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .sm\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .sm\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .sm\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .sm\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .sm\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .sm\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .sm\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .sm\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .sm\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .sm\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .sm\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .sm\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .sm\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .sm\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .sm\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .sm\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .sm\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .sm\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .sm\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .sm\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .sm\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .sm\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .sm\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .sm\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .sm\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .sm\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .sm\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .sm\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .sm\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .sm\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .sm\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .sm\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .sm\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .sm\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .sm\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .sm\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .sm\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .sm\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .sm\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .sm\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .sm\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .sm\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .sm\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .sm\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .sm\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .sm\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .sm\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .sm\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .sm\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .sm\:to-transparent { - --tw-gradient-to: transparent; + .sm\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:to-current { - --tw-gradient-to: currentColor; + .sm\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:to-black { - --tw-gradient-to: #000; + .sm\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:to-white { - --tw-gradient-to: #fff; + .sm\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .sm\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .sm\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .sm\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .sm\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .sm\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:to-gray-500 { - --tw-gradient-to: #6b7280; + .sm\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:to-gray-600 { - --tw-gradient-to: #4b5563; + .sm\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:to-gray-700 { - --tw-gradient-to: #374151; + .sm\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:to-gray-800 { - --tw-gradient-to: #1f2937; + .sm\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:to-gray-900 { - --tw-gradient-to: #111827; + .sm\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:to-red-50 { - --tw-gradient-to: #fef2f2; + .sm\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:to-red-100 { - --tw-gradient-to: #fee2e2; + .sm\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:to-red-200 { - --tw-gradient-to: #fecaca; + .sm\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:to-red-300 { - --tw-gradient-to: #fca5a5; + .sm\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:to-red-400 { - --tw-gradient-to: #f87171; + .sm\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:to-red-500 { - --tw-gradient-to: #ef4444; + .sm\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:to-red-600 { - --tw-gradient-to: #dc2626; + .sm\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:to-red-700 { - --tw-gradient-to: #b91c1c; + .sm\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:to-red-800 { - --tw-gradient-to: #991b1b; + .sm\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .sm\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .sm\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .sm\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .sm\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .sm\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .sm\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .sm\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:to-yellow-600 { - --tw-gradient-to: #d97706; + .sm\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:to-yellow-700 { - --tw-gradient-to: #b45309; + .sm\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:to-yellow-800 { - --tw-gradient-to: #92400e; + .sm\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:to-yellow-900 { - --tw-gradient-to: #78350f; + .sm\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .sm\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:to-green-100 { - --tw-gradient-to: #d1fae5; + .sm\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .sm\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .sm\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:to-green-400 { - --tw-gradient-to: #34d399; + .sm\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:to-green-500 { - --tw-gradient-to: #10b981; + .sm\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:to-green-600 { - --tw-gradient-to: #059669; + .sm\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:to-green-700 { - --tw-gradient-to: #047857; + .sm\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:to-green-800 { - --tw-gradient-to: #065f46; + .sm\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:to-green-900 { - --tw-gradient-to: #064e3b; + .sm\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .sm\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .sm\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .sm\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .sm\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .sm\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .sm\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:to-blue-600 { - --tw-gradient-to: #2563eb; + .sm\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .sm\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:to-blue-800 { - --tw-gradient-to: #1e40af; + .sm\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .sm\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .sm\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .sm\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .sm\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .sm\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .sm\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .sm\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .sm\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .sm\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .sm\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:to-indigo-900 { - --tw-gradient-to: #312e81; + .sm\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .sm\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .sm\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .sm\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .sm\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .sm\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .sm\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .sm\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .sm\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .sm\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .sm\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .sm\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .sm\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .sm\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .sm\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:to-pink-400 { - --tw-gradient-to: #f472b6; + .sm\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:to-pink-500 { - --tw-gradient-to: #ec4899; + .sm\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:to-pink-600 { - --tw-gradient-to: #db2777; + .sm\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:to-pink-700 { - --tw-gradient-to: #be185d; + .sm\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:to-pink-800 { - --tw-gradient-to: #9d174d; + .sm\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:to-pink-900 { - --tw-gradient-to: #831843; + .sm\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:hover\:from-transparent:hover { + .sm\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:from-current:hover { + .sm\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:from-black:hover { + .sm\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:from-white:hover { + .sm\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:from-gray-50:hover { + .sm\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:hover\:from-gray-100:hover { + .sm\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:hover\:from-gray-200:hover { + .sm\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:hover\:from-gray-300:hover { + .sm\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:hover\:from-gray-400:hover { + .sm\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:hover\:from-gray-500:hover { + .sm\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:hover\:from-gray-600:hover { + .sm\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:hover\:from-gray-700:hover { + .sm\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:hover\:from-gray-800:hover { + .sm\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:hover\:from-gray-900:hover { + .sm\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:hover\:from-red-50:hover { + .sm\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:hover\:from-red-100:hover { + .sm\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:hover\:from-red-200:hover { + .sm\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:hover\:from-red-300:hover { + .sm\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:hover\:from-red-400:hover { + .sm\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:hover\:from-red-500:hover { + .sm\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:hover\:from-red-600:hover { + .sm\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:hover\:from-red-700:hover { + .sm\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:hover\:from-red-800:hover { + .sm\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:hover\:from-red-900:hover { + .sm\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:hover\:from-yellow-50:hover { + .sm\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:hover\:from-yellow-100:hover { + .sm\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:hover\:from-yellow-200:hover { + .sm\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:hover\:from-yellow-300:hover { + .sm\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:hover\:from-yellow-400:hover { + .sm\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:hover\:from-yellow-500:hover { + .sm\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:hover\:from-yellow-600:hover { + .sm\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:hover\:from-yellow-700:hover { + .sm\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:hover\:from-yellow-800:hover { + .sm\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:hover\:from-yellow-900:hover { + .sm\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:hover\:from-green-50:hover { + .sm\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:hover\:from-green-100:hover { + .sm\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:hover\:from-green-200:hover { + .sm\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:hover\:from-green-300:hover { + .sm\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:hover\:from-green-400:hover { + .sm\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:hover\:from-green-500:hover { + .sm\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:hover\:from-green-600:hover { + .sm\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:hover\:from-green-700:hover { + .sm\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:hover\:from-green-800:hover { + .sm\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:hover\:from-green-900:hover { + .sm\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:hover\:from-blue-50:hover { + .sm\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:hover\:from-blue-100:hover { + .sm\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:hover\:from-blue-200:hover { + .sm\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:hover\:from-blue-300:hover { + .sm\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:hover\:from-blue-400:hover { + .sm\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:hover\:from-blue-500:hover { + .sm\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:hover\:from-blue-600:hover { + .sm\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:hover\:from-blue-700:hover { + .sm\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:hover\:from-blue-800:hover { + .sm\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:hover\:from-blue-900:hover { + .sm\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:hover\:from-indigo-50:hover { + .sm\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:hover\:from-indigo-100:hover { + .sm\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:hover\:from-indigo-200:hover { + .sm\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:hover\:from-indigo-300:hover { + .sm\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:hover\:from-indigo-400:hover { + .sm\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:hover\:from-indigo-500:hover { + .sm\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:hover\:from-indigo-600:hover { + .sm\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:hover\:from-indigo-700:hover { + .sm\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:hover\:from-indigo-800:hover { + .sm\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:hover\:from-indigo-900:hover { + .sm\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:hover\:from-purple-50:hover { + .sm\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:hover\:from-purple-100:hover { + .sm\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:hover\:from-purple-200:hover { + .sm\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:hover\:from-purple-300:hover { + .sm\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:hover\:from-purple-400:hover { + .sm\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:hover\:from-purple-500:hover { + .sm\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:hover\:from-purple-600:hover { + .sm\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:hover\:from-purple-700:hover { + .sm\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:hover\:from-purple-800:hover { + .sm\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:hover\:from-purple-900:hover { + .sm\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:hover\:from-pink-50:hover { + .sm\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:hover\:from-pink-100:hover { + .sm\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:hover\:from-pink-200:hover { + .sm\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:hover\:from-pink-300:hover { + .sm\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:hover\:from-pink-400:hover { + .sm\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:hover\:from-pink-500:hover { + .sm\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:hover\:from-pink-600:hover { + .sm\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:hover\:from-pink-700:hover { + .sm\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:hover\:from-pink-800:hover { + .sm\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:hover\:from-pink-900:hover { + .sm\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:hover\:via-transparent:hover { + .sm\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:via-current:hover { + .sm\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:via-black:hover { + .sm\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:via-white:hover { + .sm\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:via-gray-50:hover { + .sm\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:hover\:via-gray-100:hover { + .sm\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:hover\:via-gray-200:hover { + .sm\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:hover\:via-gray-300:hover { + .sm\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:hover\:via-gray-400:hover { + .sm\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:hover\:via-gray-500:hover { + .sm\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:hover\:via-gray-600:hover { + .sm\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:hover\:via-gray-700:hover { + .sm\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:hover\:via-gray-800:hover { + .sm\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:hover\:via-gray-900:hover { + .sm\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:hover\:via-red-50:hover { + .sm\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:hover\:via-red-100:hover { + .sm\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:hover\:via-red-200:hover { + .sm\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:hover\:via-red-300:hover { + .sm\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:hover\:via-red-400:hover { + .sm\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:hover\:via-red-500:hover { + .sm\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:hover\:via-red-600:hover { + .sm\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:hover\:via-red-700:hover { + .sm\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:hover\:via-red-800:hover { + .sm\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:hover\:via-red-900:hover { + .sm\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:hover\:via-yellow-50:hover { + .sm\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:hover\:via-yellow-100:hover { + .sm\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:hover\:via-yellow-200:hover { + .sm\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:hover\:via-yellow-300:hover { + .sm\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:hover\:via-yellow-400:hover { + .sm\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:hover\:via-yellow-500:hover { + .sm\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:hover\:via-yellow-600:hover { + .sm\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:hover\:via-yellow-700:hover { + .sm\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:hover\:via-yellow-800:hover { + .sm\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:hover\:via-yellow-900:hover { + .sm\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:hover\:via-green-50:hover { + .sm\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:hover\:via-green-100:hover { + .sm\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:hover\:via-green-200:hover { + .sm\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:hover\:via-green-300:hover { + .sm\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:hover\:via-green-400:hover { + .sm\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:hover\:via-green-500:hover { + .sm\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:hover\:via-green-600:hover { + .sm\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:hover\:via-green-700:hover { + .sm\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:hover\:via-green-800:hover { + .sm\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:hover\:via-green-900:hover { + .sm\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:hover\:via-blue-50:hover { + .sm\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:hover\:via-blue-100:hover { + .sm\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:hover\:via-blue-200:hover { + .sm\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:hover\:via-blue-300:hover { + .sm\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:hover\:via-blue-400:hover { + .sm\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:hover\:via-blue-500:hover { + .sm\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:hover\:via-blue-600:hover { + .sm\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:hover\:via-blue-700:hover { + .sm\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:hover\:via-blue-800:hover { + .sm\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:hover\:via-blue-900:hover { + .sm\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:hover\:via-indigo-50:hover { + .sm\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:hover\:via-indigo-100:hover { + .sm\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:hover\:via-indigo-200:hover { + .sm\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:hover\:via-indigo-300:hover { + .sm\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:hover\:via-indigo-400:hover { + .sm\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:hover\:via-indigo-500:hover { + .sm\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:hover\:via-indigo-600:hover { + .sm\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:hover\:via-indigo-700:hover { + .sm\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:hover\:via-indigo-800:hover { + .sm\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:hover\:via-indigo-900:hover { + .sm\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:hover\:via-purple-50:hover { + .sm\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:hover\:via-purple-100:hover { + .sm\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:hover\:via-purple-200:hover { + .sm\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:hover\:via-purple-300:hover { + .sm\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:hover\:via-purple-400:hover { + .sm\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:hover\:via-purple-500:hover { + .sm\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:hover\:via-purple-600:hover { + .sm\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:hover\:via-purple-700:hover { + .sm\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:hover\:via-purple-800:hover { + .sm\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:hover\:via-purple-900:hover { + .sm\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:hover\:via-pink-50:hover { + .sm\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:hover\:via-pink-100:hover { + .sm\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:hover\:via-pink-200:hover { + .sm\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:hover\:via-pink-300:hover { + .sm\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:hover\:via-pink-400:hover { + .sm\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:hover\:via-pink-500:hover { + .sm\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:hover\:via-pink-600:hover { + .sm\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:hover\:via-pink-700:hover { + .sm\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:hover\:via-pink-800:hover { + .sm\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:hover\:via-pink-900:hover { + .sm\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .sm\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .sm\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .sm\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .sm\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .sm\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .sm\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .sm\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .sm\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .sm\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .sm\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .sm\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .sm\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .sm\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .sm\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .sm\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .sm\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .sm\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .sm\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .sm\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .sm\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .sm\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .sm\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .sm\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .sm\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .sm\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .sm\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .sm\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .sm\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .sm\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .sm\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .sm\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .sm\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .sm\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .sm\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .sm\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .sm\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .sm\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .sm\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .sm\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .sm\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .sm\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .sm\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .sm\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .sm\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .sm\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .sm\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .sm\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .sm\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .sm\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .sm\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .sm\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .sm\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .sm\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .sm\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .sm\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .sm\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .sm\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .sm\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .sm\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .sm\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .sm\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .sm\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .sm\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .sm\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .sm\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .sm\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .sm\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .sm\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .sm\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .sm\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .sm\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .sm\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .sm\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .sm\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .sm\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .sm\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .sm\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .sm\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .sm\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .sm\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .sm\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .sm\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .sm\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .sm\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .sm\:focus\:via-transparent:focus { @@ -45666,6 +44994,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .sm\:to-transparent { + --tw-gradient-to: transparent; + } + + .sm\:to-current { + --tw-gradient-to: currentColor; + } + + .sm\:to-black { + --tw-gradient-to: #000; + } + + .sm\:to-white { + --tw-gradient-to: #fff; + } + + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .sm\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .sm\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .sm\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .sm\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .sm\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .sm\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .sm\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .sm\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .sm\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .sm\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .sm\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .sm\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .sm\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .sm\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .sm\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .sm\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .sm\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .sm\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .sm\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .sm\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .sm\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .sm\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .sm\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .sm\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .sm\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .sm\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .sm\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .sm\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .sm\:to-green-600 { + --tw-gradient-to: #059669; + } + + .sm\:to-green-700 { + --tw-gradient-to: #047857; + } + + .sm\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .sm\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .sm\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .sm\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .sm\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .sm\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .sm\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .sm\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .sm\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .sm\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .sm\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .sm\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .sm\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .sm\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .sm\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .sm\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .sm\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .sm\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .sm\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .sm\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .sm\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .sm\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .sm\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .sm\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .sm\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .sm\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .sm\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .sm\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .sm\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .sm\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .sm\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .sm\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .sm\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .sm\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .sm\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .sm\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .sm\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .sm\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .sm\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .sm\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .sm\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .sm\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .sm\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .sm\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .sm\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .sm\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .sm\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .sm\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .sm\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .sm\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .sm\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .sm\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .sm\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .sm\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .sm\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .sm\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .sm\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .sm\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .sm\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .sm\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .sm\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .sm\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .sm\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -50681,10 +50681,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:ring-inset { - --tw-ring-inset: inset; - } - .sm\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -50721,10 +50717,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .sm\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -50761,6 +50753,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .sm\:ring-inset { + --tw-ring-inset: inset; + } + + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .sm\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -53521,6 +53521,38 @@ video { backdrop-filter: none; } + .sm\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .sm\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .sm\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .sm\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .sm\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .sm\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .sm\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .sm\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .sm\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -54430,116 +54462,541 @@ video { left: -0.375rem; } - .md\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .md\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .md\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .md\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .md\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .md\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .md\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .md\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .md\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .md\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .md\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .md\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .md\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .md\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .md\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .md\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .md\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .md\:inset-x-0 { + left: 0px; + right: 0px; + } + + .md\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .md\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .md\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .md\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .md\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .md\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .md\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .md\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .md\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .md\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .md\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .md\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .md\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .md\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .md\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .md\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .md\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .md\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .md\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .md\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .md\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .md\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .md\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .md\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .md\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .md\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .md\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .md\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .md\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .md\:inset-x-auto { + left: auto; + right: auto; + } + + .md\:inset-x-px { + left: 1px; + right: 1px; + } + + .md\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .md\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .md\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .md\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .md\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .md\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .md\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .md\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .md\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .md\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .md\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .md\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .md\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .md\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .md\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .md\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .md\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .md\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .md\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .md\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .md\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .md\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .md\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .md\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .md\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .md\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .md\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .md\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .md\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .md\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .md\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .md\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .md\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .md\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .md\:-inset-x-px { + left: -1px; + right: -1px; + } + + .md\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .md\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .md\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .md\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .md\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .md\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .md\:inset-x-1\/2 { left: 50%; + right: 50%; } - .md\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .md\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .md\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .md\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .md\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .md\:inset-x-1\/4 { left: 25%; + right: 25%; } - .md\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .md\:inset-x-2\/4 { left: 50%; + right: 50%; } - .md\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .md\:inset-x-3\/4 { left: 75%; + right: 75%; } - .md\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .md\:inset-x-full { left: 100%; + right: 100%; } - .md\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .md\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .md\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .md\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .md\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .md\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .md\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .md\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .md\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .md\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .md\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .md\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .md\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .md\:-inset-x-full { left: -100%; + right: -100%; } .md\:inset-y-0 { @@ -54547,2205 +55004,1780 @@ video { bottom: 0px; } - .md\:inset-x-0 { - right: 0px; - left: 0px; - } - .md\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .md\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .md\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .md\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .md\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .md\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .md\:inset-y-4 { top: 1rem; bottom: 1rem; } - .md\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .md\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .md\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .md\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .md\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .md\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .md\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .md\:inset-y-8 { top: 2rem; bottom: 2rem; } - .md\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .md\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .md\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .md\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .md\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .md\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .md\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .md\:inset-y-12 { top: 3rem; bottom: 3rem; } - .md\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .md\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .md\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .md\:inset-y-16 { top: 4rem; bottom: 4rem; } - .md\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .md\:inset-y-20 { top: 5rem; bottom: 5rem; } - .md\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .md\:inset-y-24 { top: 6rem; bottom: 6rem; } - .md\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .md\:inset-y-28 { top: 7rem; bottom: 7rem; } - .md\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .md\:inset-y-32 { top: 8rem; bottom: 8rem; } - .md\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .md\:inset-y-36 { top: 9rem; bottom: 9rem; } - .md\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .md\:inset-y-40 { top: 10rem; bottom: 10rem; } - .md\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .md\:inset-y-44 { top: 11rem; bottom: 11rem; } - .md\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .md\:inset-y-48 { top: 12rem; bottom: 12rem; } - .md\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .md\:inset-y-52 { top: 13rem; bottom: 13rem; } - .md\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .md\:inset-y-56 { top: 14rem; bottom: 14rem; } - .md\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .md\:inset-y-60 { top: 15rem; bottom: 15rem; } - .md\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .md\:inset-y-64 { top: 16rem; bottom: 16rem; } - .md\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .md\:inset-y-72 { top: 18rem; bottom: 18rem; } - .md\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .md\:inset-y-80 { top: 20rem; bottom: 20rem; } - .md\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .md\:inset-y-96 { top: 24rem; bottom: 24rem; } - .md\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .md\:inset-y-auto { top: auto; bottom: auto; } - .md\:inset-x-auto { - right: auto; - left: auto; - } - .md\:inset-y-px { top: 1px; bottom: 1px; } - .md\:inset-x-px { - right: 1px; - left: 1px; - } - .md\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .md\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .md\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .md\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .md\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .md\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .md\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .md\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .md\:-inset-y-0 { top: 0px; bottom: 0px; } - .md\:-inset-x-0 { - right: 0px; - left: 0px; - } - .md\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .md\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .md\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .md\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .md\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .md\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .md\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .md\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .md\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .md\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .md\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .md\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .md\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .md\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .md\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .md\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .md\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .md\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .md\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .md\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .md\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .md\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .md\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .md\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .md\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .md\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .md\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .md\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .md\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .md\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .md\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .md\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .md\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .md\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .md\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .md\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .md\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .md\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .md\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .md\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .md\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .md\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .md\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .md\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .md\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .md\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .md\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .md\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .md\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .md\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .md\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .md\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .md\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .md\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .md\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .md\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .md\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .md\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .md\:-inset-y-px { top: -1px; bottom: -1px; } - .md\:-inset-x-px { - right: -1px; - left: -1px; - } - .md\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .md\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .md\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .md\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .md\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .md\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .md\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .md\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .md\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .md\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .md\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .md\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .md\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .md\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .md\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .md\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .md\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .md\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .md\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .md\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .md\:inset-y-full { top: 100%; bottom: 100%; } - .md\:inset-x-full { - right: 100%; - left: 100%; - } - .md\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .md\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .md\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .md\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .md\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .md\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .md\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .md\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .md\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .md\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .md\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .md\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .md\:-inset-y-full { top: -100%; bottom: -100%; } - .md\:-inset-x-full { - right: -100%; - left: -100%; - } - .md\:top-0 { top: 0px; } - .md\:right-0 { - right: 0px; + .md\:top-1 { + top: 0.25rem; } - .md\:bottom-0 { - bottom: 0px; + .md\:top-2 { + top: 0.5rem; } - .md\:left-0 { - left: 0px; + .md\:top-3 { + top: 0.75rem; } - .md\:top-1 { - top: 0.25rem; + .md\:top-4 { + top: 1rem; } - .md\:right-1 { - right: 0.25rem; + .md\:top-5 { + top: 1.25rem; } - .md\:bottom-1 { - bottom: 0.25rem; + .md\:top-6 { + top: 1.5rem; } - .md\:left-1 { - left: 0.25rem; + .md\:top-7 { + top: 1.75rem; } - .md\:top-2 { - top: 0.5rem; + .md\:top-8 { + top: 2rem; } - .md\:right-2 { - right: 0.5rem; + .md\:top-9 { + top: 2.25rem; } - .md\:bottom-2 { - bottom: 0.5rem; + .md\:top-10 { + top: 2.5rem; } - .md\:left-2 { - left: 0.5rem; + .md\:top-11 { + top: 2.75rem; } - .md\:top-3 { - top: 0.75rem; + .md\:top-12 { + top: 3rem; } - .md\:right-3 { - right: 0.75rem; + .md\:top-14 { + top: 3.5rem; } - .md\:bottom-3 { - bottom: 0.75rem; + .md\:top-16 { + top: 4rem; } - .md\:left-3 { - left: 0.75rem; + .md\:top-20 { + top: 5rem; } - .md\:top-4 { - top: 1rem; + .md\:top-24 { + top: 6rem; } - .md\:right-4 { - right: 1rem; + .md\:top-28 { + top: 7rem; } - .md\:bottom-4 { - bottom: 1rem; + .md\:top-32 { + top: 8rem; } - .md\:left-4 { - left: 1rem; + .md\:top-36 { + top: 9rem; } - .md\:top-5 { - top: 1.25rem; + .md\:top-40 { + top: 10rem; } - .md\:right-5 { - right: 1.25rem; + .md\:top-44 { + top: 11rem; } - .md\:bottom-5 { - bottom: 1.25rem; + .md\:top-48 { + top: 12rem; } - .md\:left-5 { - left: 1.25rem; + .md\:top-52 { + top: 13rem; } - .md\:top-6 { - top: 1.5rem; + .md\:top-56 { + top: 14rem; } - .md\:right-6 { - right: 1.5rem; + .md\:top-60 { + top: 15rem; } - .md\:bottom-6 { - bottom: 1.5rem; + .md\:top-64 { + top: 16rem; } - .md\:left-6 { - left: 1.5rem; + .md\:top-72 { + top: 18rem; } - .md\:top-7 { - top: 1.75rem; + .md\:top-80 { + top: 20rem; } - .md\:right-7 { - right: 1.75rem; + .md\:top-96 { + top: 24rem; } - .md\:bottom-7 { - bottom: 1.75rem; + .md\:top-auto { + top: auto; } - .md\:left-7 { - left: 1.75rem; + .md\:top-px { + top: 1px; } - .md\:top-8 { - top: 2rem; + .md\:top-0\.5 { + top: 0.125rem; } - .md\:right-8 { - right: 2rem; + .md\:top-1\.5 { + top: 0.375rem; } - .md\:bottom-8 { - bottom: 2rem; + .md\:top-2\.5 { + top: 0.625rem; } - .md\:left-8 { - left: 2rem; + .md\:top-3\.5 { + top: 0.875rem; } - .md\:top-9 { - top: 2.25rem; + .md\:-top-0 { + top: 0px; } - .md\:right-9 { - right: 2.25rem; + .md\:-top-1 { + top: -0.25rem; } - .md\:bottom-9 { - bottom: 2.25rem; + .md\:-top-2 { + top: -0.5rem; } - .md\:left-9 { - left: 2.25rem; + .md\:-top-3 { + top: -0.75rem; } - .md\:top-10 { - top: 2.5rem; + .md\:-top-4 { + top: -1rem; } - .md\:right-10 { - right: 2.5rem; + .md\:-top-5 { + top: -1.25rem; } - .md\:bottom-10 { - bottom: 2.5rem; + .md\:-top-6 { + top: -1.5rem; } - .md\:left-10 { - left: 2.5rem; + .md\:-top-7 { + top: -1.75rem; } - .md\:top-11 { - top: 2.75rem; + .md\:-top-8 { + top: -2rem; } - .md\:right-11 { - right: 2.75rem; + .md\:-top-9 { + top: -2.25rem; } - .md\:bottom-11 { - bottom: 2.75rem; + .md\:-top-10 { + top: -2.5rem; } - .md\:left-11 { - left: 2.75rem; + .md\:-top-11 { + top: -2.75rem; } - .md\:top-12 { - top: 3rem; + .md\:-top-12 { + top: -3rem; } - .md\:right-12 { - right: 3rem; + .md\:-top-14 { + top: -3.5rem; } - .md\:bottom-12 { - bottom: 3rem; + .md\:-top-16 { + top: -4rem; } - .md\:left-12 { - left: 3rem; + .md\:-top-20 { + top: -5rem; } - .md\:top-14 { - top: 3.5rem; + .md\:-top-24 { + top: -6rem; } - .md\:right-14 { - right: 3.5rem; + .md\:-top-28 { + top: -7rem; } - .md\:bottom-14 { - bottom: 3.5rem; + .md\:-top-32 { + top: -8rem; } - .md\:left-14 { - left: 3.5rem; + .md\:-top-36 { + top: -9rem; } - .md\:top-16 { - top: 4rem; + .md\:-top-40 { + top: -10rem; } - .md\:right-16 { - right: 4rem; + .md\:-top-44 { + top: -11rem; } - .md\:bottom-16 { - bottom: 4rem; + .md\:-top-48 { + top: -12rem; } - .md\:left-16 { - left: 4rem; + .md\:-top-52 { + top: -13rem; } - .md\:top-20 { - top: 5rem; + .md\:-top-56 { + top: -14rem; } - .md\:right-20 { - right: 5rem; + .md\:-top-60 { + top: -15rem; } - .md\:bottom-20 { - bottom: 5rem; + .md\:-top-64 { + top: -16rem; } - .md\:left-20 { - left: 5rem; + .md\:-top-72 { + top: -18rem; } - .md\:top-24 { - top: 6rem; + .md\:-top-80 { + top: -20rem; } - .md\:right-24 { - right: 6rem; + .md\:-top-96 { + top: -24rem; } - .md\:bottom-24 { - bottom: 6rem; + .md\:-top-px { + top: -1px; } - .md\:left-24 { - left: 6rem; + .md\:-top-0\.5 { + top: -0.125rem; } - .md\:top-28 { - top: 7rem; + .md\:-top-1\.5 { + top: -0.375rem; } - .md\:right-28 { - right: 7rem; + .md\:-top-2\.5 { + top: -0.625rem; } - .md\:bottom-28 { - bottom: 7rem; + .md\:-top-3\.5 { + top: -0.875rem; } - .md\:left-28 { - left: 7rem; + .md\:top-1\/2 { + top: 50%; } - .md\:top-32 { - top: 8rem; + .md\:top-1\/3 { + top: 33.333333%; } - .md\:right-32 { - right: 8rem; + .md\:top-2\/3 { + top: 66.666667%; } - .md\:bottom-32 { - bottom: 8rem; + .md\:top-1\/4 { + top: 25%; } - .md\:left-32 { - left: 8rem; + .md\:top-2\/4 { + top: 50%; } - .md\:top-36 { - top: 9rem; + .md\:top-3\/4 { + top: 75%; } - .md\:right-36 { - right: 9rem; + .md\:top-full { + top: 100%; } - .md\:bottom-36 { - bottom: 9rem; + .md\:-top-1\/2 { + top: -50%; } - .md\:left-36 { - left: 9rem; + .md\:-top-1\/3 { + top: -33.333333%; } - .md\:top-40 { - top: 10rem; + .md\:-top-2\/3 { + top: -66.666667%; } - .md\:right-40 { - right: 10rem; + .md\:-top-1\/4 { + top: -25%; } - .md\:bottom-40 { - bottom: 10rem; + .md\:-top-2\/4 { + top: -50%; } - .md\:left-40 { - left: 10rem; + .md\:-top-3\/4 { + top: -75%; } - .md\:top-44 { - top: 11rem; + .md\:-top-full { + top: -100%; } - .md\:right-44 { - right: 11rem; + .md\:right-0 { + right: 0px; } - .md\:bottom-44 { - bottom: 11rem; + .md\:right-1 { + right: 0.25rem; } - .md\:left-44 { - left: 11rem; + .md\:right-2 { + right: 0.5rem; } - .md\:top-48 { - top: 12rem; + .md\:right-3 { + right: 0.75rem; } - .md\:right-48 { - right: 12rem; + .md\:right-4 { + right: 1rem; } - .md\:bottom-48 { - bottom: 12rem; + .md\:right-5 { + right: 1.25rem; } - .md\:left-48 { - left: 12rem; + .md\:right-6 { + right: 1.5rem; } - .md\:top-52 { - top: 13rem; + .md\:right-7 { + right: 1.75rem; } - .md\:right-52 { - right: 13rem; + .md\:right-8 { + right: 2rem; } - .md\:bottom-52 { - bottom: 13rem; + .md\:right-9 { + right: 2.25rem; } - .md\:left-52 { - left: 13rem; + .md\:right-10 { + right: 2.5rem; } - .md\:top-56 { - top: 14rem; + .md\:right-11 { + right: 2.75rem; } - .md\:right-56 { - right: 14rem; + .md\:right-12 { + right: 3rem; } - .md\:bottom-56 { - bottom: 14rem; + .md\:right-14 { + right: 3.5rem; } - .md\:left-56 { - left: 14rem; + .md\:right-16 { + right: 4rem; } - .md\:top-60 { - top: 15rem; + .md\:right-20 { + right: 5rem; } - .md\:right-60 { - right: 15rem; + .md\:right-24 { + right: 6rem; } - .md\:bottom-60 { - bottom: 15rem; + .md\:right-28 { + right: 7rem; } - .md\:left-60 { - left: 15rem; + .md\:right-32 { + right: 8rem; } - .md\:top-64 { - top: 16rem; + .md\:right-36 { + right: 9rem; } - .md\:right-64 { - right: 16rem; + .md\:right-40 { + right: 10rem; } - .md\:bottom-64 { - bottom: 16rem; + .md\:right-44 { + right: 11rem; } - .md\:left-64 { - left: 16rem; + .md\:right-48 { + right: 12rem; } - .md\:top-72 { - top: 18rem; + .md\:right-52 { + right: 13rem; } - .md\:right-72 { - right: 18rem; + .md\:right-56 { + right: 14rem; } - .md\:bottom-72 { - bottom: 18rem; + .md\:right-60 { + right: 15rem; } - .md\:left-72 { - left: 18rem; + .md\:right-64 { + right: 16rem; } - .md\:top-80 { - top: 20rem; + .md\:right-72 { + right: 18rem; } .md\:right-80 { right: 20rem; } - .md\:bottom-80 { - bottom: 20rem; + .md\:right-96 { + right: 24rem; } - .md\:left-80 { - left: 20rem; + .md\:right-auto { + right: auto; } - .md\:top-96 { - top: 24rem; + .md\:right-px { + right: 1px; } - .md\:right-96 { - right: 24rem; + .md\:right-0\.5 { + right: 0.125rem; } - .md\:bottom-96 { - bottom: 24rem; + .md\:right-1\.5 { + right: 0.375rem; } - .md\:left-96 { - left: 24rem; + .md\:right-2\.5 { + right: 0.625rem; } - .md\:top-auto { - top: auto; + .md\:right-3\.5 { + right: 0.875rem; } - .md\:right-auto { - right: auto; + .md\:-right-0 { + right: 0px; } - .md\:bottom-auto { - bottom: auto; + .md\:-right-1 { + right: -0.25rem; } - .md\:left-auto { - left: auto; + .md\:-right-2 { + right: -0.5rem; } - .md\:top-px { - top: 1px; + .md\:-right-3 { + right: -0.75rem; } - .md\:right-px { - right: 1px; + .md\:-right-4 { + right: -1rem; } - .md\:bottom-px { - bottom: 1px; + .md\:-right-5 { + right: -1.25rem; } - .md\:left-px { - left: 1px; + .md\:-right-6 { + right: -1.5rem; } - .md\:top-0\.5 { - top: 0.125rem; + .md\:-right-7 { + right: -1.75rem; } - .md\:right-0\.5 { - right: 0.125rem; + .md\:-right-8 { + right: -2rem; } - .md\:bottom-0\.5 { - bottom: 0.125rem; + .md\:-right-9 { + right: -2.25rem; } - .md\:left-0\.5 { - left: 0.125rem; + .md\:-right-10 { + right: -2.5rem; } - .md\:top-1\.5 { - top: 0.375rem; + .md\:-right-11 { + right: -2.75rem; } - .md\:right-1\.5 { - right: 0.375rem; + .md\:-right-12 { + right: -3rem; } - .md\:bottom-1\.5 { - bottom: 0.375rem; + .md\:-right-14 { + right: -3.5rem; } - .md\:left-1\.5 { - left: 0.375rem; + .md\:-right-16 { + right: -4rem; } - .md\:top-2\.5 { - top: 0.625rem; + .md\:-right-20 { + right: -5rem; } - .md\:right-2\.5 { - right: 0.625rem; + .md\:-right-24 { + right: -6rem; } - .md\:bottom-2\.5 { - bottom: 0.625rem; + .md\:-right-28 { + right: -7rem; } - .md\:left-2\.5 { - left: 0.625rem; + .md\:-right-32 { + right: -8rem; } - .md\:top-3\.5 { - top: 0.875rem; + .md\:-right-36 { + right: -9rem; } - .md\:right-3\.5 { - right: 0.875rem; + .md\:-right-40 { + right: -10rem; } - .md\:bottom-3\.5 { - bottom: 0.875rem; + .md\:-right-44 { + right: -11rem; } - .md\:left-3\.5 { - left: 0.875rem; + .md\:-right-48 { + right: -12rem; } - .md\:-top-0 { - top: 0px; + .md\:-right-52 { + right: -13rem; } - .md\:-right-0 { - right: 0px; + .md\:-right-56 { + right: -14rem; } - .md\:-bottom-0 { - bottom: 0px; + .md\:-right-60 { + right: -15rem; } - .md\:-left-0 { - left: 0px; + .md\:-right-64 { + right: -16rem; } - .md\:-top-1 { - top: -0.25rem; + .md\:-right-72 { + right: -18rem; } - .md\:-right-1 { - right: -0.25rem; + .md\:-right-80 { + right: -20rem; } - .md\:-bottom-1 { - bottom: -0.25rem; + .md\:-right-96 { + right: -24rem; } - .md\:-left-1 { - left: -0.25rem; + .md\:-right-px { + right: -1px; } - .md\:-top-2 { - top: -0.5rem; + .md\:-right-0\.5 { + right: -0.125rem; } - .md\:-right-2 { - right: -0.5rem; + .md\:-right-1\.5 { + right: -0.375rem; } - .md\:-bottom-2 { - bottom: -0.5rem; + .md\:-right-2\.5 { + right: -0.625rem; } - .md\:-left-2 { - left: -0.5rem; + .md\:-right-3\.5 { + right: -0.875rem; } - .md\:-top-3 { - top: -0.75rem; + .md\:right-1\/2 { + right: 50%; } - .md\:-right-3 { - right: -0.75rem; + .md\:right-1\/3 { + right: 33.333333%; } - .md\:-bottom-3 { - bottom: -0.75rem; + .md\:right-2\/3 { + right: 66.666667%; } - .md\:-left-3 { - left: -0.75rem; + .md\:right-1\/4 { + right: 25%; } - .md\:-top-4 { - top: -1rem; + .md\:right-2\/4 { + right: 50%; } - .md\:-right-4 { - right: -1rem; + .md\:right-3\/4 { + right: 75%; } - .md\:-bottom-4 { - bottom: -1rem; + .md\:right-full { + right: 100%; } - .md\:-left-4 { - left: -1rem; + .md\:-right-1\/2 { + right: -50%; } - .md\:-top-5 { - top: -1.25rem; + .md\:-right-1\/3 { + right: -33.333333%; } - .md\:-right-5 { - right: -1.25rem; + .md\:-right-2\/3 { + right: -66.666667%; } - .md\:-bottom-5 { - bottom: -1.25rem; + .md\:-right-1\/4 { + right: -25%; } - .md\:-left-5 { - left: -1.25rem; + .md\:-right-2\/4 { + right: -50%; } - .md\:-top-6 { - top: -1.5rem; + .md\:-right-3\/4 { + right: -75%; } - .md\:-right-6 { - right: -1.5rem; + .md\:-right-full { + right: -100%; } - .md\:-bottom-6 { - bottom: -1.5rem; + .md\:bottom-0 { + bottom: 0px; } - .md\:-left-6 { - left: -1.5rem; + .md\:bottom-1 { + bottom: 0.25rem; } - .md\:-top-7 { - top: -1.75rem; + .md\:bottom-2 { + bottom: 0.5rem; } - .md\:-right-7 { - right: -1.75rem; + .md\:bottom-3 { + bottom: 0.75rem; } - .md\:-bottom-7 { - bottom: -1.75rem; + .md\:bottom-4 { + bottom: 1rem; } - .md\:-left-7 { - left: -1.75rem; + .md\:bottom-5 { + bottom: 1.25rem; } - .md\:-top-8 { - top: -2rem; + .md\:bottom-6 { + bottom: 1.5rem; } - .md\:-right-8 { - right: -2rem; + .md\:bottom-7 { + bottom: 1.75rem; } - .md\:-bottom-8 { - bottom: -2rem; + .md\:bottom-8 { + bottom: 2rem; } - .md\:-left-8 { - left: -2rem; + .md\:bottom-9 { + bottom: 2.25rem; } - .md\:-top-9 { - top: -2.25rem; + .md\:bottom-10 { + bottom: 2.5rem; } - .md\:-right-9 { - right: -2.25rem; + .md\:bottom-11 { + bottom: 2.75rem; } - .md\:-bottom-9 { - bottom: -2.25rem; + .md\:bottom-12 { + bottom: 3rem; } - .md\:-left-9 { - left: -2.25rem; + .md\:bottom-14 { + bottom: 3.5rem; } - .md\:-top-10 { - top: -2.5rem; + .md\:bottom-16 { + bottom: 4rem; } - .md\:-right-10 { - right: -2.5rem; + .md\:bottom-20 { + bottom: 5rem; } - .md\:-bottom-10 { - bottom: -2.5rem; + .md\:bottom-24 { + bottom: 6rem; } - .md\:-left-10 { - left: -2.5rem; + .md\:bottom-28 { + bottom: 7rem; } - .md\:-top-11 { - top: -2.75rem; + .md\:bottom-32 { + bottom: 8rem; } - .md\:-right-11 { - right: -2.75rem; + .md\:bottom-36 { + bottom: 9rem; } - .md\:-bottom-11 { - bottom: -2.75rem; + .md\:bottom-40 { + bottom: 10rem; } - .md\:-left-11 { - left: -2.75rem; + .md\:bottom-44 { + bottom: 11rem; } - .md\:-top-12 { - top: -3rem; + .md\:bottom-48 { + bottom: 12rem; } - .md\:-right-12 { - right: -3rem; + .md\:bottom-52 { + bottom: 13rem; } - .md\:-bottom-12 { - bottom: -3rem; + .md\:bottom-56 { + bottom: 14rem; } - .md\:-left-12 { - left: -3rem; + .md\:bottom-60 { + bottom: 15rem; } - .md\:-top-14 { - top: -3.5rem; + .md\:bottom-64 { + bottom: 16rem; } - .md\:-right-14 { - right: -3.5rem; + .md\:bottom-72 { + bottom: 18rem; } - .md\:-bottom-14 { - bottom: -3.5rem; + .md\:bottom-80 { + bottom: 20rem; } - .md\:-left-14 { - left: -3.5rem; + .md\:bottom-96 { + bottom: 24rem; } - .md\:-top-16 { - top: -4rem; + .md\:bottom-auto { + bottom: auto; } - .md\:-right-16 { - right: -4rem; + .md\:bottom-px { + bottom: 1px; } - .md\:-bottom-16 { - bottom: -4rem; + .md\:bottom-0\.5 { + bottom: 0.125rem; } - .md\:-left-16 { - left: -4rem; + .md\:bottom-1\.5 { + bottom: 0.375rem; } - .md\:-top-20 { - top: -5rem; + .md\:bottom-2\.5 { + bottom: 0.625rem; } - .md\:-right-20 { - right: -5rem; + .md\:bottom-3\.5 { + bottom: 0.875rem; } - .md\:-bottom-20 { - bottom: -5rem; + .md\:-bottom-0 { + bottom: 0px; } - .md\:-left-20 { - left: -5rem; + .md\:-bottom-1 { + bottom: -0.25rem; } - .md\:-top-24 { - top: -6rem; + .md\:-bottom-2 { + bottom: -0.5rem; } - .md\:-right-24 { - right: -6rem; + .md\:-bottom-3 { + bottom: -0.75rem; } - .md\:-bottom-24 { - bottom: -6rem; + .md\:-bottom-4 { + bottom: -1rem; } - .md\:-left-24 { - left: -6rem; + .md\:-bottom-5 { + bottom: -1.25rem; } - .md\:-top-28 { - top: -7rem; + .md\:-bottom-6 { + bottom: -1.5rem; } - .md\:-right-28 { - right: -7rem; + .md\:-bottom-7 { + bottom: -1.75rem; } - .md\:-bottom-28 { - bottom: -7rem; + .md\:-bottom-8 { + bottom: -2rem; } - .md\:-left-28 { - left: -7rem; + .md\:-bottom-9 { + bottom: -2.25rem; } - .md\:-top-32 { - top: -8rem; + .md\:-bottom-10 { + bottom: -2.5rem; } - .md\:-right-32 { - right: -8rem; + .md\:-bottom-11 { + bottom: -2.75rem; } - .md\:-bottom-32 { - bottom: -8rem; + .md\:-bottom-12 { + bottom: -3rem; } - .md\:-left-32 { - left: -8rem; + .md\:-bottom-14 { + bottom: -3.5rem; } - .md\:-top-36 { - top: -9rem; + .md\:-bottom-16 { + bottom: -4rem; } - .md\:-right-36 { - right: -9rem; + .md\:-bottom-20 { + bottom: -5rem; } - .md\:-bottom-36 { - bottom: -9rem; + .md\:-bottom-24 { + bottom: -6rem; } - .md\:-left-36 { - left: -9rem; + .md\:-bottom-28 { + bottom: -7rem; } - .md\:-top-40 { - top: -10rem; + .md\:-bottom-32 { + bottom: -8rem; } - .md\:-right-40 { - right: -10rem; + .md\:-bottom-36 { + bottom: -9rem; } .md\:-bottom-40 { bottom: -10rem; } - .md\:-left-40 { - left: -10rem; + .md\:-bottom-44 { + bottom: -11rem; } - .md\:-top-44 { - top: -11rem; + .md\:-bottom-48 { + bottom: -12rem; } - .md\:-right-44 { - right: -11rem; + .md\:-bottom-52 { + bottom: -13rem; } - .md\:-bottom-44 { - bottom: -11rem; + .md\:-bottom-56 { + bottom: -14rem; } - .md\:-left-44 { - left: -11rem; + .md\:-bottom-60 { + bottom: -15rem; } - .md\:-top-48 { - top: -12rem; + .md\:-bottom-64 { + bottom: -16rem; } - .md\:-right-48 { - right: -12rem; + .md\:-bottom-72 { + bottom: -18rem; } - .md\:-bottom-48 { - bottom: -12rem; + .md\:-bottom-80 { + bottom: -20rem; } - .md\:-left-48 { - left: -12rem; + .md\:-bottom-96 { + bottom: -24rem; } - .md\:-top-52 { - top: -13rem; + .md\:-bottom-px { + bottom: -1px; } - .md\:-right-52 { - right: -13rem; + .md\:-bottom-0\.5 { + bottom: -0.125rem; } - .md\:-bottom-52 { - bottom: -13rem; + .md\:-bottom-1\.5 { + bottom: -0.375rem; } - .md\:-left-52 { - left: -13rem; + .md\:-bottom-2\.5 { + bottom: -0.625rem; } - .md\:-top-56 { - top: -14rem; + .md\:-bottom-3\.5 { + bottom: -0.875rem; } - .md\:-right-56 { - right: -14rem; + .md\:bottom-1\/2 { + bottom: 50%; } - .md\:-bottom-56 { - bottom: -14rem; + .md\:bottom-1\/3 { + bottom: 33.333333%; } - .md\:-left-56 { - left: -14rem; + .md\:bottom-2\/3 { + bottom: 66.666667%; } - .md\:-top-60 { - top: -15rem; + .md\:bottom-1\/4 { + bottom: 25%; } - .md\:-right-60 { - right: -15rem; + .md\:bottom-2\/4 { + bottom: 50%; } - .md\:-bottom-60 { - bottom: -15rem; + .md\:bottom-3\/4 { + bottom: 75%; } - .md\:-left-60 { - left: -15rem; + .md\:bottom-full { + bottom: 100%; } - .md\:-top-64 { - top: -16rem; + .md\:-bottom-1\/2 { + bottom: -50%; } - .md\:-right-64 { - right: -16rem; + .md\:-bottom-1\/3 { + bottom: -33.333333%; } - .md\:-bottom-64 { - bottom: -16rem; + .md\:-bottom-2\/3 { + bottom: -66.666667%; } - .md\:-left-64 { - left: -16rem; + .md\:-bottom-1\/4 { + bottom: -25%; } - .md\:-top-72 { - top: -18rem; + .md\:-bottom-2\/4 { + bottom: -50%; } - .md\:-right-72 { - right: -18rem; + .md\:-bottom-3\/4 { + bottom: -75%; } - .md\:-bottom-72 { - bottom: -18rem; + .md\:-bottom-full { + bottom: -100%; } - .md\:-left-72 { - left: -18rem; + .md\:left-0 { + left: 0px; } - .md\:-top-80 { - top: -20rem; + .md\:left-1 { + left: 0.25rem; } - .md\:-right-80 { - right: -20rem; + .md\:left-2 { + left: 0.5rem; } - .md\:-bottom-80 { - bottom: -20rem; + .md\:left-3 { + left: 0.75rem; } - .md\:-left-80 { - left: -20rem; + .md\:left-4 { + left: 1rem; } - .md\:-top-96 { - top: -24rem; + .md\:left-5 { + left: 1.25rem; } - .md\:-right-96 { - right: -24rem; + .md\:left-6 { + left: 1.5rem; } - .md\:-bottom-96 { - bottom: -24rem; + .md\:left-7 { + left: 1.75rem; } - .md\:-left-96 { - left: -24rem; + .md\:left-8 { + left: 2rem; } - .md\:-top-px { - top: -1px; + .md\:left-9 { + left: 2.25rem; } - .md\:-right-px { - right: -1px; + .md\:left-10 { + left: 2.5rem; } - .md\:-bottom-px { - bottom: -1px; + .md\:left-11 { + left: 2.75rem; } - .md\:-left-px { - left: -1px; + .md\:left-12 { + left: 3rem; } - .md\:-top-0\.5 { - top: -0.125rem; + .md\:left-14 { + left: 3.5rem; } - .md\:-right-0\.5 { - right: -0.125rem; + .md\:left-16 { + left: 4rem; } - .md\:-bottom-0\.5 { - bottom: -0.125rem; + .md\:left-20 { + left: 5rem; } - .md\:-left-0\.5 { - left: -0.125rem; + .md\:left-24 { + left: 6rem; } - .md\:-top-1\.5 { - top: -0.375rem; + .md\:left-28 { + left: 7rem; } - .md\:-right-1\.5 { - right: -0.375rem; + .md\:left-32 { + left: 8rem; } - .md\:-bottom-1\.5 { - bottom: -0.375rem; + .md\:left-36 { + left: 9rem; } - .md\:-left-1\.5 { - left: -0.375rem; + .md\:left-40 { + left: 10rem; } - .md\:-top-2\.5 { - top: -0.625rem; + .md\:left-44 { + left: 11rem; } - .md\:-right-2\.5 { - right: -0.625rem; + .md\:left-48 { + left: 12rem; } - .md\:-bottom-2\.5 { - bottom: -0.625rem; + .md\:left-52 { + left: 13rem; } - .md\:-left-2\.5 { - left: -0.625rem; + .md\:left-56 { + left: 14rem; } - .md\:-top-3\.5 { - top: -0.875rem; + .md\:left-60 { + left: 15rem; } - .md\:-right-3\.5 { - right: -0.875rem; + .md\:left-64 { + left: 16rem; } - .md\:-bottom-3\.5 { - bottom: -0.875rem; + .md\:left-72 { + left: 18rem; } - .md\:-left-3\.5 { - left: -0.875rem; + .md\:left-80 { + left: 20rem; } - .md\:top-1\/2 { - top: 50%; + .md\:left-96 { + left: 24rem; } - .md\:right-1\/2 { - right: 50%; + .md\:left-auto { + left: auto; } - .md\:bottom-1\/2 { - bottom: 50%; + .md\:left-px { + left: 1px; } - .md\:left-1\/2 { - left: 50%; + .md\:left-0\.5 { + left: 0.125rem; } - .md\:top-1\/3 { - top: 33.333333%; + .md\:left-1\.5 { + left: 0.375rem; } - .md\:right-1\/3 { - right: 33.333333%; + .md\:left-2\.5 { + left: 0.625rem; } - .md\:bottom-1\/3 { - bottom: 33.333333%; + .md\:left-3\.5 { + left: 0.875rem; } - .md\:left-1\/3 { - left: 33.333333%; + .md\:-left-0 { + left: 0px; } - .md\:top-2\/3 { - top: 66.666667%; + .md\:-left-1 { + left: -0.25rem; } - .md\:right-2\/3 { - right: 66.666667%; + .md\:-left-2 { + left: -0.5rem; } - .md\:bottom-2\/3 { - bottom: 66.666667%; + .md\:-left-3 { + left: -0.75rem; } - .md\:left-2\/3 { - left: 66.666667%; + .md\:-left-4 { + left: -1rem; } - .md\:top-1\/4 { - top: 25%; + .md\:-left-5 { + left: -1.25rem; } - .md\:right-1\/4 { - right: 25%; + .md\:-left-6 { + left: -1.5rem; } - .md\:bottom-1\/4 { - bottom: 25%; + .md\:-left-7 { + left: -1.75rem; } - .md\:left-1\/4 { - left: 25%; + .md\:-left-8 { + left: -2rem; } - .md\:top-2\/4 { - top: 50%; + .md\:-left-9 { + left: -2.25rem; } - .md\:right-2\/4 { - right: 50%; + .md\:-left-10 { + left: -2.5rem; } - .md\:bottom-2\/4 { - bottom: 50%; + .md\:-left-11 { + left: -2.75rem; } - .md\:left-2\/4 { - left: 50%; + .md\:-left-12 { + left: -3rem; } - .md\:top-3\/4 { - top: 75%; + .md\:-left-14 { + left: -3.5rem; } - .md\:right-3\/4 { - right: 75%; + .md\:-left-16 { + left: -4rem; } - .md\:bottom-3\/4 { - bottom: 75%; + .md\:-left-20 { + left: -5rem; } - .md\:left-3\/4 { - left: 75%; + .md\:-left-24 { + left: -6rem; } - .md\:top-full { - top: 100%; + .md\:-left-28 { + left: -7rem; } - .md\:right-full { - right: 100%; + .md\:-left-32 { + left: -8rem; } - .md\:bottom-full { - bottom: 100%; + .md\:-left-36 { + left: -9rem; } - .md\:left-full { - left: 100%; + .md\:-left-40 { + left: -10rem; } - .md\:-top-1\/2 { - top: -50%; + .md\:-left-44 { + left: -11rem; } - .md\:-right-1\/2 { - right: -50%; + .md\:-left-48 { + left: -12rem; } - .md\:-bottom-1\/2 { - bottom: -50%; + .md\:-left-52 { + left: -13rem; } - .md\:-left-1\/2 { - left: -50%; + .md\:-left-56 { + left: -14rem; } - .md\:-top-1\/3 { - top: -33.333333%; + .md\:-left-60 { + left: -15rem; } - .md\:-right-1\/3 { - right: -33.333333%; + .md\:-left-64 { + left: -16rem; } - .md\:-bottom-1\/3 { - bottom: -33.333333%; + .md\:-left-72 { + left: -18rem; } - .md\:-left-1\/3 { - left: -33.333333%; + .md\:-left-80 { + left: -20rem; } - .md\:-top-2\/3 { - top: -66.666667%; + .md\:-left-96 { + left: -24rem; } - .md\:-right-2\/3 { - right: -66.666667%; + .md\:-left-px { + left: -1px; } - .md\:-bottom-2\/3 { - bottom: -66.666667%; + .md\:-left-0\.5 { + left: -0.125rem; } - .md\:-left-2\/3 { - left: -66.666667%; + .md\:-left-1\.5 { + left: -0.375rem; } - .md\:-top-1\/4 { - top: -25%; + .md\:-left-2\.5 { + left: -0.625rem; } - .md\:-right-1\/4 { - right: -25%; + .md\:-left-3\.5 { + left: -0.875rem; } - .md\:-bottom-1\/4 { - bottom: -25%; + .md\:left-1\/2 { + left: 50%; } - .md\:-left-1\/4 { - left: -25%; + .md\:left-1\/3 { + left: 33.333333%; } - .md\:-top-2\/4 { - top: -50%; + .md\:left-2\/3 { + left: 66.666667%; } - .md\:-right-2\/4 { - right: -50%; + .md\:left-1\/4 { + left: 25%; } - .md\:-bottom-2\/4 { - bottom: -50%; + .md\:left-2\/4 { + left: 50%; } - .md\:-left-2\/4 { - left: -50%; + .md\:left-3\/4 { + left: 75%; } - .md\:-top-3\/4 { - top: -75%; + .md\:left-full { + left: 100%; } - .md\:-right-3\/4 { - right: -75%; + .md\:-left-1\/2 { + left: -50%; } - .md\:-bottom-3\/4 { - bottom: -75%; + .md\:-left-1\/3 { + left: -33.333333%; } - .md\:-left-3\/4 { - left: -75%; + .md\:-left-2\/3 { + left: -66.666667%; } - .md\:-top-full { - top: -100%; + .md\:-left-1\/4 { + left: -25%; } - .md\:-right-full { - right: -100%; + .md\:-left-2\/4 { + left: -50%; } - .md\:-bottom-full { - bottom: -100%; + .md\:-left-3\/4 { + left: -75%; } .md\:-left-full { @@ -62802,133 +62834,183 @@ video { --tw-scale-y: 1.5; } - .md\:scale-x-0 { + .md\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:scale-x-50 { + .md\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:scale-x-75 { + .md\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:scale-x-90 { + .md\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:scale-x-95 { + .md\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:scale-x-100 { + .md\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:scale-x-105 { + .md\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:scale-x-110 { + .md\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:scale-x-125 { + .md\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:scale-x-150 { + .md\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:scale-y-0 { + .md\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .md\:scale-y-50 { + .md\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .md\:scale-y-75 { + .md\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .md\:scale-y-90 { + .md\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .md\:scale-y-95 { + .md\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .md\:scale-y-100 { + .md\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .md\:scale-y-105 { + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .md\:scale-y-110 { + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .md\:scale-y-125 { + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .md\:scale-y-150 { + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .md\:hover\:scale-0:hover { + .md\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .md\:hover\:scale-50:hover { + .md\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .md\:hover\:scale-75:hover { + .md\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .md\:hover\:scale-90:hover { + .md\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .md\:hover\:scale-95:hover { + .md\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .md\:hover\:scale-100:hover { + .md\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .md\:hover\:scale-105:hover { + .md\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .md\:hover\:scale-110:hover { + .md\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .md\:hover\:scale-125:hover { + .md\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .md\:hover\:scale-150:hover { + .md\:scale-x-150 { --tw-scale-x: 1.5; + } + + .md\:scale-y-0 { + --tw-scale-y: 0; + } + + .md\:scale-y-50 { + --tw-scale-y: .5; + } + + .md\:scale-y-75 { + --tw-scale-y: .75; + } + + .md\:scale-y-90 { + --tw-scale-y: .9; + } + + .md\:scale-y-95 { + --tw-scale-y: .95; + } + + .md\:scale-y-100 { + --tw-scale-y: 1; + } + + .md\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .md\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .md\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .md\:scale-y-150 { --tw-scale-y: 1.5; } @@ -63012,56 +63094,6 @@ video { --tw-scale-y: 1.5; } - .md\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .md\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .md\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .md\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .md\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .md\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .md\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .md\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .md\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .md\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .md\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -63954,436 +63986,640 @@ video { row-gap: 0.875rem; } - .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .md\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .md\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .md\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .md\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .md\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .md\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .md\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .md\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .md\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .md\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .md\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .md\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .md\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .md\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .md\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .md\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .md\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .md\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .md\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .md\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .md\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .md\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .md\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .md\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .md\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -64392,408 +64628,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -64802,66 +64834,66 @@ video { --tw-space-x-reverse: 1; } - .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .md\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -69713,2188 +69745,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .md\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .md\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .md\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .md\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .md\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .md\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .md\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .md\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .md\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .md\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .md\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .md\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .md\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .md\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .md\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .md\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .md\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .md\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .md\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .md\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .md\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .md\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .md\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .md\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .md\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .md\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .md\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .md\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .md\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .md\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .md\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .md\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .md\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .md\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .md\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .md\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .md\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .md\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .md\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .md\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .md\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .md\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .md\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .md\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .md\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .md\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .md\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .md\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .md\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .md\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .md\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .md\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .md\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .md\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .md\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .md\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .md\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .md\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .md\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .md\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .md\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .md\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .md\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .md\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .md\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .md\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .md\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .md\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .md\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .md\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .md\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .md\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .md\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .md\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .md\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .md\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .md\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .md\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .md\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .md\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .md\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .md\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .md\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .md\:to-transparent { - --tw-gradient-to: transparent; + .md\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:to-current { - --tw-gradient-to: currentColor; + .md\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:to-black { - --tw-gradient-to: #000; + .md\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:to-white { - --tw-gradient-to: #fff; + .md\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .md\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .md\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .md\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .md\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .md\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:to-gray-500 { - --tw-gradient-to: #6b7280; + .md\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:to-gray-600 { - --tw-gradient-to: #4b5563; + .md\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:to-gray-700 { - --tw-gradient-to: #374151; + .md\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:to-gray-800 { - --tw-gradient-to: #1f2937; + .md\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:to-gray-900 { - --tw-gradient-to: #111827; + .md\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:to-red-50 { - --tw-gradient-to: #fef2f2; + .md\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:to-red-100 { - --tw-gradient-to: #fee2e2; + .md\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:to-red-200 { - --tw-gradient-to: #fecaca; + .md\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:to-red-300 { - --tw-gradient-to: #fca5a5; + .md\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:to-red-400 { - --tw-gradient-to: #f87171; + .md\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:to-red-500 { - --tw-gradient-to: #ef4444; + .md\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:to-red-600 { - --tw-gradient-to: #dc2626; + .md\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:to-red-700 { - --tw-gradient-to: #b91c1c; + .md\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:to-red-800 { - --tw-gradient-to: #991b1b; + .md\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .md\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .md\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .md\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .md\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .md\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .md\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .md\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:to-yellow-600 { - --tw-gradient-to: #d97706; + .md\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:to-yellow-700 { - --tw-gradient-to: #b45309; + .md\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:to-yellow-800 { - --tw-gradient-to: #92400e; + .md\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:to-yellow-900 { - --tw-gradient-to: #78350f; + .md\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .md\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:to-green-100 { - --tw-gradient-to: #d1fae5; + .md\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .md\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .md\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:to-green-400 { - --tw-gradient-to: #34d399; + .md\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:to-green-500 { - --tw-gradient-to: #10b981; + .md\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:to-green-600 { - --tw-gradient-to: #059669; + .md\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:to-green-700 { - --tw-gradient-to: #047857; + .md\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:to-green-800 { - --tw-gradient-to: #065f46; + .md\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:to-green-900 { - --tw-gradient-to: #064e3b; + .md\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .md\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .md\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .md\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .md\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .md\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .md\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:to-blue-600 { - --tw-gradient-to: #2563eb; + .md\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .md\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:to-blue-800 { - --tw-gradient-to: #1e40af; + .md\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .md\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .md\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .md\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .md\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .md\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .md\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .md\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .md\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .md\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .md\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:to-indigo-900 { - --tw-gradient-to: #312e81; + .md\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .md\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .md\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .md\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .md\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .md\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .md\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .md\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .md\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .md\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .md\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .md\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .md\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .md\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .md\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:to-pink-400 { - --tw-gradient-to: #f472b6; + .md\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:to-pink-500 { - --tw-gradient-to: #ec4899; + .md\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:to-pink-600 { - --tw-gradient-to: #db2777; + .md\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:to-pink-700 { - --tw-gradient-to: #be185d; + .md\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:to-pink-800 { - --tw-gradient-to: #9d174d; + .md\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:to-pink-900 { - --tw-gradient-to: #831843; + .md\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:hover\:from-transparent:hover { + .md\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:from-current:hover { + .md\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:from-black:hover { + .md\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:from-white:hover { + .md\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:from-gray-50:hover { + .md\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:hover\:from-gray-100:hover { + .md\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:hover\:from-gray-200:hover { + .md\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:hover\:from-gray-300:hover { + .md\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:hover\:from-gray-400:hover { + .md\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:hover\:from-gray-500:hover { + .md\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:hover\:from-gray-600:hover { + .md\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:hover\:from-gray-700:hover { + .md\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:hover\:from-gray-800:hover { + .md\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:hover\:from-gray-900:hover { + .md\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:hover\:from-red-50:hover { + .md\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:hover\:from-red-100:hover { + .md\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:hover\:from-red-200:hover { + .md\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:hover\:from-red-300:hover { + .md\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:hover\:from-red-400:hover { + .md\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:hover\:from-red-500:hover { + .md\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:hover\:from-red-600:hover { + .md\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:hover\:from-red-700:hover { + .md\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:hover\:from-red-800:hover { + .md\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:hover\:from-red-900:hover { + .md\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:hover\:from-yellow-50:hover { + .md\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:hover\:from-yellow-100:hover { + .md\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:hover\:from-yellow-200:hover { + .md\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:hover\:from-yellow-300:hover { + .md\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:hover\:from-yellow-400:hover { + .md\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:hover\:from-yellow-500:hover { + .md\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:hover\:from-yellow-600:hover { + .md\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:hover\:from-yellow-700:hover { + .md\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:hover\:from-yellow-800:hover { + .md\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:hover\:from-yellow-900:hover { + .md\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:hover\:from-green-50:hover { + .md\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:hover\:from-green-100:hover { + .md\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:hover\:from-green-200:hover { + .md\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:hover\:from-green-300:hover { + .md\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:hover\:from-green-400:hover { + .md\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:hover\:from-green-500:hover { + .md\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:hover\:from-green-600:hover { + .md\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:hover\:from-green-700:hover { + .md\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:hover\:from-green-800:hover { + .md\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:hover\:from-green-900:hover { + .md\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:hover\:from-blue-50:hover { + .md\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:hover\:from-blue-100:hover { + .md\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:hover\:from-blue-200:hover { + .md\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:hover\:from-blue-300:hover { + .md\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:hover\:from-blue-400:hover { + .md\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:hover\:from-blue-500:hover { + .md\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:hover\:from-blue-600:hover { + .md\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:hover\:from-blue-700:hover { + .md\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:hover\:from-blue-800:hover { + .md\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:hover\:from-blue-900:hover { + .md\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:hover\:from-indigo-50:hover { + .md\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:hover\:from-indigo-100:hover { + .md\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:hover\:from-indigo-200:hover { + .md\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:hover\:from-indigo-300:hover { + .md\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:hover\:from-indigo-400:hover { + .md\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:hover\:from-indigo-500:hover { + .md\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:hover\:from-indigo-600:hover { + .md\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:hover\:from-indigo-700:hover { + .md\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:hover\:from-indigo-800:hover { + .md\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:hover\:from-indigo-900:hover { + .md\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:hover\:from-purple-50:hover { + .md\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:hover\:from-purple-100:hover { + .md\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:hover\:from-purple-200:hover { + .md\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:hover\:from-purple-300:hover { + .md\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:hover\:from-purple-400:hover { + .md\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:hover\:from-purple-500:hover { + .md\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:hover\:from-purple-600:hover { + .md\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:hover\:from-purple-700:hover { + .md\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:hover\:from-purple-800:hover { + .md\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:hover\:from-purple-900:hover { + .md\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:hover\:from-pink-50:hover { + .md\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:hover\:from-pink-100:hover { + .md\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:hover\:from-pink-200:hover { + .md\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:hover\:from-pink-300:hover { + .md\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:hover\:from-pink-400:hover { + .md\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:hover\:from-pink-500:hover { + .md\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:hover\:from-pink-600:hover { + .md\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:hover\:from-pink-700:hover { + .md\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:hover\:from-pink-800:hover { + .md\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:hover\:from-pink-900:hover { + .md\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:hover\:via-transparent:hover { + .md\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:via-current:hover { + .md\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:via-black:hover { + .md\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:via-white:hover { + .md\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:via-gray-50:hover { + .md\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:hover\:via-gray-100:hover { + .md\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:hover\:via-gray-200:hover { + .md\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:hover\:via-gray-300:hover { + .md\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:hover\:via-gray-400:hover { + .md\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:hover\:via-gray-500:hover { + .md\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:hover\:via-gray-600:hover { + .md\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:hover\:via-gray-700:hover { + .md\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:hover\:via-gray-800:hover { + .md\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:hover\:via-gray-900:hover { + .md\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:hover\:via-red-50:hover { + .md\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:hover\:via-red-100:hover { + .md\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:hover\:via-red-200:hover { + .md\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:hover\:via-red-300:hover { + .md\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:hover\:via-red-400:hover { + .md\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:hover\:via-red-500:hover { + .md\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:hover\:via-red-600:hover { + .md\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:hover\:via-red-700:hover { + .md\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:hover\:via-red-800:hover { + .md\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:hover\:via-red-900:hover { + .md\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:hover\:via-yellow-50:hover { + .md\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:hover\:via-yellow-100:hover { + .md\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:hover\:via-yellow-200:hover { + .md\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:hover\:via-yellow-300:hover { + .md\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:hover\:via-yellow-400:hover { + .md\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:hover\:via-yellow-500:hover { + .md\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:hover\:via-yellow-600:hover { + .md\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:hover\:via-yellow-700:hover { + .md\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:hover\:via-yellow-800:hover { + .md\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:hover\:via-yellow-900:hover { + .md\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:hover\:via-green-50:hover { + .md\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:hover\:via-green-100:hover { + .md\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:hover\:via-green-200:hover { + .md\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:hover\:via-green-300:hover { + .md\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:hover\:via-green-400:hover { + .md\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:hover\:via-green-500:hover { + .md\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:hover\:via-green-600:hover { + .md\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:hover\:via-green-700:hover { + .md\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:hover\:via-green-800:hover { + .md\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:hover\:via-green-900:hover { + .md\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:hover\:via-blue-50:hover { + .md\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:hover\:via-blue-100:hover { + .md\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:hover\:via-blue-200:hover { + .md\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:hover\:via-blue-300:hover { + .md\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:hover\:via-blue-400:hover { + .md\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:hover\:via-blue-500:hover { + .md\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:hover\:via-blue-600:hover { + .md\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:hover\:via-blue-700:hover { + .md\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:hover\:via-blue-800:hover { + .md\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:hover\:via-blue-900:hover { + .md\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:hover\:via-indigo-50:hover { + .md\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:hover\:via-indigo-100:hover { + .md\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:hover\:via-indigo-200:hover { + .md\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:hover\:via-indigo-300:hover { + .md\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:hover\:via-indigo-400:hover { + .md\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:hover\:via-indigo-500:hover { + .md\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:hover\:via-indigo-600:hover { + .md\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:hover\:via-indigo-700:hover { + .md\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:hover\:via-indigo-800:hover { + .md\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:hover\:via-indigo-900:hover { + .md\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:hover\:via-purple-50:hover { + .md\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:hover\:via-purple-100:hover { + .md\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:hover\:via-purple-200:hover { + .md\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:hover\:via-purple-300:hover { + .md\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:hover\:via-purple-400:hover { + .md\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:hover\:via-purple-500:hover { + .md\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:hover\:via-purple-600:hover { + .md\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:hover\:via-purple-700:hover { + .md\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:hover\:via-purple-800:hover { + .md\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:hover\:via-purple-900:hover { + .md\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:hover\:via-pink-50:hover { + .md\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:hover\:via-pink-100:hover { + .md\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:hover\:via-pink-200:hover { + .md\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:hover\:via-pink-300:hover { + .md\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:hover\:via-pink-400:hover { + .md\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:hover\:via-pink-500:hover { + .md\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:hover\:via-pink-600:hover { + .md\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:hover\:via-pink-700:hover { + .md\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:hover\:via-pink-800:hover { + .md\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:hover\:via-pink-900:hover { + .md\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .md\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .md\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .md\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .md\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .md\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .md\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .md\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .md\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .md\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .md\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .md\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .md\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .md\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .md\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .md\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .md\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .md\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .md\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .md\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .md\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .md\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .md\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .md\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .md\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .md\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .md\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .md\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .md\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .md\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .md\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .md\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .md\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .md\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .md\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .md\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .md\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .md\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .md\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .md\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .md\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .md\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .md\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .md\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .md\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .md\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .md\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .md\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .md\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .md\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .md\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .md\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .md\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .md\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .md\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .md\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .md\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .md\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .md\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .md\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .md\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .md\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .md\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .md\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .md\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .md\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .md\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .md\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .md\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .md\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .md\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .md\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .md\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .md\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .md\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .md\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .md\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .md\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .md\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .md\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .md\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .md\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .md\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .md\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .md\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .md\:focus\:via-transparent:focus { @@ -72233,6 +71593,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .md\:to-transparent { + --tw-gradient-to: transparent; + } + + .md\:to-current { + --tw-gradient-to: currentColor; + } + + .md\:to-black { + --tw-gradient-to: #000; + } + + .md\:to-white { + --tw-gradient-to: #fff; + } + + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .md\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .md\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .md\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .md\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .md\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .md\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .md\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .md\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .md\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .md\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .md\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .md\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .md\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .md\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .md\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .md\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .md\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .md\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .md\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .md\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .md\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .md\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .md\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .md\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .md\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .md\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .md\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .md\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .md\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .md\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .md\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .md\:to-green-600 { + --tw-gradient-to: #059669; + } + + .md\:to-green-700 { + --tw-gradient-to: #047857; + } + + .md\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .md\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .md\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .md\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .md\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .md\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .md\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .md\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .md\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .md\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .md\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .md\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .md\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .md\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .md\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .md\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .md\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .md\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .md\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .md\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .md\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .md\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .md\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .md\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .md\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .md\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .md\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .md\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .md\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .md\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .md\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .md\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .md\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .md\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .md\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .md\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .md\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .md\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .md\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .md\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .md\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .md\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .md\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .md\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .md\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .md\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .md\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .md\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .md\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .md\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .md\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .md\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .md\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .md\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .md\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .md\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .md\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .md\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .md\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .md\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .md\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .md\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .md\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .md\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -77248,10 +77280,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:ring-inset { - --tw-ring-inset: inset; - } - .md\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -77288,10 +77316,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .md\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -77328,6 +77352,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .md\:ring-inset { + --tw-ring-inset: inset; + } + + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .md\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -80088,6 +80120,38 @@ video { backdrop-filter: none; } + .md\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .md\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .md\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .md\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .md\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .md\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .md\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .md\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .md\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -80997,116 +81061,541 @@ video { left: -0.375rem; } - .lg\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .lg\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .lg\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .lg\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .lg\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .lg\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .lg\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .lg\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .lg\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .lg\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .lg\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .lg\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .lg\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .lg\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .lg\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .lg\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .lg\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .lg\:inset-x-0 { + left: 0px; + right: 0px; + } + + .lg\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .lg\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .lg\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .lg\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .lg\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .lg\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .lg\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .lg\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .lg\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .lg\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .lg\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .lg\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .lg\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .lg\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .lg\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .lg\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .lg\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .lg\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .lg\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .lg\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .lg\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .lg\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .lg\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .lg\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .lg\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .lg\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .lg\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .lg\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .lg\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .lg\:inset-x-auto { + left: auto; + right: auto; + } + + .lg\:inset-x-px { + left: 1px; + right: 1px; + } + + .lg\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .lg\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .lg\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .lg\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .lg\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .lg\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .lg\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .lg\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .lg\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .lg\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .lg\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .lg\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .lg\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .lg\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .lg\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .lg\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .lg\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .lg\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .lg\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .lg\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .lg\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .lg\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .lg\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .lg\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .lg\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .lg\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .lg\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .lg\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .lg\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .lg\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .lg\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .lg\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .lg\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .lg\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .lg\:-inset-x-px { + left: -1px; + right: -1px; + } + + .lg\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .lg\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .lg\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .lg\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .lg\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .lg\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .lg\:inset-x-1\/2 { left: 50%; + right: 50%; } - .lg\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .lg\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .lg\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .lg\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .lg\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .lg\:inset-x-1\/4 { left: 25%; + right: 25%; } - .lg\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .lg\:inset-x-2\/4 { left: 50%; + right: 50%; } - .lg\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .lg\:inset-x-3\/4 { left: 75%; + right: 75%; } - .lg\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .lg\:inset-x-full { left: 100%; + right: 100%; } - .lg\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .lg\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .lg\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .lg\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .lg\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .lg\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .lg\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .lg\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .lg\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .lg\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .lg\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .lg\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .lg\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .lg\:-inset-x-full { left: -100%; + right: -100%; } .lg\:inset-y-0 { @@ -81114,2205 +81603,1780 @@ video { bottom: 0px; } - .lg\:inset-x-0 { - right: 0px; - left: 0px; - } - .lg\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .lg\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .lg\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .lg\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .lg\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .lg\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .lg\:inset-y-4 { top: 1rem; bottom: 1rem; } - .lg\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .lg\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .lg\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .lg\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .lg\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .lg\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .lg\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .lg\:inset-y-8 { top: 2rem; bottom: 2rem; } - .lg\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .lg\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .lg\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .lg\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .lg\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .lg\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .lg\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .lg\:inset-y-12 { top: 3rem; bottom: 3rem; } - .lg\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .lg\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .lg\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .lg\:inset-y-16 { top: 4rem; bottom: 4rem; } - .lg\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .lg\:inset-y-20 { top: 5rem; bottom: 5rem; } - .lg\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .lg\:inset-y-24 { top: 6rem; bottom: 6rem; } - .lg\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .lg\:inset-y-28 { top: 7rem; bottom: 7rem; } - .lg\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .lg\:inset-y-32 { top: 8rem; bottom: 8rem; } - .lg\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .lg\:inset-y-36 { top: 9rem; bottom: 9rem; } - .lg\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .lg\:inset-y-40 { top: 10rem; bottom: 10rem; } - .lg\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .lg\:inset-y-44 { top: 11rem; bottom: 11rem; } - .lg\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .lg\:inset-y-48 { top: 12rem; bottom: 12rem; } - .lg\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .lg\:inset-y-52 { top: 13rem; bottom: 13rem; } - .lg\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .lg\:inset-y-56 { top: 14rem; bottom: 14rem; } - .lg\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .lg\:inset-y-60 { top: 15rem; bottom: 15rem; } - .lg\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .lg\:inset-y-64 { top: 16rem; bottom: 16rem; } - .lg\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .lg\:inset-y-72 { top: 18rem; bottom: 18rem; } - .lg\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .lg\:inset-y-80 { top: 20rem; bottom: 20rem; } - .lg\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .lg\:inset-y-96 { top: 24rem; bottom: 24rem; } - .lg\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .lg\:inset-y-auto { top: auto; bottom: auto; } - .lg\:inset-x-auto { - right: auto; - left: auto; - } - .lg\:inset-y-px { top: 1px; bottom: 1px; } - .lg\:inset-x-px { - right: 1px; - left: 1px; - } - .lg\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .lg\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .lg\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .lg\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .lg\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .lg\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .lg\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .lg\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .lg\:-inset-y-0 { top: 0px; bottom: 0px; } - .lg\:-inset-x-0 { - right: 0px; - left: 0px; - } - .lg\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .lg\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .lg\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .lg\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .lg\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .lg\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .lg\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .lg\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .lg\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .lg\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .lg\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .lg\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .lg\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .lg\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .lg\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .lg\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .lg\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .lg\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .lg\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .lg\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .lg\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .lg\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .lg\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .lg\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .lg\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .lg\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .lg\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .lg\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .lg\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .lg\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .lg\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .lg\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .lg\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .lg\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .lg\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .lg\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .lg\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .lg\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .lg\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .lg\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .lg\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .lg\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .lg\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .lg\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .lg\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .lg\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .lg\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .lg\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .lg\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .lg\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .lg\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .lg\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .lg\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .lg\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .lg\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .lg\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .lg\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .lg\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .lg\:-inset-y-px { top: -1px; bottom: -1px; } - .lg\:-inset-x-px { - right: -1px; - left: -1px; - } - .lg\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .lg\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .lg\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .lg\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .lg\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .lg\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .lg\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .lg\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .lg\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .lg\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .lg\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .lg\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .lg\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .lg\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .lg\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .lg\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .lg\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .lg\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .lg\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .lg\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .lg\:inset-y-full { top: 100%; bottom: 100%; } - .lg\:inset-x-full { - right: 100%; - left: 100%; - } - .lg\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .lg\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .lg\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .lg\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .lg\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .lg\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .lg\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .lg\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .lg\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .lg\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .lg\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .lg\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .lg\:-inset-y-full { top: -100%; bottom: -100%; } - .lg\:-inset-x-full { - right: -100%; - left: -100%; - } - .lg\:top-0 { top: 0px; } - .lg\:right-0 { - right: 0px; + .lg\:top-1 { + top: 0.25rem; } - .lg\:bottom-0 { - bottom: 0px; + .lg\:top-2 { + top: 0.5rem; } - .lg\:left-0 { - left: 0px; + .lg\:top-3 { + top: 0.75rem; } - .lg\:top-1 { - top: 0.25rem; + .lg\:top-4 { + top: 1rem; } - .lg\:right-1 { - right: 0.25rem; + .lg\:top-5 { + top: 1.25rem; } - .lg\:bottom-1 { - bottom: 0.25rem; + .lg\:top-6 { + top: 1.5rem; } - .lg\:left-1 { - left: 0.25rem; + .lg\:top-7 { + top: 1.75rem; } - .lg\:top-2 { - top: 0.5rem; + .lg\:top-8 { + top: 2rem; } - .lg\:right-2 { - right: 0.5rem; + .lg\:top-9 { + top: 2.25rem; } - .lg\:bottom-2 { - bottom: 0.5rem; + .lg\:top-10 { + top: 2.5rem; } - .lg\:left-2 { - left: 0.5rem; + .lg\:top-11 { + top: 2.75rem; } - .lg\:top-3 { - top: 0.75rem; + .lg\:top-12 { + top: 3rem; } - .lg\:right-3 { - right: 0.75rem; + .lg\:top-14 { + top: 3.5rem; } - .lg\:bottom-3 { - bottom: 0.75rem; + .lg\:top-16 { + top: 4rem; } - .lg\:left-3 { - left: 0.75rem; + .lg\:top-20 { + top: 5rem; } - .lg\:top-4 { - top: 1rem; + .lg\:top-24 { + top: 6rem; } - .lg\:right-4 { - right: 1rem; + .lg\:top-28 { + top: 7rem; } - .lg\:bottom-4 { - bottom: 1rem; + .lg\:top-32 { + top: 8rem; } - .lg\:left-4 { - left: 1rem; + .lg\:top-36 { + top: 9rem; } - .lg\:top-5 { - top: 1.25rem; + .lg\:top-40 { + top: 10rem; } - .lg\:right-5 { - right: 1.25rem; + .lg\:top-44 { + top: 11rem; } - .lg\:bottom-5 { - bottom: 1.25rem; + .lg\:top-48 { + top: 12rem; } - .lg\:left-5 { - left: 1.25rem; + .lg\:top-52 { + top: 13rem; } - .lg\:top-6 { - top: 1.5rem; + .lg\:top-56 { + top: 14rem; } - .lg\:right-6 { - right: 1.5rem; + .lg\:top-60 { + top: 15rem; } - .lg\:bottom-6 { - bottom: 1.5rem; + .lg\:top-64 { + top: 16rem; } - .lg\:left-6 { - left: 1.5rem; + .lg\:top-72 { + top: 18rem; } - .lg\:top-7 { - top: 1.75rem; + .lg\:top-80 { + top: 20rem; } - .lg\:right-7 { - right: 1.75rem; + .lg\:top-96 { + top: 24rem; } - .lg\:bottom-7 { - bottom: 1.75rem; + .lg\:top-auto { + top: auto; } - .lg\:left-7 { - left: 1.75rem; + .lg\:top-px { + top: 1px; } - .lg\:top-8 { - top: 2rem; + .lg\:top-0\.5 { + top: 0.125rem; } - .lg\:right-8 { - right: 2rem; + .lg\:top-1\.5 { + top: 0.375rem; } - .lg\:bottom-8 { - bottom: 2rem; + .lg\:top-2\.5 { + top: 0.625rem; } - .lg\:left-8 { - left: 2rem; + .lg\:top-3\.5 { + top: 0.875rem; } - .lg\:top-9 { - top: 2.25rem; + .lg\:-top-0 { + top: 0px; } - .lg\:right-9 { - right: 2.25rem; + .lg\:-top-1 { + top: -0.25rem; } - .lg\:bottom-9 { - bottom: 2.25rem; + .lg\:-top-2 { + top: -0.5rem; } - .lg\:left-9 { - left: 2.25rem; + .lg\:-top-3 { + top: -0.75rem; } - .lg\:top-10 { - top: 2.5rem; + .lg\:-top-4 { + top: -1rem; } - .lg\:right-10 { - right: 2.5rem; + .lg\:-top-5 { + top: -1.25rem; } - .lg\:bottom-10 { - bottom: 2.5rem; + .lg\:-top-6 { + top: -1.5rem; } - .lg\:left-10 { - left: 2.5rem; + .lg\:-top-7 { + top: -1.75rem; } - .lg\:top-11 { - top: 2.75rem; + .lg\:-top-8 { + top: -2rem; } - .lg\:right-11 { - right: 2.75rem; + .lg\:-top-9 { + top: -2.25rem; } - .lg\:bottom-11 { - bottom: 2.75rem; + .lg\:-top-10 { + top: -2.5rem; } - .lg\:left-11 { - left: 2.75rem; + .lg\:-top-11 { + top: -2.75rem; } - .lg\:top-12 { - top: 3rem; + .lg\:-top-12 { + top: -3rem; } - .lg\:right-12 { - right: 3rem; + .lg\:-top-14 { + top: -3.5rem; } - .lg\:bottom-12 { - bottom: 3rem; + .lg\:-top-16 { + top: -4rem; } - .lg\:left-12 { - left: 3rem; + .lg\:-top-20 { + top: -5rem; } - .lg\:top-14 { - top: 3.5rem; + .lg\:-top-24 { + top: -6rem; } - .lg\:right-14 { - right: 3.5rem; + .lg\:-top-28 { + top: -7rem; } - .lg\:bottom-14 { - bottom: 3.5rem; + .lg\:-top-32 { + top: -8rem; } - .lg\:left-14 { - left: 3.5rem; + .lg\:-top-36 { + top: -9rem; } - .lg\:top-16 { - top: 4rem; + .lg\:-top-40 { + top: -10rem; } - .lg\:right-16 { - right: 4rem; + .lg\:-top-44 { + top: -11rem; } - .lg\:bottom-16 { - bottom: 4rem; + .lg\:-top-48 { + top: -12rem; } - .lg\:left-16 { - left: 4rem; + .lg\:-top-52 { + top: -13rem; } - .lg\:top-20 { - top: 5rem; + .lg\:-top-56 { + top: -14rem; } - .lg\:right-20 { - right: 5rem; + .lg\:-top-60 { + top: -15rem; } - .lg\:bottom-20 { - bottom: 5rem; + .lg\:-top-64 { + top: -16rem; } - .lg\:left-20 { - left: 5rem; + .lg\:-top-72 { + top: -18rem; } - .lg\:top-24 { - top: 6rem; + .lg\:-top-80 { + top: -20rem; } - .lg\:right-24 { - right: 6rem; + .lg\:-top-96 { + top: -24rem; } - .lg\:bottom-24 { - bottom: 6rem; + .lg\:-top-px { + top: -1px; } - .lg\:left-24 { - left: 6rem; + .lg\:-top-0\.5 { + top: -0.125rem; } - .lg\:top-28 { - top: 7rem; + .lg\:-top-1\.5 { + top: -0.375rem; } - .lg\:right-28 { - right: 7rem; + .lg\:-top-2\.5 { + top: -0.625rem; } - .lg\:bottom-28 { - bottom: 7rem; + .lg\:-top-3\.5 { + top: -0.875rem; } - .lg\:left-28 { - left: 7rem; + .lg\:top-1\/2 { + top: 50%; } - .lg\:top-32 { - top: 8rem; + .lg\:top-1\/3 { + top: 33.333333%; } - .lg\:right-32 { - right: 8rem; + .lg\:top-2\/3 { + top: 66.666667%; } - .lg\:bottom-32 { - bottom: 8rem; + .lg\:top-1\/4 { + top: 25%; } - .lg\:left-32 { - left: 8rem; + .lg\:top-2\/4 { + top: 50%; } - .lg\:top-36 { - top: 9rem; + .lg\:top-3\/4 { + top: 75%; } - .lg\:right-36 { - right: 9rem; + .lg\:top-full { + top: 100%; } - .lg\:bottom-36 { - bottom: 9rem; + .lg\:-top-1\/2 { + top: -50%; } - .lg\:left-36 { - left: 9rem; + .lg\:-top-1\/3 { + top: -33.333333%; } - .lg\:top-40 { - top: 10rem; + .lg\:-top-2\/3 { + top: -66.666667%; } - .lg\:right-40 { - right: 10rem; + .lg\:-top-1\/4 { + top: -25%; } - .lg\:bottom-40 { - bottom: 10rem; + .lg\:-top-2\/4 { + top: -50%; } - .lg\:left-40 { - left: 10rem; + .lg\:-top-3\/4 { + top: -75%; } - .lg\:top-44 { - top: 11rem; + .lg\:-top-full { + top: -100%; } - .lg\:right-44 { - right: 11rem; + .lg\:right-0 { + right: 0px; } - .lg\:bottom-44 { - bottom: 11rem; + .lg\:right-1 { + right: 0.25rem; } - .lg\:left-44 { - left: 11rem; + .lg\:right-2 { + right: 0.5rem; } - .lg\:top-48 { - top: 12rem; + .lg\:right-3 { + right: 0.75rem; } - .lg\:right-48 { - right: 12rem; + .lg\:right-4 { + right: 1rem; } - .lg\:bottom-48 { - bottom: 12rem; + .lg\:right-5 { + right: 1.25rem; } - .lg\:left-48 { - left: 12rem; + .lg\:right-6 { + right: 1.5rem; } - .lg\:top-52 { - top: 13rem; + .lg\:right-7 { + right: 1.75rem; } - .lg\:right-52 { - right: 13rem; + .lg\:right-8 { + right: 2rem; } - .lg\:bottom-52 { - bottom: 13rem; + .lg\:right-9 { + right: 2.25rem; } - .lg\:left-52 { - left: 13rem; + .lg\:right-10 { + right: 2.5rem; } - .lg\:top-56 { - top: 14rem; + .lg\:right-11 { + right: 2.75rem; } - .lg\:right-56 { - right: 14rem; + .lg\:right-12 { + right: 3rem; } - .lg\:bottom-56 { - bottom: 14rem; + .lg\:right-14 { + right: 3.5rem; } - .lg\:left-56 { - left: 14rem; + .lg\:right-16 { + right: 4rem; } - .lg\:top-60 { - top: 15rem; + .lg\:right-20 { + right: 5rem; } - .lg\:right-60 { - right: 15rem; + .lg\:right-24 { + right: 6rem; } - .lg\:bottom-60 { - bottom: 15rem; + .lg\:right-28 { + right: 7rem; } - .lg\:left-60 { - left: 15rem; + .lg\:right-32 { + right: 8rem; } - .lg\:top-64 { - top: 16rem; + .lg\:right-36 { + right: 9rem; } - .lg\:right-64 { - right: 16rem; + .lg\:right-40 { + right: 10rem; } - .lg\:bottom-64 { - bottom: 16rem; + .lg\:right-44 { + right: 11rem; } - .lg\:left-64 { - left: 16rem; + .lg\:right-48 { + right: 12rem; } - .lg\:top-72 { - top: 18rem; + .lg\:right-52 { + right: 13rem; } - .lg\:right-72 { - right: 18rem; + .lg\:right-56 { + right: 14rem; } - .lg\:bottom-72 { - bottom: 18rem; + .lg\:right-60 { + right: 15rem; } - .lg\:left-72 { - left: 18rem; + .lg\:right-64 { + right: 16rem; } - .lg\:top-80 { - top: 20rem; + .lg\:right-72 { + right: 18rem; } .lg\:right-80 { right: 20rem; } - .lg\:bottom-80 { - bottom: 20rem; + .lg\:right-96 { + right: 24rem; } - .lg\:left-80 { - left: 20rem; + .lg\:right-auto { + right: auto; } - .lg\:top-96 { - top: 24rem; + .lg\:right-px { + right: 1px; } - .lg\:right-96 { - right: 24rem; + .lg\:right-0\.5 { + right: 0.125rem; } - .lg\:bottom-96 { - bottom: 24rem; + .lg\:right-1\.5 { + right: 0.375rem; } - .lg\:left-96 { - left: 24rem; + .lg\:right-2\.5 { + right: 0.625rem; } - .lg\:top-auto { - top: auto; + .lg\:right-3\.5 { + right: 0.875rem; } - .lg\:right-auto { - right: auto; + .lg\:-right-0 { + right: 0px; } - .lg\:bottom-auto { - bottom: auto; + .lg\:-right-1 { + right: -0.25rem; } - .lg\:left-auto { - left: auto; + .lg\:-right-2 { + right: -0.5rem; } - .lg\:top-px { - top: 1px; + .lg\:-right-3 { + right: -0.75rem; } - .lg\:right-px { - right: 1px; + .lg\:-right-4 { + right: -1rem; } - .lg\:bottom-px { - bottom: 1px; + .lg\:-right-5 { + right: -1.25rem; } - .lg\:left-px { - left: 1px; + .lg\:-right-6 { + right: -1.5rem; } - .lg\:top-0\.5 { - top: 0.125rem; + .lg\:-right-7 { + right: -1.75rem; } - .lg\:right-0\.5 { - right: 0.125rem; + .lg\:-right-8 { + right: -2rem; } - .lg\:bottom-0\.5 { - bottom: 0.125rem; + .lg\:-right-9 { + right: -2.25rem; } - .lg\:left-0\.5 { - left: 0.125rem; + .lg\:-right-10 { + right: -2.5rem; } - .lg\:top-1\.5 { - top: 0.375rem; + .lg\:-right-11 { + right: -2.75rem; } - .lg\:right-1\.5 { - right: 0.375rem; + .lg\:-right-12 { + right: -3rem; } - .lg\:bottom-1\.5 { - bottom: 0.375rem; + .lg\:-right-14 { + right: -3.5rem; } - .lg\:left-1\.5 { - left: 0.375rem; + .lg\:-right-16 { + right: -4rem; } - .lg\:top-2\.5 { - top: 0.625rem; + .lg\:-right-20 { + right: -5rem; } - .lg\:right-2\.5 { - right: 0.625rem; + .lg\:-right-24 { + right: -6rem; } - .lg\:bottom-2\.5 { - bottom: 0.625rem; + .lg\:-right-28 { + right: -7rem; } - .lg\:left-2\.5 { - left: 0.625rem; + .lg\:-right-32 { + right: -8rem; } - .lg\:top-3\.5 { - top: 0.875rem; + .lg\:-right-36 { + right: -9rem; } - .lg\:right-3\.5 { - right: 0.875rem; + .lg\:-right-40 { + right: -10rem; } - .lg\:bottom-3\.5 { - bottom: 0.875rem; + .lg\:-right-44 { + right: -11rem; } - .lg\:left-3\.5 { - left: 0.875rem; + .lg\:-right-48 { + right: -12rem; } - .lg\:-top-0 { - top: 0px; + .lg\:-right-52 { + right: -13rem; } - .lg\:-right-0 { - right: 0px; + .lg\:-right-56 { + right: -14rem; } - .lg\:-bottom-0 { - bottom: 0px; + .lg\:-right-60 { + right: -15rem; } - .lg\:-left-0 { - left: 0px; + .lg\:-right-64 { + right: -16rem; } - .lg\:-top-1 { - top: -0.25rem; + .lg\:-right-72 { + right: -18rem; } - .lg\:-right-1 { - right: -0.25rem; + .lg\:-right-80 { + right: -20rem; } - .lg\:-bottom-1 { - bottom: -0.25rem; + .lg\:-right-96 { + right: -24rem; } - .lg\:-left-1 { - left: -0.25rem; + .lg\:-right-px { + right: -1px; } - .lg\:-top-2 { - top: -0.5rem; + .lg\:-right-0\.5 { + right: -0.125rem; } - .lg\:-right-2 { - right: -0.5rem; + .lg\:-right-1\.5 { + right: -0.375rem; } - .lg\:-bottom-2 { - bottom: -0.5rem; + .lg\:-right-2\.5 { + right: -0.625rem; } - .lg\:-left-2 { - left: -0.5rem; + .lg\:-right-3\.5 { + right: -0.875rem; } - .lg\:-top-3 { - top: -0.75rem; + .lg\:right-1\/2 { + right: 50%; } - .lg\:-right-3 { - right: -0.75rem; + .lg\:right-1\/3 { + right: 33.333333%; } - .lg\:-bottom-3 { - bottom: -0.75rem; + .lg\:right-2\/3 { + right: 66.666667%; } - .lg\:-left-3 { - left: -0.75rem; + .lg\:right-1\/4 { + right: 25%; } - .lg\:-top-4 { - top: -1rem; + .lg\:right-2\/4 { + right: 50%; } - .lg\:-right-4 { - right: -1rem; + .lg\:right-3\/4 { + right: 75%; } - .lg\:-bottom-4 { - bottom: -1rem; + .lg\:right-full { + right: 100%; } - .lg\:-left-4 { - left: -1rem; + .lg\:-right-1\/2 { + right: -50%; } - .lg\:-top-5 { - top: -1.25rem; + .lg\:-right-1\/3 { + right: -33.333333%; } - .lg\:-right-5 { - right: -1.25rem; + .lg\:-right-2\/3 { + right: -66.666667%; } - .lg\:-bottom-5 { - bottom: -1.25rem; + .lg\:-right-1\/4 { + right: -25%; } - .lg\:-left-5 { - left: -1.25rem; + .lg\:-right-2\/4 { + right: -50%; } - .lg\:-top-6 { - top: -1.5rem; + .lg\:-right-3\/4 { + right: -75%; } - .lg\:-right-6 { - right: -1.5rem; + .lg\:-right-full { + right: -100%; } - .lg\:-bottom-6 { - bottom: -1.5rem; + .lg\:bottom-0 { + bottom: 0px; } - .lg\:-left-6 { - left: -1.5rem; + .lg\:bottom-1 { + bottom: 0.25rem; } - .lg\:-top-7 { - top: -1.75rem; + .lg\:bottom-2 { + bottom: 0.5rem; } - .lg\:-right-7 { - right: -1.75rem; + .lg\:bottom-3 { + bottom: 0.75rem; } - .lg\:-bottom-7 { - bottom: -1.75rem; + .lg\:bottom-4 { + bottom: 1rem; } - .lg\:-left-7 { - left: -1.75rem; + .lg\:bottom-5 { + bottom: 1.25rem; } - .lg\:-top-8 { - top: -2rem; + .lg\:bottom-6 { + bottom: 1.5rem; } - .lg\:-right-8 { - right: -2rem; + .lg\:bottom-7 { + bottom: 1.75rem; } - .lg\:-bottom-8 { - bottom: -2rem; + .lg\:bottom-8 { + bottom: 2rem; } - .lg\:-left-8 { - left: -2rem; + .lg\:bottom-9 { + bottom: 2.25rem; } - .lg\:-top-9 { - top: -2.25rem; + .lg\:bottom-10 { + bottom: 2.5rem; } - .lg\:-right-9 { - right: -2.25rem; + .lg\:bottom-11 { + bottom: 2.75rem; } - .lg\:-bottom-9 { - bottom: -2.25rem; + .lg\:bottom-12 { + bottom: 3rem; } - .lg\:-left-9 { - left: -2.25rem; + .lg\:bottom-14 { + bottom: 3.5rem; } - .lg\:-top-10 { - top: -2.5rem; + .lg\:bottom-16 { + bottom: 4rem; } - .lg\:-right-10 { - right: -2.5rem; + .lg\:bottom-20 { + bottom: 5rem; } - .lg\:-bottom-10 { - bottom: -2.5rem; + .lg\:bottom-24 { + bottom: 6rem; } - .lg\:-left-10 { - left: -2.5rem; + .lg\:bottom-28 { + bottom: 7rem; } - .lg\:-top-11 { - top: -2.75rem; + .lg\:bottom-32 { + bottom: 8rem; } - .lg\:-right-11 { - right: -2.75rem; + .lg\:bottom-36 { + bottom: 9rem; } - .lg\:-bottom-11 { - bottom: -2.75rem; + .lg\:bottom-40 { + bottom: 10rem; } - .lg\:-left-11 { - left: -2.75rem; + .lg\:bottom-44 { + bottom: 11rem; } - .lg\:-top-12 { - top: -3rem; + .lg\:bottom-48 { + bottom: 12rem; } - .lg\:-right-12 { - right: -3rem; + .lg\:bottom-52 { + bottom: 13rem; } - .lg\:-bottom-12 { - bottom: -3rem; + .lg\:bottom-56 { + bottom: 14rem; } - .lg\:-left-12 { - left: -3rem; + .lg\:bottom-60 { + bottom: 15rem; } - .lg\:-top-14 { - top: -3.5rem; + .lg\:bottom-64 { + bottom: 16rem; } - .lg\:-right-14 { - right: -3.5rem; + .lg\:bottom-72 { + bottom: 18rem; } - .lg\:-bottom-14 { - bottom: -3.5rem; + .lg\:bottom-80 { + bottom: 20rem; } - .lg\:-left-14 { - left: -3.5rem; + .lg\:bottom-96 { + bottom: 24rem; } - .lg\:-top-16 { - top: -4rem; + .lg\:bottom-auto { + bottom: auto; } - .lg\:-right-16 { - right: -4rem; + .lg\:bottom-px { + bottom: 1px; } - .lg\:-bottom-16 { - bottom: -4rem; + .lg\:bottom-0\.5 { + bottom: 0.125rem; } - .lg\:-left-16 { - left: -4rem; + .lg\:bottom-1\.5 { + bottom: 0.375rem; } - .lg\:-top-20 { - top: -5rem; + .lg\:bottom-2\.5 { + bottom: 0.625rem; } - .lg\:-right-20 { - right: -5rem; + .lg\:bottom-3\.5 { + bottom: 0.875rem; } - .lg\:-bottom-20 { - bottom: -5rem; + .lg\:-bottom-0 { + bottom: 0px; } - .lg\:-left-20 { - left: -5rem; + .lg\:-bottom-1 { + bottom: -0.25rem; } - .lg\:-top-24 { - top: -6rem; + .lg\:-bottom-2 { + bottom: -0.5rem; } - .lg\:-right-24 { - right: -6rem; + .lg\:-bottom-3 { + bottom: -0.75rem; } - .lg\:-bottom-24 { - bottom: -6rem; + .lg\:-bottom-4 { + bottom: -1rem; } - .lg\:-left-24 { - left: -6rem; + .lg\:-bottom-5 { + bottom: -1.25rem; } - .lg\:-top-28 { - top: -7rem; + .lg\:-bottom-6 { + bottom: -1.5rem; } - .lg\:-right-28 { - right: -7rem; + .lg\:-bottom-7 { + bottom: -1.75rem; } - .lg\:-bottom-28 { - bottom: -7rem; + .lg\:-bottom-8 { + bottom: -2rem; } - .lg\:-left-28 { - left: -7rem; + .lg\:-bottom-9 { + bottom: -2.25rem; } - .lg\:-top-32 { - top: -8rem; + .lg\:-bottom-10 { + bottom: -2.5rem; } - .lg\:-right-32 { - right: -8rem; + .lg\:-bottom-11 { + bottom: -2.75rem; } - .lg\:-bottom-32 { - bottom: -8rem; + .lg\:-bottom-12 { + bottom: -3rem; } - .lg\:-left-32 { - left: -8rem; + .lg\:-bottom-14 { + bottom: -3.5rem; } - .lg\:-top-36 { - top: -9rem; + .lg\:-bottom-16 { + bottom: -4rem; } - .lg\:-right-36 { - right: -9rem; + .lg\:-bottom-20 { + bottom: -5rem; } - .lg\:-bottom-36 { - bottom: -9rem; + .lg\:-bottom-24 { + bottom: -6rem; } - .lg\:-left-36 { - left: -9rem; + .lg\:-bottom-28 { + bottom: -7rem; } - .lg\:-top-40 { - top: -10rem; + .lg\:-bottom-32 { + bottom: -8rem; } - .lg\:-right-40 { - right: -10rem; + .lg\:-bottom-36 { + bottom: -9rem; } .lg\:-bottom-40 { bottom: -10rem; } - .lg\:-left-40 { - left: -10rem; + .lg\:-bottom-44 { + bottom: -11rem; } - .lg\:-top-44 { - top: -11rem; + .lg\:-bottom-48 { + bottom: -12rem; } - .lg\:-right-44 { - right: -11rem; + .lg\:-bottom-52 { + bottom: -13rem; } - .lg\:-bottom-44 { - bottom: -11rem; + .lg\:-bottom-56 { + bottom: -14rem; } - .lg\:-left-44 { - left: -11rem; + .lg\:-bottom-60 { + bottom: -15rem; } - .lg\:-top-48 { - top: -12rem; + .lg\:-bottom-64 { + bottom: -16rem; } - .lg\:-right-48 { - right: -12rem; + .lg\:-bottom-72 { + bottom: -18rem; } - .lg\:-bottom-48 { - bottom: -12rem; + .lg\:-bottom-80 { + bottom: -20rem; } - .lg\:-left-48 { - left: -12rem; + .lg\:-bottom-96 { + bottom: -24rem; } - .lg\:-top-52 { - top: -13rem; + .lg\:-bottom-px { + bottom: -1px; } - .lg\:-right-52 { - right: -13rem; + .lg\:-bottom-0\.5 { + bottom: -0.125rem; } - .lg\:-bottom-52 { - bottom: -13rem; + .lg\:-bottom-1\.5 { + bottom: -0.375rem; } - .lg\:-left-52 { - left: -13rem; + .lg\:-bottom-2\.5 { + bottom: -0.625rem; } - .lg\:-top-56 { - top: -14rem; + .lg\:-bottom-3\.5 { + bottom: -0.875rem; } - .lg\:-right-56 { - right: -14rem; + .lg\:bottom-1\/2 { + bottom: 50%; } - .lg\:-bottom-56 { - bottom: -14rem; + .lg\:bottom-1\/3 { + bottom: 33.333333%; } - .lg\:-left-56 { - left: -14rem; + .lg\:bottom-2\/3 { + bottom: 66.666667%; } - .lg\:-top-60 { - top: -15rem; + .lg\:bottom-1\/4 { + bottom: 25%; } - .lg\:-right-60 { - right: -15rem; + .lg\:bottom-2\/4 { + bottom: 50%; } - .lg\:-bottom-60 { - bottom: -15rem; + .lg\:bottom-3\/4 { + bottom: 75%; } - .lg\:-left-60 { - left: -15rem; + .lg\:bottom-full { + bottom: 100%; } - .lg\:-top-64 { - top: -16rem; + .lg\:-bottom-1\/2 { + bottom: -50%; } - .lg\:-right-64 { - right: -16rem; + .lg\:-bottom-1\/3 { + bottom: -33.333333%; } - .lg\:-bottom-64 { - bottom: -16rem; + .lg\:-bottom-2\/3 { + bottom: -66.666667%; } - .lg\:-left-64 { - left: -16rem; + .lg\:-bottom-1\/4 { + bottom: -25%; } - .lg\:-top-72 { - top: -18rem; + .lg\:-bottom-2\/4 { + bottom: -50%; } - .lg\:-right-72 { - right: -18rem; + .lg\:-bottom-3\/4 { + bottom: -75%; } - .lg\:-bottom-72 { - bottom: -18rem; + .lg\:-bottom-full { + bottom: -100%; } - .lg\:-left-72 { - left: -18rem; + .lg\:left-0 { + left: 0px; } - .lg\:-top-80 { - top: -20rem; + .lg\:left-1 { + left: 0.25rem; } - .lg\:-right-80 { - right: -20rem; + .lg\:left-2 { + left: 0.5rem; } - .lg\:-bottom-80 { - bottom: -20rem; + .lg\:left-3 { + left: 0.75rem; } - .lg\:-left-80 { - left: -20rem; + .lg\:left-4 { + left: 1rem; } - .lg\:-top-96 { - top: -24rem; + .lg\:left-5 { + left: 1.25rem; } - .lg\:-right-96 { - right: -24rem; + .lg\:left-6 { + left: 1.5rem; } - .lg\:-bottom-96 { - bottom: -24rem; + .lg\:left-7 { + left: 1.75rem; } - .lg\:-left-96 { - left: -24rem; + .lg\:left-8 { + left: 2rem; } - .lg\:-top-px { - top: -1px; + .lg\:left-9 { + left: 2.25rem; } - .lg\:-right-px { - right: -1px; + .lg\:left-10 { + left: 2.5rem; } - .lg\:-bottom-px { - bottom: -1px; + .lg\:left-11 { + left: 2.75rem; } - .lg\:-left-px { - left: -1px; + .lg\:left-12 { + left: 3rem; } - .lg\:-top-0\.5 { - top: -0.125rem; + .lg\:left-14 { + left: 3.5rem; } - .lg\:-right-0\.5 { - right: -0.125rem; + .lg\:left-16 { + left: 4rem; } - .lg\:-bottom-0\.5 { - bottom: -0.125rem; + .lg\:left-20 { + left: 5rem; } - .lg\:-left-0\.5 { - left: -0.125rem; + .lg\:left-24 { + left: 6rem; } - .lg\:-top-1\.5 { - top: -0.375rem; + .lg\:left-28 { + left: 7rem; } - .lg\:-right-1\.5 { - right: -0.375rem; + .lg\:left-32 { + left: 8rem; } - .lg\:-bottom-1\.5 { - bottom: -0.375rem; + .lg\:left-36 { + left: 9rem; } - .lg\:-left-1\.5 { - left: -0.375rem; + .lg\:left-40 { + left: 10rem; } - .lg\:-top-2\.5 { - top: -0.625rem; + .lg\:left-44 { + left: 11rem; } - .lg\:-right-2\.5 { - right: -0.625rem; + .lg\:left-48 { + left: 12rem; } - .lg\:-bottom-2\.5 { - bottom: -0.625rem; + .lg\:left-52 { + left: 13rem; } - .lg\:-left-2\.5 { - left: -0.625rem; + .lg\:left-56 { + left: 14rem; } - .lg\:-top-3\.5 { - top: -0.875rem; + .lg\:left-60 { + left: 15rem; } - .lg\:-right-3\.5 { - right: -0.875rem; + .lg\:left-64 { + left: 16rem; } - .lg\:-bottom-3\.5 { - bottom: -0.875rem; + .lg\:left-72 { + left: 18rem; } - .lg\:-left-3\.5 { - left: -0.875rem; + .lg\:left-80 { + left: 20rem; } - .lg\:top-1\/2 { - top: 50%; + .lg\:left-96 { + left: 24rem; } - .lg\:right-1\/2 { - right: 50%; + .lg\:left-auto { + left: auto; } - .lg\:bottom-1\/2 { - bottom: 50%; + .lg\:left-px { + left: 1px; } - .lg\:left-1\/2 { - left: 50%; + .lg\:left-0\.5 { + left: 0.125rem; } - .lg\:top-1\/3 { - top: 33.333333%; + .lg\:left-1\.5 { + left: 0.375rem; } - .lg\:right-1\/3 { - right: 33.333333%; + .lg\:left-2\.5 { + left: 0.625rem; } - .lg\:bottom-1\/3 { - bottom: 33.333333%; + .lg\:left-3\.5 { + left: 0.875rem; } - .lg\:left-1\/3 { - left: 33.333333%; + .lg\:-left-0 { + left: 0px; } - .lg\:top-2\/3 { - top: 66.666667%; + .lg\:-left-1 { + left: -0.25rem; } - .lg\:right-2\/3 { - right: 66.666667%; + .lg\:-left-2 { + left: -0.5rem; } - .lg\:bottom-2\/3 { - bottom: 66.666667%; + .lg\:-left-3 { + left: -0.75rem; } - .lg\:left-2\/3 { - left: 66.666667%; + .lg\:-left-4 { + left: -1rem; } - .lg\:top-1\/4 { - top: 25%; + .lg\:-left-5 { + left: -1.25rem; } - .lg\:right-1\/4 { - right: 25%; + .lg\:-left-6 { + left: -1.5rem; } - .lg\:bottom-1\/4 { - bottom: 25%; + .lg\:-left-7 { + left: -1.75rem; } - .lg\:left-1\/4 { - left: 25%; + .lg\:-left-8 { + left: -2rem; } - .lg\:top-2\/4 { - top: 50%; + .lg\:-left-9 { + left: -2.25rem; } - .lg\:right-2\/4 { - right: 50%; + .lg\:-left-10 { + left: -2.5rem; } - .lg\:bottom-2\/4 { - bottom: 50%; + .lg\:-left-11 { + left: -2.75rem; } - .lg\:left-2\/4 { - left: 50%; + .lg\:-left-12 { + left: -3rem; } - .lg\:top-3\/4 { - top: 75%; + .lg\:-left-14 { + left: -3.5rem; } - .lg\:right-3\/4 { - right: 75%; + .lg\:-left-16 { + left: -4rem; } - .lg\:bottom-3\/4 { - bottom: 75%; + .lg\:-left-20 { + left: -5rem; } - .lg\:left-3\/4 { - left: 75%; + .lg\:-left-24 { + left: -6rem; } - .lg\:top-full { - top: 100%; + .lg\:-left-28 { + left: -7rem; } - .lg\:right-full { - right: 100%; + .lg\:-left-32 { + left: -8rem; } - .lg\:bottom-full { - bottom: 100%; + .lg\:-left-36 { + left: -9rem; } - .lg\:left-full { - left: 100%; + .lg\:-left-40 { + left: -10rem; } - .lg\:-top-1\/2 { - top: -50%; + .lg\:-left-44 { + left: -11rem; } - .lg\:-right-1\/2 { - right: -50%; + .lg\:-left-48 { + left: -12rem; } - .lg\:-bottom-1\/2 { - bottom: -50%; + .lg\:-left-52 { + left: -13rem; } - .lg\:-left-1\/2 { - left: -50%; + .lg\:-left-56 { + left: -14rem; } - .lg\:-top-1\/3 { - top: -33.333333%; + .lg\:-left-60 { + left: -15rem; } - .lg\:-right-1\/3 { - right: -33.333333%; + .lg\:-left-64 { + left: -16rem; } - .lg\:-bottom-1\/3 { - bottom: -33.333333%; + .lg\:-left-72 { + left: -18rem; } - .lg\:-left-1\/3 { - left: -33.333333%; + .lg\:-left-80 { + left: -20rem; } - .lg\:-top-2\/3 { - top: -66.666667%; + .lg\:-left-96 { + left: -24rem; } - .lg\:-right-2\/3 { - right: -66.666667%; + .lg\:-left-px { + left: -1px; } - .lg\:-bottom-2\/3 { - bottom: -66.666667%; + .lg\:-left-0\.5 { + left: -0.125rem; } - .lg\:-left-2\/3 { - left: -66.666667%; + .lg\:-left-1\.5 { + left: -0.375rem; } - .lg\:-top-1\/4 { - top: -25%; + .lg\:-left-2\.5 { + left: -0.625rem; } - .lg\:-right-1\/4 { - right: -25%; + .lg\:-left-3\.5 { + left: -0.875rem; } - .lg\:-bottom-1\/4 { - bottom: -25%; + .lg\:left-1\/2 { + left: 50%; } - .lg\:-left-1\/4 { - left: -25%; + .lg\:left-1\/3 { + left: 33.333333%; } - .lg\:-top-2\/4 { - top: -50%; + .lg\:left-2\/3 { + left: 66.666667%; } - .lg\:-right-2\/4 { - right: -50%; + .lg\:left-1\/4 { + left: 25%; } - .lg\:-bottom-2\/4 { - bottom: -50%; + .lg\:left-2\/4 { + left: 50%; } - .lg\:-left-2\/4 { - left: -50%; + .lg\:left-3\/4 { + left: 75%; } - .lg\:-top-3\/4 { - top: -75%; + .lg\:left-full { + left: 100%; } - .lg\:-right-3\/4 { - right: -75%; + .lg\:-left-1\/2 { + left: -50%; } - .lg\:-bottom-3\/4 { - bottom: -75%; + .lg\:-left-1\/3 { + left: -33.333333%; } - .lg\:-left-3\/4 { - left: -75%; + .lg\:-left-2\/3 { + left: -66.666667%; } - .lg\:-top-full { - top: -100%; + .lg\:-left-1\/4 { + left: -25%; } - .lg\:-right-full { - right: -100%; + .lg\:-left-2\/4 { + left: -50%; } - .lg\:-bottom-full { - bottom: -100%; + .lg\:-left-3\/4 { + left: -75%; } .lg\:-left-full { @@ -89369,133 +89433,183 @@ video { --tw-scale-y: 1.5; } - .lg\:scale-x-0 { + .lg\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:scale-x-50 { + .lg\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:scale-x-75 { + .lg\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:scale-x-90 { + .lg\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:scale-x-95 { + .lg\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:scale-x-100 { + .lg\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:scale-x-105 { + .lg\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:scale-x-110 { + .lg\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:scale-x-125 { + .lg\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:scale-x-150 { + .lg\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:scale-y-0 { + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .lg\:scale-y-50 { + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .lg\:scale-y-75 { + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .lg\:scale-y-90 { + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .lg\:scale-y-95 { + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .lg\:scale-y-100 { + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .lg\:scale-y-105 { + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .lg\:scale-y-110 { + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .lg\:scale-y-125 { + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .lg\:scale-y-150 { + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .lg\:hover\:scale-0:hover { + .lg\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .lg\:hover\:scale-50:hover { + .lg\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .lg\:hover\:scale-75:hover { + .lg\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .lg\:hover\:scale-90:hover { + .lg\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .lg\:hover\:scale-95:hover { + .lg\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .lg\:hover\:scale-100:hover { + .lg\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .lg\:hover\:scale-105:hover { + .lg\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .lg\:hover\:scale-110:hover { + .lg\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .lg\:hover\:scale-125:hover { + .lg\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .lg\:hover\:scale-150:hover { + .lg\:scale-x-150 { --tw-scale-x: 1.5; + } + + .lg\:scale-y-0 { + --tw-scale-y: 0; + } + + .lg\:scale-y-50 { + --tw-scale-y: .5; + } + + .lg\:scale-y-75 { + --tw-scale-y: .75; + } + + .lg\:scale-y-90 { + --tw-scale-y: .9; + } + + .lg\:scale-y-95 { + --tw-scale-y: .95; + } + + .lg\:scale-y-100 { + --tw-scale-y: 1; + } + + .lg\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .lg\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .lg\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .lg\:scale-y-150 { --tw-scale-y: 1.5; } @@ -89579,56 +89693,6 @@ video { --tw-scale-y: 1.5; } - .lg\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .lg\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .lg\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .lg\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .lg\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .lg\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .lg\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .lg\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .lg\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .lg\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .lg\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -90521,436 +90585,640 @@ video { row-gap: 0.875rem; } - .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .lg\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .lg\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .lg\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -90959,408 +91227,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -91369,66 +91433,66 @@ video { --tw-space-x-reverse: 1; } - .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -96280,2188 +96344,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .lg\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .lg\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .lg\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .lg\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .lg\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .lg\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .lg\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .lg\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .lg\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .lg\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .lg\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .lg\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .lg\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .lg\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .lg\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .lg\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .lg\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .lg\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .lg\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .lg\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .lg\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .lg\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .lg\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .lg\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .lg\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .lg\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .lg\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .lg\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .lg\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .lg\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .lg\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .lg\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .lg\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .lg\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .lg\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .lg\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .lg\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .lg\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .lg\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .lg\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .lg\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .lg\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .lg\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .lg\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .lg\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .lg\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .lg\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .lg\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .lg\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .lg\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .lg\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .lg\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .lg\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .lg\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .lg\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .lg\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .lg\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .lg\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .lg\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .lg\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .lg\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .lg\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .lg\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .lg\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .lg\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .lg\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .lg\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .lg\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .lg\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .lg\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .lg\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .lg\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .lg\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .lg\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .lg\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .lg\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .lg\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .lg\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .lg\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .lg\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .lg\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .lg\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .lg\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .lg\:to-transparent { - --tw-gradient-to: transparent; + .lg\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:to-current { - --tw-gradient-to: currentColor; + .lg\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:to-black { - --tw-gradient-to: #000; + .lg\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:to-white { - --tw-gradient-to: #fff; + .lg\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .lg\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .lg\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .lg\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .lg\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .lg\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:to-gray-500 { - --tw-gradient-to: #6b7280; + .lg\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:to-gray-600 { - --tw-gradient-to: #4b5563; + .lg\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:to-gray-700 { - --tw-gradient-to: #374151; + .lg\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:to-gray-800 { - --tw-gradient-to: #1f2937; + .lg\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:to-gray-900 { - --tw-gradient-to: #111827; + .lg\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:to-red-50 { - --tw-gradient-to: #fef2f2; + .lg\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:to-red-100 { - --tw-gradient-to: #fee2e2; + .lg\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:to-red-200 { - --tw-gradient-to: #fecaca; + .lg\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:to-red-300 { - --tw-gradient-to: #fca5a5; + .lg\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:to-red-400 { - --tw-gradient-to: #f87171; + .lg\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:to-red-500 { - --tw-gradient-to: #ef4444; + .lg\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:to-red-600 { - --tw-gradient-to: #dc2626; + .lg\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:to-red-700 { - --tw-gradient-to: #b91c1c; + .lg\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:to-red-800 { - --tw-gradient-to: #991b1b; + .lg\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .lg\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .lg\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .lg\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .lg\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .lg\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .lg\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .lg\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:to-yellow-600 { - --tw-gradient-to: #d97706; + .lg\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:to-yellow-700 { - --tw-gradient-to: #b45309; + .lg\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:to-yellow-800 { - --tw-gradient-to: #92400e; + .lg\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:to-yellow-900 { - --tw-gradient-to: #78350f; + .lg\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .lg\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:to-green-100 { - --tw-gradient-to: #d1fae5; + .lg\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .lg\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .lg\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:to-green-400 { - --tw-gradient-to: #34d399; + .lg\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:to-green-500 { - --tw-gradient-to: #10b981; + .lg\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:to-green-600 { - --tw-gradient-to: #059669; + .lg\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:to-green-700 { - --tw-gradient-to: #047857; + .lg\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:to-green-800 { - --tw-gradient-to: #065f46; + .lg\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:to-green-900 { - --tw-gradient-to: #064e3b; + .lg\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .lg\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .lg\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .lg\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .lg\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .lg\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .lg\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:to-blue-600 { - --tw-gradient-to: #2563eb; + .lg\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .lg\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:to-blue-800 { - --tw-gradient-to: #1e40af; + .lg\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .lg\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .lg\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .lg\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .lg\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .lg\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .lg\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .lg\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .lg\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .lg\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .lg\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:to-indigo-900 { - --tw-gradient-to: #312e81; + .lg\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .lg\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .lg\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .lg\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .lg\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .lg\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .lg\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .lg\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .lg\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .lg\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .lg\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .lg\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .lg\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .lg\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .lg\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:to-pink-400 { - --tw-gradient-to: #f472b6; + .lg\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:to-pink-500 { - --tw-gradient-to: #ec4899; + .lg\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:to-pink-600 { - --tw-gradient-to: #db2777; + .lg\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:to-pink-700 { - --tw-gradient-to: #be185d; + .lg\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:to-pink-800 { - --tw-gradient-to: #9d174d; + .lg\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:to-pink-900 { - --tw-gradient-to: #831843; + .lg\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:hover\:from-transparent:hover { + .lg\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:from-current:hover { + .lg\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:from-black:hover { + .lg\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:from-white:hover { + .lg\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:from-gray-50:hover { + .lg\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:hover\:from-gray-100:hover { + .lg\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:hover\:from-gray-200:hover { + .lg\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:hover\:from-gray-300:hover { + .lg\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:hover\:from-gray-400:hover { + .lg\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:hover\:from-gray-500:hover { + .lg\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:hover\:from-gray-600:hover { + .lg\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:hover\:from-gray-700:hover { + .lg\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:hover\:from-gray-800:hover { + .lg\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:hover\:from-gray-900:hover { + .lg\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:hover\:from-red-50:hover { + .lg\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:hover\:from-red-100:hover { + .lg\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:hover\:from-red-200:hover { + .lg\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:hover\:from-red-300:hover { + .lg\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:hover\:from-red-400:hover { + .lg\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:hover\:from-red-500:hover { + .lg\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:hover\:from-red-600:hover { + .lg\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:hover\:from-red-700:hover { + .lg\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:hover\:from-red-800:hover { + .lg\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:hover\:from-red-900:hover { + .lg\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:hover\:from-yellow-50:hover { + .lg\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:hover\:from-yellow-100:hover { + .lg\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:hover\:from-yellow-200:hover { + .lg\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:hover\:from-yellow-300:hover { + .lg\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:hover\:from-yellow-400:hover { + .lg\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:hover\:from-yellow-500:hover { + .lg\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:hover\:from-yellow-600:hover { + .lg\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:hover\:from-yellow-700:hover { + .lg\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:hover\:from-yellow-800:hover { + .lg\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:hover\:from-yellow-900:hover { + .lg\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:hover\:from-green-50:hover { + .lg\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:hover\:from-green-100:hover { + .lg\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:hover\:from-green-200:hover { + .lg\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:hover\:from-green-300:hover { + .lg\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:hover\:from-green-400:hover { + .lg\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:hover\:from-green-500:hover { + .lg\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:hover\:from-green-600:hover { + .lg\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:hover\:from-green-700:hover { + .lg\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:hover\:from-green-800:hover { + .lg\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:hover\:from-green-900:hover { + .lg\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:hover\:from-blue-50:hover { + .lg\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:hover\:from-blue-100:hover { + .lg\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:hover\:from-blue-200:hover { + .lg\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:hover\:from-blue-300:hover { + .lg\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:hover\:from-blue-400:hover { + .lg\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:hover\:from-blue-500:hover { + .lg\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:hover\:from-blue-600:hover { + .lg\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:hover\:from-blue-700:hover { + .lg\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:hover\:from-blue-800:hover { + .lg\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:hover\:from-blue-900:hover { + .lg\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:hover\:from-indigo-50:hover { + .lg\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:hover\:from-indigo-100:hover { + .lg\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:hover\:from-indigo-200:hover { + .lg\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:hover\:from-indigo-300:hover { + .lg\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:hover\:from-indigo-400:hover { + .lg\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:hover\:from-indigo-500:hover { + .lg\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:hover\:from-indigo-600:hover { + .lg\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:hover\:from-indigo-700:hover { + .lg\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:hover\:from-indigo-800:hover { + .lg\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:hover\:from-indigo-900:hover { + .lg\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:hover\:from-purple-50:hover { + .lg\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:hover\:from-purple-100:hover { + .lg\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:hover\:from-purple-200:hover { + .lg\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:hover\:from-purple-300:hover { + .lg\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:hover\:from-purple-400:hover { + .lg\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:hover\:from-purple-500:hover { + .lg\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:hover\:from-purple-600:hover { + .lg\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:hover\:from-purple-700:hover { + .lg\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:hover\:from-purple-800:hover { + .lg\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:hover\:from-purple-900:hover { + .lg\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:hover\:from-pink-50:hover { + .lg\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:hover\:from-pink-100:hover { + .lg\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:hover\:from-pink-200:hover { + .lg\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:hover\:from-pink-300:hover { + .lg\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:hover\:from-pink-400:hover { + .lg\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:hover\:from-pink-500:hover { + .lg\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:hover\:from-pink-600:hover { + .lg\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:hover\:from-pink-700:hover { + .lg\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:hover\:from-pink-800:hover { + .lg\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:hover\:from-pink-900:hover { + .lg\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:hover\:via-transparent:hover { + .lg\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:via-current:hover { + .lg\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:via-black:hover { + .lg\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:via-white:hover { + .lg\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:via-gray-50:hover { + .lg\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:hover\:via-gray-100:hover { + .lg\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:hover\:via-gray-200:hover { + .lg\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:hover\:via-gray-300:hover { + .lg\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:hover\:via-gray-400:hover { + .lg\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:hover\:via-gray-500:hover { + .lg\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:hover\:via-gray-600:hover { + .lg\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:hover\:via-gray-700:hover { + .lg\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:hover\:via-gray-800:hover { + .lg\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:hover\:via-gray-900:hover { + .lg\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:hover\:via-red-50:hover { + .lg\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:hover\:via-red-100:hover { + .lg\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:hover\:via-red-200:hover { + .lg\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:hover\:via-red-300:hover { + .lg\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:hover\:via-red-400:hover { + .lg\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:hover\:via-red-500:hover { + .lg\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:hover\:via-red-600:hover { + .lg\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:hover\:via-red-700:hover { + .lg\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:hover\:via-red-800:hover { + .lg\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:hover\:via-red-900:hover { + .lg\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:hover\:via-yellow-50:hover { + .lg\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:hover\:via-yellow-100:hover { + .lg\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:hover\:via-yellow-200:hover { + .lg\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:hover\:via-yellow-300:hover { + .lg\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:hover\:via-yellow-400:hover { + .lg\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:hover\:via-yellow-500:hover { + .lg\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:hover\:via-yellow-600:hover { + .lg\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:hover\:via-yellow-700:hover { + .lg\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:hover\:via-yellow-800:hover { + .lg\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:hover\:via-yellow-900:hover { + .lg\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:hover\:via-green-50:hover { + .lg\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:hover\:via-green-100:hover { + .lg\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:hover\:via-green-200:hover { + .lg\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:hover\:via-green-300:hover { + .lg\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:hover\:via-green-400:hover { + .lg\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:hover\:via-green-500:hover { + .lg\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:hover\:via-green-600:hover { + .lg\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:hover\:via-green-700:hover { + .lg\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:hover\:via-green-800:hover { + .lg\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:hover\:via-green-900:hover { + .lg\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:hover\:via-blue-50:hover { + .lg\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:hover\:via-blue-100:hover { + .lg\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:hover\:via-blue-200:hover { + .lg\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:hover\:via-blue-300:hover { + .lg\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:hover\:via-blue-400:hover { + .lg\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:hover\:via-blue-500:hover { + .lg\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:hover\:via-blue-600:hover { + .lg\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:hover\:via-blue-700:hover { + .lg\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:hover\:via-blue-800:hover { + .lg\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:hover\:via-blue-900:hover { + .lg\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:hover\:via-indigo-50:hover { + .lg\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:hover\:via-indigo-100:hover { + .lg\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:hover\:via-indigo-200:hover { + .lg\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:hover\:via-indigo-300:hover { + .lg\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:hover\:via-indigo-400:hover { + .lg\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:hover\:via-indigo-500:hover { + .lg\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:hover\:via-indigo-600:hover { + .lg\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:hover\:via-indigo-700:hover { + .lg\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:hover\:via-indigo-800:hover { + .lg\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:hover\:via-indigo-900:hover { + .lg\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:hover\:via-purple-50:hover { + .lg\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:hover\:via-purple-100:hover { + .lg\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:hover\:via-purple-200:hover { + .lg\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:hover\:via-purple-300:hover { + .lg\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:hover\:via-purple-400:hover { + .lg\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:hover\:via-purple-500:hover { + .lg\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:hover\:via-purple-600:hover { + .lg\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:hover\:via-purple-700:hover { + .lg\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:hover\:via-purple-800:hover { + .lg\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:hover\:via-purple-900:hover { + .lg\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:hover\:via-pink-50:hover { + .lg\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:hover\:via-pink-100:hover { + .lg\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:hover\:via-pink-200:hover { + .lg\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:hover\:via-pink-300:hover { + .lg\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:hover\:via-pink-400:hover { + .lg\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:hover\:via-pink-500:hover { + .lg\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:hover\:via-pink-600:hover { + .lg\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:hover\:via-pink-700:hover { + .lg\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:hover\:via-pink-800:hover { + .lg\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:hover\:via-pink-900:hover { + .lg\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .lg\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .lg\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .lg\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .lg\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .lg\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .lg\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .lg\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .lg\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .lg\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .lg\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .lg\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .lg\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .lg\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .lg\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .lg\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .lg\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .lg\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .lg\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .lg\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .lg\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .lg\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .lg\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .lg\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .lg\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .lg\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .lg\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .lg\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .lg\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .lg\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .lg\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .lg\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .lg\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .lg\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .lg\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .lg\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .lg\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .lg\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .lg\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .lg\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .lg\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .lg\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .lg\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .lg\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .lg\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .lg\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .lg\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .lg\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .lg\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .lg\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .lg\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .lg\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .lg\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .lg\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .lg\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .lg\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .lg\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .lg\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .lg\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .lg\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .lg\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .lg\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .lg\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .lg\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .lg\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .lg\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .lg\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .lg\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .lg\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .lg\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .lg\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .lg\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .lg\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .lg\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .lg\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .lg\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .lg\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .lg\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .lg\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .lg\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .lg\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .lg\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .lg\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .lg\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .lg\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .lg\:focus\:via-transparent:focus { @@ -98800,6 +98192,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .lg\:to-transparent { + --tw-gradient-to: transparent; + } + + .lg\:to-current { + --tw-gradient-to: currentColor; + } + + .lg\:to-black { + --tw-gradient-to: #000; + } + + .lg\:to-white { + --tw-gradient-to: #fff; + } + + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .lg\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .lg\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .lg\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .lg\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .lg\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .lg\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .lg\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .lg\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .lg\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .lg\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .lg\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .lg\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .lg\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .lg\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .lg\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .lg\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .lg\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .lg\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .lg\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .lg\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .lg\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .lg\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .lg\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .lg\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .lg\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .lg\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .lg\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .lg\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .lg\:to-green-600 { + --tw-gradient-to: #059669; + } + + .lg\:to-green-700 { + --tw-gradient-to: #047857; + } + + .lg\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .lg\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .lg\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .lg\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .lg\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .lg\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .lg\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .lg\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .lg\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .lg\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .lg\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .lg\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .lg\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .lg\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .lg\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .lg\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .lg\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .lg\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .lg\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .lg\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .lg\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .lg\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .lg\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .lg\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .lg\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .lg\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .lg\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .lg\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .lg\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .lg\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .lg\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .lg\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .lg\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .lg\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .lg\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .lg\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .lg\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .lg\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .lg\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .lg\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .lg\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .lg\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .lg\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .lg\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .lg\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .lg\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .lg\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .lg\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .lg\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .lg\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .lg\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .lg\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .lg\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .lg\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .lg\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .lg\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .lg\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .lg\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .lg\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .lg\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .lg\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .lg\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .lg\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -103815,10 +103879,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:ring-inset { - --tw-ring-inset: inset; - } - .lg\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -103855,10 +103915,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .lg\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -103895,6 +103951,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .lg\:ring-inset { + --tw-ring-inset: inset; + } + + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .lg\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -106655,6 +106719,38 @@ video { backdrop-filter: none; } + .lg\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .lg\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .lg\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .lg\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .lg\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .lg\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .lg\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .lg\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .lg\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -107564,116 +107660,541 @@ video { left: -0.375rem; } - .xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .xl\:inset-x-0 { + left: 0px; + right: 0px; + } + + .xl\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .xl\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .xl\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .xl\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .xl\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .xl\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .xl\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .xl\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .xl\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .xl\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .xl\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .xl\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .xl\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .xl\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .xl\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .xl\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .xl\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .xl\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .xl\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .xl\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .xl\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .xl\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .xl\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .xl\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .xl\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .xl\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .xl\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .xl\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .xl\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .xl\:inset-x-auto { + left: auto; + right: auto; + } + + .xl\:inset-x-px { + left: 1px; + right: 1px; + } + + .xl\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .xl\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .xl\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .xl\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .xl\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .xl\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .xl\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .xl\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .xl\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .xl\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .xl\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .xl\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .xl\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .xl\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .xl\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .xl\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .xl\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .xl\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .xl\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .xl\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .xl\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .xl\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .xl\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .xl\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .xl\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .xl\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .xl\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .xl\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .xl\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .xl\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .xl\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .xl\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .xl\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .xl\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .xl\:-inset-x-px { + left: -1px; + right: -1px; + } + + .xl\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .xl\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .xl\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .xl\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .xl\:inset-x-1\/2 { left: 50%; + right: 50%; } - .xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .xl\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .xl\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .xl\:inset-x-1\/4 { left: 25%; + right: 25%; } - .xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .xl\:inset-x-2\/4 { left: 50%; + right: 50%; } - .xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .xl\:inset-x-3\/4 { left: 75%; + right: 75%; } - .xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .xl\:inset-x-full { left: 100%; + right: 100%; } - .xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .xl\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .xl\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .xl\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .xl\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .xl\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .xl\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .xl\:-inset-x-full { left: -100%; + right: -100%; } .xl\:inset-y-0 { @@ -107681,2205 +108202,1780 @@ video { bottom: 0px; } - .xl\:inset-x-0 { - right: 0px; - left: 0px; - } - .xl\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .xl\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .xl\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .xl\:inset-y-4 { top: 1rem; bottom: 1rem; } - .xl\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .xl\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .xl\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .xl\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .xl\:inset-y-8 { top: 2rem; bottom: 2rem; } - .xl\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .xl\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .xl\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .xl\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .xl\:inset-y-12 { top: 3rem; bottom: 3rem; } - .xl\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .xl\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .xl\:inset-y-16 { top: 4rem; bottom: 4rem; } - .xl\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .xl\:inset-y-20 { top: 5rem; bottom: 5rem; } - .xl\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .xl\:inset-y-24 { top: 6rem; bottom: 6rem; } - .xl\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .xl\:inset-y-28 { top: 7rem; bottom: 7rem; } - .xl\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .xl\:inset-y-32 { top: 8rem; bottom: 8rem; } - .xl\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .xl\:inset-y-36 { top: 9rem; bottom: 9rem; } - .xl\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .xl\:inset-y-40 { top: 10rem; bottom: 10rem; } - .xl\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .xl\:inset-y-44 { top: 11rem; bottom: 11rem; } - .xl\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .xl\:inset-y-48 { top: 12rem; bottom: 12rem; } - .xl\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .xl\:inset-y-52 { top: 13rem; bottom: 13rem; } - .xl\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .xl\:inset-y-56 { top: 14rem; bottom: 14rem; } - .xl\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .xl\:inset-y-60 { top: 15rem; bottom: 15rem; } - .xl\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .xl\:inset-y-64 { top: 16rem; bottom: 16rem; } - .xl\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .xl\:inset-y-72 { top: 18rem; bottom: 18rem; } - .xl\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .xl\:inset-y-80 { top: 20rem; bottom: 20rem; } - .xl\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .xl\:inset-y-96 { top: 24rem; bottom: 24rem; } - .xl\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .xl\:inset-y-auto { top: auto; bottom: auto; } - .xl\:inset-x-auto { - right: auto; - left: auto; - } - .xl\:inset-y-px { top: 1px; bottom: 1px; } - .xl\:inset-x-px { - right: 1px; - left: 1px; - } - .xl\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .xl\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .xl\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .xl\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .xl\:-inset-y-0 { top: 0px; bottom: 0px; } - .xl\:-inset-x-0 { - right: 0px; - left: 0px; - } - .xl\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .xl\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .xl\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .xl\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .xl\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .xl\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .xl\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .xl\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .xl\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .xl\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .xl\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .xl\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .xl\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .xl\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .xl\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .xl\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .xl\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .xl\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .xl\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .xl\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .xl\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .xl\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .xl\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .xl\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .xl\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .xl\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .xl\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .xl\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .xl\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .xl\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .xl\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .xl\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .xl\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .xl\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .xl\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .xl\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .xl\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .xl\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .xl\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .xl\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .xl\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .xl\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .xl\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .xl\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .xl\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .xl\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .xl\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .xl\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .xl\:-inset-y-px { top: -1px; bottom: -1px; } - .xl\:-inset-x-px { - right: -1px; - left: -1px; - } - .xl\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .xl\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .xl\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .xl\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .xl\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .xl\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .xl\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .xl\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .xl\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .xl\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .xl\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .xl\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .xl\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .xl\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .xl\:inset-y-full { top: 100%; bottom: 100%; } - .xl\:inset-x-full { - right: 100%; - left: 100%; - } - .xl\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .xl\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .xl\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .xl\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .xl\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .xl\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .xl\:-inset-y-full { top: -100%; bottom: -100%; } - .xl\:-inset-x-full { - right: -100%; - left: -100%; - } - .xl\:top-0 { top: 0px; } - .xl\:right-0 { - right: 0px; + .xl\:top-1 { + top: 0.25rem; } - .xl\:bottom-0 { - bottom: 0px; + .xl\:top-2 { + top: 0.5rem; } - .xl\:left-0 { - left: 0px; + .xl\:top-3 { + top: 0.75rem; } - .xl\:top-1 { - top: 0.25rem; + .xl\:top-4 { + top: 1rem; } - .xl\:right-1 { - right: 0.25rem; + .xl\:top-5 { + top: 1.25rem; } - .xl\:bottom-1 { - bottom: 0.25rem; + .xl\:top-6 { + top: 1.5rem; } - .xl\:left-1 { - left: 0.25rem; + .xl\:top-7 { + top: 1.75rem; } - .xl\:top-2 { - top: 0.5rem; + .xl\:top-8 { + top: 2rem; } - .xl\:right-2 { - right: 0.5rem; + .xl\:top-9 { + top: 2.25rem; } - .xl\:bottom-2 { - bottom: 0.5rem; + .xl\:top-10 { + top: 2.5rem; } - .xl\:left-2 { - left: 0.5rem; + .xl\:top-11 { + top: 2.75rem; } - .xl\:top-3 { - top: 0.75rem; + .xl\:top-12 { + top: 3rem; } - .xl\:right-3 { - right: 0.75rem; + .xl\:top-14 { + top: 3.5rem; } - .xl\:bottom-3 { - bottom: 0.75rem; + .xl\:top-16 { + top: 4rem; } - .xl\:left-3 { - left: 0.75rem; + .xl\:top-20 { + top: 5rem; } - .xl\:top-4 { - top: 1rem; + .xl\:top-24 { + top: 6rem; } - .xl\:right-4 { - right: 1rem; + .xl\:top-28 { + top: 7rem; } - .xl\:bottom-4 { - bottom: 1rem; + .xl\:top-32 { + top: 8rem; } - .xl\:left-4 { - left: 1rem; + .xl\:top-36 { + top: 9rem; } - .xl\:top-5 { - top: 1.25rem; + .xl\:top-40 { + top: 10rem; } - .xl\:right-5 { - right: 1.25rem; + .xl\:top-44 { + top: 11rem; } - .xl\:bottom-5 { - bottom: 1.25rem; + .xl\:top-48 { + top: 12rem; } - .xl\:left-5 { - left: 1.25rem; + .xl\:top-52 { + top: 13rem; } - .xl\:top-6 { - top: 1.5rem; + .xl\:top-56 { + top: 14rem; } - .xl\:right-6 { - right: 1.5rem; + .xl\:top-60 { + top: 15rem; } - .xl\:bottom-6 { - bottom: 1.5rem; + .xl\:top-64 { + top: 16rem; } - .xl\:left-6 { - left: 1.5rem; + .xl\:top-72 { + top: 18rem; } - .xl\:top-7 { - top: 1.75rem; + .xl\:top-80 { + top: 20rem; } - .xl\:right-7 { - right: 1.75rem; + .xl\:top-96 { + top: 24rem; } - .xl\:bottom-7 { - bottom: 1.75rem; + .xl\:top-auto { + top: auto; } - .xl\:left-7 { - left: 1.75rem; + .xl\:top-px { + top: 1px; } - .xl\:top-8 { - top: 2rem; + .xl\:top-0\.5 { + top: 0.125rem; } - .xl\:right-8 { - right: 2rem; + .xl\:top-1\.5 { + top: 0.375rem; } - .xl\:bottom-8 { - bottom: 2rem; + .xl\:top-2\.5 { + top: 0.625rem; } - .xl\:left-8 { - left: 2rem; + .xl\:top-3\.5 { + top: 0.875rem; } - .xl\:top-9 { - top: 2.25rem; + .xl\:-top-0 { + top: 0px; } - .xl\:right-9 { - right: 2.25rem; + .xl\:-top-1 { + top: -0.25rem; } - .xl\:bottom-9 { - bottom: 2.25rem; + .xl\:-top-2 { + top: -0.5rem; } - .xl\:left-9 { - left: 2.25rem; + .xl\:-top-3 { + top: -0.75rem; } - .xl\:top-10 { - top: 2.5rem; + .xl\:-top-4 { + top: -1rem; } - .xl\:right-10 { - right: 2.5rem; + .xl\:-top-5 { + top: -1.25rem; } - .xl\:bottom-10 { - bottom: 2.5rem; + .xl\:-top-6 { + top: -1.5rem; } - .xl\:left-10 { - left: 2.5rem; + .xl\:-top-7 { + top: -1.75rem; } - .xl\:top-11 { - top: 2.75rem; + .xl\:-top-8 { + top: -2rem; } - .xl\:right-11 { - right: 2.75rem; + .xl\:-top-9 { + top: -2.25rem; } - .xl\:bottom-11 { - bottom: 2.75rem; + .xl\:-top-10 { + top: -2.5rem; } - .xl\:left-11 { - left: 2.75rem; + .xl\:-top-11 { + top: -2.75rem; } - .xl\:top-12 { - top: 3rem; + .xl\:-top-12 { + top: -3rem; } - .xl\:right-12 { - right: 3rem; + .xl\:-top-14 { + top: -3.5rem; } - .xl\:bottom-12 { - bottom: 3rem; + .xl\:-top-16 { + top: -4rem; } - .xl\:left-12 { - left: 3rem; + .xl\:-top-20 { + top: -5rem; } - .xl\:top-14 { - top: 3.5rem; + .xl\:-top-24 { + top: -6rem; } - .xl\:right-14 { - right: 3.5rem; + .xl\:-top-28 { + top: -7rem; } - .xl\:bottom-14 { - bottom: 3.5rem; + .xl\:-top-32 { + top: -8rem; } - .xl\:left-14 { - left: 3.5rem; + .xl\:-top-36 { + top: -9rem; } - .xl\:top-16 { - top: 4rem; + .xl\:-top-40 { + top: -10rem; } - .xl\:right-16 { - right: 4rem; + .xl\:-top-44 { + top: -11rem; } - .xl\:bottom-16 { - bottom: 4rem; + .xl\:-top-48 { + top: -12rem; } - .xl\:left-16 { - left: 4rem; + .xl\:-top-52 { + top: -13rem; } - .xl\:top-20 { - top: 5rem; + .xl\:-top-56 { + top: -14rem; } - .xl\:right-20 { - right: 5rem; + .xl\:-top-60 { + top: -15rem; } - .xl\:bottom-20 { - bottom: 5rem; + .xl\:-top-64 { + top: -16rem; } - .xl\:left-20 { - left: 5rem; + .xl\:-top-72 { + top: -18rem; } - .xl\:top-24 { - top: 6rem; + .xl\:-top-80 { + top: -20rem; } - .xl\:right-24 { - right: 6rem; + .xl\:-top-96 { + top: -24rem; } - .xl\:bottom-24 { - bottom: 6rem; + .xl\:-top-px { + top: -1px; } - .xl\:left-24 { - left: 6rem; + .xl\:-top-0\.5 { + top: -0.125rem; } - .xl\:top-28 { - top: 7rem; + .xl\:-top-1\.5 { + top: -0.375rem; } - .xl\:right-28 { - right: 7rem; + .xl\:-top-2\.5 { + top: -0.625rem; } - .xl\:bottom-28 { - bottom: 7rem; + .xl\:-top-3\.5 { + top: -0.875rem; } - .xl\:left-28 { - left: 7rem; + .xl\:top-1\/2 { + top: 50%; } - .xl\:top-32 { - top: 8rem; + .xl\:top-1\/3 { + top: 33.333333%; } - .xl\:right-32 { - right: 8rem; + .xl\:top-2\/3 { + top: 66.666667%; } - .xl\:bottom-32 { - bottom: 8rem; + .xl\:top-1\/4 { + top: 25%; } - .xl\:left-32 { - left: 8rem; + .xl\:top-2\/4 { + top: 50%; } - .xl\:top-36 { - top: 9rem; + .xl\:top-3\/4 { + top: 75%; } - .xl\:right-36 { - right: 9rem; + .xl\:top-full { + top: 100%; } - .xl\:bottom-36 { - bottom: 9rem; + .xl\:-top-1\/2 { + top: -50%; } - .xl\:left-36 { - left: 9rem; + .xl\:-top-1\/3 { + top: -33.333333%; } - .xl\:top-40 { - top: 10rem; + .xl\:-top-2\/3 { + top: -66.666667%; } - .xl\:right-40 { - right: 10rem; + .xl\:-top-1\/4 { + top: -25%; } - .xl\:bottom-40 { - bottom: 10rem; + .xl\:-top-2\/4 { + top: -50%; } - .xl\:left-40 { - left: 10rem; + .xl\:-top-3\/4 { + top: -75%; } - .xl\:top-44 { - top: 11rem; + .xl\:-top-full { + top: -100%; } - .xl\:right-44 { - right: 11rem; + .xl\:right-0 { + right: 0px; } - .xl\:bottom-44 { - bottom: 11rem; + .xl\:right-1 { + right: 0.25rem; } - .xl\:left-44 { - left: 11rem; + .xl\:right-2 { + right: 0.5rem; } - .xl\:top-48 { - top: 12rem; + .xl\:right-3 { + right: 0.75rem; } - .xl\:right-48 { - right: 12rem; + .xl\:right-4 { + right: 1rem; } - .xl\:bottom-48 { - bottom: 12rem; + .xl\:right-5 { + right: 1.25rem; } - .xl\:left-48 { - left: 12rem; + .xl\:right-6 { + right: 1.5rem; } - .xl\:top-52 { - top: 13rem; + .xl\:right-7 { + right: 1.75rem; } - .xl\:right-52 { - right: 13rem; + .xl\:right-8 { + right: 2rem; } - .xl\:bottom-52 { - bottom: 13rem; + .xl\:right-9 { + right: 2.25rem; } - .xl\:left-52 { - left: 13rem; + .xl\:right-10 { + right: 2.5rem; } - .xl\:top-56 { - top: 14rem; + .xl\:right-11 { + right: 2.75rem; } - .xl\:right-56 { - right: 14rem; + .xl\:right-12 { + right: 3rem; } - .xl\:bottom-56 { - bottom: 14rem; + .xl\:right-14 { + right: 3.5rem; } - .xl\:left-56 { - left: 14rem; + .xl\:right-16 { + right: 4rem; } - .xl\:top-60 { - top: 15rem; + .xl\:right-20 { + right: 5rem; } - .xl\:right-60 { - right: 15rem; + .xl\:right-24 { + right: 6rem; } - .xl\:bottom-60 { - bottom: 15rem; + .xl\:right-28 { + right: 7rem; } - .xl\:left-60 { - left: 15rem; + .xl\:right-32 { + right: 8rem; } - .xl\:top-64 { - top: 16rem; + .xl\:right-36 { + right: 9rem; } - .xl\:right-64 { - right: 16rem; + .xl\:right-40 { + right: 10rem; } - .xl\:bottom-64 { - bottom: 16rem; + .xl\:right-44 { + right: 11rem; } - .xl\:left-64 { - left: 16rem; + .xl\:right-48 { + right: 12rem; } - .xl\:top-72 { - top: 18rem; + .xl\:right-52 { + right: 13rem; } - .xl\:right-72 { - right: 18rem; + .xl\:right-56 { + right: 14rem; } - .xl\:bottom-72 { - bottom: 18rem; + .xl\:right-60 { + right: 15rem; } - .xl\:left-72 { - left: 18rem; + .xl\:right-64 { + right: 16rem; } - .xl\:top-80 { - top: 20rem; + .xl\:right-72 { + right: 18rem; } .xl\:right-80 { right: 20rem; } - .xl\:bottom-80 { - bottom: 20rem; + .xl\:right-96 { + right: 24rem; } - .xl\:left-80 { - left: 20rem; + .xl\:right-auto { + right: auto; } - .xl\:top-96 { - top: 24rem; + .xl\:right-px { + right: 1px; } - .xl\:right-96 { - right: 24rem; + .xl\:right-0\.5 { + right: 0.125rem; } - .xl\:bottom-96 { - bottom: 24rem; + .xl\:right-1\.5 { + right: 0.375rem; } - .xl\:left-96 { - left: 24rem; + .xl\:right-2\.5 { + right: 0.625rem; } - .xl\:top-auto { - top: auto; + .xl\:right-3\.5 { + right: 0.875rem; } - .xl\:right-auto { - right: auto; + .xl\:-right-0 { + right: 0px; } - .xl\:bottom-auto { - bottom: auto; + .xl\:-right-1 { + right: -0.25rem; } - .xl\:left-auto { - left: auto; + .xl\:-right-2 { + right: -0.5rem; } - .xl\:top-px { - top: 1px; + .xl\:-right-3 { + right: -0.75rem; } - .xl\:right-px { - right: 1px; + .xl\:-right-4 { + right: -1rem; } - .xl\:bottom-px { - bottom: 1px; + .xl\:-right-5 { + right: -1.25rem; } - .xl\:left-px { - left: 1px; + .xl\:-right-6 { + right: -1.5rem; } - .xl\:top-0\.5 { - top: 0.125rem; + .xl\:-right-7 { + right: -1.75rem; } - .xl\:right-0\.5 { - right: 0.125rem; + .xl\:-right-8 { + right: -2rem; } - .xl\:bottom-0\.5 { - bottom: 0.125rem; + .xl\:-right-9 { + right: -2.25rem; } - .xl\:left-0\.5 { - left: 0.125rem; + .xl\:-right-10 { + right: -2.5rem; } - .xl\:top-1\.5 { - top: 0.375rem; + .xl\:-right-11 { + right: -2.75rem; } - .xl\:right-1\.5 { - right: 0.375rem; + .xl\:-right-12 { + right: -3rem; } - .xl\:bottom-1\.5 { - bottom: 0.375rem; + .xl\:-right-14 { + right: -3.5rem; } - .xl\:left-1\.5 { - left: 0.375rem; + .xl\:-right-16 { + right: -4rem; } - .xl\:top-2\.5 { - top: 0.625rem; + .xl\:-right-20 { + right: -5rem; } - .xl\:right-2\.5 { - right: 0.625rem; + .xl\:-right-24 { + right: -6rem; } - .xl\:bottom-2\.5 { - bottom: 0.625rem; + .xl\:-right-28 { + right: -7rem; } - .xl\:left-2\.5 { - left: 0.625rem; + .xl\:-right-32 { + right: -8rem; } - .xl\:top-3\.5 { - top: 0.875rem; + .xl\:-right-36 { + right: -9rem; } - .xl\:right-3\.5 { - right: 0.875rem; + .xl\:-right-40 { + right: -10rem; } - .xl\:bottom-3\.5 { - bottom: 0.875rem; + .xl\:-right-44 { + right: -11rem; } - .xl\:left-3\.5 { - left: 0.875rem; + .xl\:-right-48 { + right: -12rem; } - .xl\:-top-0 { - top: 0px; + .xl\:-right-52 { + right: -13rem; } - .xl\:-right-0 { - right: 0px; + .xl\:-right-56 { + right: -14rem; } - .xl\:-bottom-0 { - bottom: 0px; + .xl\:-right-60 { + right: -15rem; } - .xl\:-left-0 { - left: 0px; + .xl\:-right-64 { + right: -16rem; } - .xl\:-top-1 { - top: -0.25rem; + .xl\:-right-72 { + right: -18rem; } - .xl\:-right-1 { - right: -0.25rem; + .xl\:-right-80 { + right: -20rem; } - .xl\:-bottom-1 { - bottom: -0.25rem; + .xl\:-right-96 { + right: -24rem; } - .xl\:-left-1 { - left: -0.25rem; + .xl\:-right-px { + right: -1px; } - .xl\:-top-2 { - top: -0.5rem; + .xl\:-right-0\.5 { + right: -0.125rem; } - .xl\:-right-2 { - right: -0.5rem; + .xl\:-right-1\.5 { + right: -0.375rem; } - .xl\:-bottom-2 { - bottom: -0.5rem; + .xl\:-right-2\.5 { + right: -0.625rem; } - .xl\:-left-2 { - left: -0.5rem; + .xl\:-right-3\.5 { + right: -0.875rem; } - .xl\:-top-3 { - top: -0.75rem; + .xl\:right-1\/2 { + right: 50%; } - .xl\:-right-3 { - right: -0.75rem; + .xl\:right-1\/3 { + right: 33.333333%; } - .xl\:-bottom-3 { - bottom: -0.75rem; + .xl\:right-2\/3 { + right: 66.666667%; } - .xl\:-left-3 { - left: -0.75rem; + .xl\:right-1\/4 { + right: 25%; } - .xl\:-top-4 { - top: -1rem; + .xl\:right-2\/4 { + right: 50%; } - .xl\:-right-4 { - right: -1rem; + .xl\:right-3\/4 { + right: 75%; } - .xl\:-bottom-4 { - bottom: -1rem; + .xl\:right-full { + right: 100%; } - .xl\:-left-4 { - left: -1rem; + .xl\:-right-1\/2 { + right: -50%; } - .xl\:-top-5 { - top: -1.25rem; + .xl\:-right-1\/3 { + right: -33.333333%; } - .xl\:-right-5 { - right: -1.25rem; + .xl\:-right-2\/3 { + right: -66.666667%; } - .xl\:-bottom-5 { - bottom: -1.25rem; + .xl\:-right-1\/4 { + right: -25%; } - .xl\:-left-5 { - left: -1.25rem; + .xl\:-right-2\/4 { + right: -50%; } - .xl\:-top-6 { - top: -1.5rem; + .xl\:-right-3\/4 { + right: -75%; } - .xl\:-right-6 { - right: -1.5rem; + .xl\:-right-full { + right: -100%; } - .xl\:-bottom-6 { - bottom: -1.5rem; + .xl\:bottom-0 { + bottom: 0px; } - .xl\:-left-6 { - left: -1.5rem; + .xl\:bottom-1 { + bottom: 0.25rem; } - .xl\:-top-7 { - top: -1.75rem; + .xl\:bottom-2 { + bottom: 0.5rem; } - .xl\:-right-7 { - right: -1.75rem; + .xl\:bottom-3 { + bottom: 0.75rem; } - .xl\:-bottom-7 { - bottom: -1.75rem; + .xl\:bottom-4 { + bottom: 1rem; } - .xl\:-left-7 { - left: -1.75rem; + .xl\:bottom-5 { + bottom: 1.25rem; } - .xl\:-top-8 { - top: -2rem; + .xl\:bottom-6 { + bottom: 1.5rem; } - .xl\:-right-8 { - right: -2rem; + .xl\:bottom-7 { + bottom: 1.75rem; } - .xl\:-bottom-8 { - bottom: -2rem; + .xl\:bottom-8 { + bottom: 2rem; } - .xl\:-left-8 { - left: -2rem; + .xl\:bottom-9 { + bottom: 2.25rem; } - .xl\:-top-9 { - top: -2.25rem; + .xl\:bottom-10 { + bottom: 2.5rem; } - .xl\:-right-9 { - right: -2.25rem; + .xl\:bottom-11 { + bottom: 2.75rem; } - .xl\:-bottom-9 { - bottom: -2.25rem; + .xl\:bottom-12 { + bottom: 3rem; } - .xl\:-left-9 { - left: -2.25rem; + .xl\:bottom-14 { + bottom: 3.5rem; } - .xl\:-top-10 { - top: -2.5rem; + .xl\:bottom-16 { + bottom: 4rem; } - .xl\:-right-10 { - right: -2.5rem; + .xl\:bottom-20 { + bottom: 5rem; } - .xl\:-bottom-10 { - bottom: -2.5rem; + .xl\:bottom-24 { + bottom: 6rem; } - .xl\:-left-10 { - left: -2.5rem; + .xl\:bottom-28 { + bottom: 7rem; } - .xl\:-top-11 { - top: -2.75rem; + .xl\:bottom-32 { + bottom: 8rem; } - .xl\:-right-11 { - right: -2.75rem; + .xl\:bottom-36 { + bottom: 9rem; } - .xl\:-bottom-11 { - bottom: -2.75rem; + .xl\:bottom-40 { + bottom: 10rem; } - .xl\:-left-11 { - left: -2.75rem; + .xl\:bottom-44 { + bottom: 11rem; } - .xl\:-top-12 { - top: -3rem; + .xl\:bottom-48 { + bottom: 12rem; } - .xl\:-right-12 { - right: -3rem; + .xl\:bottom-52 { + bottom: 13rem; } - .xl\:-bottom-12 { - bottom: -3rem; + .xl\:bottom-56 { + bottom: 14rem; } - .xl\:-left-12 { - left: -3rem; + .xl\:bottom-60 { + bottom: 15rem; } - .xl\:-top-14 { - top: -3.5rem; + .xl\:bottom-64 { + bottom: 16rem; } - .xl\:-right-14 { - right: -3.5rem; + .xl\:bottom-72 { + bottom: 18rem; } - .xl\:-bottom-14 { - bottom: -3.5rem; + .xl\:bottom-80 { + bottom: 20rem; } - .xl\:-left-14 { - left: -3.5rem; + .xl\:bottom-96 { + bottom: 24rem; } - .xl\:-top-16 { - top: -4rem; + .xl\:bottom-auto { + bottom: auto; } - .xl\:-right-16 { - right: -4rem; + .xl\:bottom-px { + bottom: 1px; } - .xl\:-bottom-16 { - bottom: -4rem; + .xl\:bottom-0\.5 { + bottom: 0.125rem; } - .xl\:-left-16 { - left: -4rem; + .xl\:bottom-1\.5 { + bottom: 0.375rem; } - .xl\:-top-20 { - top: -5rem; + .xl\:bottom-2\.5 { + bottom: 0.625rem; } - .xl\:-right-20 { - right: -5rem; + .xl\:bottom-3\.5 { + bottom: 0.875rem; } - .xl\:-bottom-20 { - bottom: -5rem; + .xl\:-bottom-0 { + bottom: 0px; } - .xl\:-left-20 { - left: -5rem; + .xl\:-bottom-1 { + bottom: -0.25rem; } - .xl\:-top-24 { - top: -6rem; + .xl\:-bottom-2 { + bottom: -0.5rem; } - .xl\:-right-24 { - right: -6rem; + .xl\:-bottom-3 { + bottom: -0.75rem; } - .xl\:-bottom-24 { - bottom: -6rem; + .xl\:-bottom-4 { + bottom: -1rem; } - .xl\:-left-24 { - left: -6rem; + .xl\:-bottom-5 { + bottom: -1.25rem; } - .xl\:-top-28 { - top: -7rem; + .xl\:-bottom-6 { + bottom: -1.5rem; } - .xl\:-right-28 { - right: -7rem; + .xl\:-bottom-7 { + bottom: -1.75rem; } - .xl\:-bottom-28 { - bottom: -7rem; + .xl\:-bottom-8 { + bottom: -2rem; } - .xl\:-left-28 { - left: -7rem; + .xl\:-bottom-9 { + bottom: -2.25rem; } - .xl\:-top-32 { - top: -8rem; + .xl\:-bottom-10 { + bottom: -2.5rem; } - .xl\:-right-32 { - right: -8rem; + .xl\:-bottom-11 { + bottom: -2.75rem; } - .xl\:-bottom-32 { - bottom: -8rem; + .xl\:-bottom-12 { + bottom: -3rem; } - .xl\:-left-32 { - left: -8rem; + .xl\:-bottom-14 { + bottom: -3.5rem; } - .xl\:-top-36 { - top: -9rem; + .xl\:-bottom-16 { + bottom: -4rem; } - .xl\:-right-36 { - right: -9rem; + .xl\:-bottom-20 { + bottom: -5rem; } - .xl\:-bottom-36 { - bottom: -9rem; + .xl\:-bottom-24 { + bottom: -6rem; } - .xl\:-left-36 { - left: -9rem; + .xl\:-bottom-28 { + bottom: -7rem; } - .xl\:-top-40 { - top: -10rem; + .xl\:-bottom-32 { + bottom: -8rem; } - .xl\:-right-40 { - right: -10rem; + .xl\:-bottom-36 { + bottom: -9rem; } .xl\:-bottom-40 { bottom: -10rem; } - .xl\:-left-40 { - left: -10rem; + .xl\:-bottom-44 { + bottom: -11rem; } - .xl\:-top-44 { - top: -11rem; + .xl\:-bottom-48 { + bottom: -12rem; } - .xl\:-right-44 { - right: -11rem; + .xl\:-bottom-52 { + bottom: -13rem; } - .xl\:-bottom-44 { - bottom: -11rem; + .xl\:-bottom-56 { + bottom: -14rem; } - .xl\:-left-44 { - left: -11rem; + .xl\:-bottom-60 { + bottom: -15rem; } - .xl\:-top-48 { - top: -12rem; + .xl\:-bottom-64 { + bottom: -16rem; } - .xl\:-right-48 { - right: -12rem; + .xl\:-bottom-72 { + bottom: -18rem; } - .xl\:-bottom-48 { - bottom: -12rem; + .xl\:-bottom-80 { + bottom: -20rem; } - .xl\:-left-48 { - left: -12rem; + .xl\:-bottom-96 { + bottom: -24rem; } - .xl\:-top-52 { - top: -13rem; + .xl\:-bottom-px { + bottom: -1px; } - .xl\:-right-52 { - right: -13rem; + .xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .xl\:-bottom-52 { - bottom: -13rem; + .xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .xl\:-left-52 { - left: -13rem; + .xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .xl\:-top-56 { - top: -14rem; + .xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .xl\:-right-56 { - right: -14rem; + .xl\:bottom-1\/2 { + bottom: 50%; } - .xl\:-bottom-56 { - bottom: -14rem; + .xl\:bottom-1\/3 { + bottom: 33.333333%; } - .xl\:-left-56 { - left: -14rem; + .xl\:bottom-2\/3 { + bottom: 66.666667%; } - .xl\:-top-60 { - top: -15rem; + .xl\:bottom-1\/4 { + bottom: 25%; } - .xl\:-right-60 { - right: -15rem; + .xl\:bottom-2\/4 { + bottom: 50%; } - .xl\:-bottom-60 { - bottom: -15rem; + .xl\:bottom-3\/4 { + bottom: 75%; } - .xl\:-left-60 { - left: -15rem; + .xl\:bottom-full { + bottom: 100%; } - .xl\:-top-64 { - top: -16rem; + .xl\:-bottom-1\/2 { + bottom: -50%; } - .xl\:-right-64 { - right: -16rem; + .xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .xl\:-bottom-64 { - bottom: -16rem; + .xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .xl\:-left-64 { - left: -16rem; + .xl\:-bottom-1\/4 { + bottom: -25%; } - .xl\:-top-72 { - top: -18rem; + .xl\:-bottom-2\/4 { + bottom: -50%; } - .xl\:-right-72 { - right: -18rem; + .xl\:-bottom-3\/4 { + bottom: -75%; } - .xl\:-bottom-72 { - bottom: -18rem; + .xl\:-bottom-full { + bottom: -100%; } - .xl\:-left-72 { - left: -18rem; + .xl\:left-0 { + left: 0px; } - .xl\:-top-80 { - top: -20rem; + .xl\:left-1 { + left: 0.25rem; } - .xl\:-right-80 { - right: -20rem; + .xl\:left-2 { + left: 0.5rem; } - .xl\:-bottom-80 { - bottom: -20rem; + .xl\:left-3 { + left: 0.75rem; } - .xl\:-left-80 { - left: -20rem; + .xl\:left-4 { + left: 1rem; } - .xl\:-top-96 { - top: -24rem; + .xl\:left-5 { + left: 1.25rem; } - .xl\:-right-96 { - right: -24rem; + .xl\:left-6 { + left: 1.5rem; } - .xl\:-bottom-96 { - bottom: -24rem; + .xl\:left-7 { + left: 1.75rem; } - .xl\:-left-96 { - left: -24rem; + .xl\:left-8 { + left: 2rem; } - .xl\:-top-px { - top: -1px; + .xl\:left-9 { + left: 2.25rem; } - .xl\:-right-px { - right: -1px; + .xl\:left-10 { + left: 2.5rem; } - .xl\:-bottom-px { - bottom: -1px; + .xl\:left-11 { + left: 2.75rem; } - .xl\:-left-px { - left: -1px; + .xl\:left-12 { + left: 3rem; } - .xl\:-top-0\.5 { - top: -0.125rem; + .xl\:left-14 { + left: 3.5rem; } - .xl\:-right-0\.5 { - right: -0.125rem; + .xl\:left-16 { + left: 4rem; } - .xl\:-bottom-0\.5 { - bottom: -0.125rem; + .xl\:left-20 { + left: 5rem; } - .xl\:-left-0\.5 { - left: -0.125rem; + .xl\:left-24 { + left: 6rem; } - .xl\:-top-1\.5 { - top: -0.375rem; + .xl\:left-28 { + left: 7rem; } - .xl\:-right-1\.5 { - right: -0.375rem; + .xl\:left-32 { + left: 8rem; } - .xl\:-bottom-1\.5 { - bottom: -0.375rem; + .xl\:left-36 { + left: 9rem; } - .xl\:-left-1\.5 { - left: -0.375rem; + .xl\:left-40 { + left: 10rem; } - .xl\:-top-2\.5 { - top: -0.625rem; + .xl\:left-44 { + left: 11rem; } - .xl\:-right-2\.5 { - right: -0.625rem; + .xl\:left-48 { + left: 12rem; } - .xl\:-bottom-2\.5 { - bottom: -0.625rem; + .xl\:left-52 { + left: 13rem; } - .xl\:-left-2\.5 { - left: -0.625rem; + .xl\:left-56 { + left: 14rem; } - .xl\:-top-3\.5 { - top: -0.875rem; + .xl\:left-60 { + left: 15rem; } - .xl\:-right-3\.5 { - right: -0.875rem; + .xl\:left-64 { + left: 16rem; } - .xl\:-bottom-3\.5 { - bottom: -0.875rem; + .xl\:left-72 { + left: 18rem; } - .xl\:-left-3\.5 { - left: -0.875rem; + .xl\:left-80 { + left: 20rem; } - .xl\:top-1\/2 { - top: 50%; + .xl\:left-96 { + left: 24rem; } - .xl\:right-1\/2 { - right: 50%; + .xl\:left-auto { + left: auto; } - .xl\:bottom-1\/2 { - bottom: 50%; + .xl\:left-px { + left: 1px; } - .xl\:left-1\/2 { - left: 50%; + .xl\:left-0\.5 { + left: 0.125rem; } - .xl\:top-1\/3 { - top: 33.333333%; + .xl\:left-1\.5 { + left: 0.375rem; } - .xl\:right-1\/3 { - right: 33.333333%; + .xl\:left-2\.5 { + left: 0.625rem; } - .xl\:bottom-1\/3 { - bottom: 33.333333%; + .xl\:left-3\.5 { + left: 0.875rem; } - .xl\:left-1\/3 { - left: 33.333333%; + .xl\:-left-0 { + left: 0px; } - .xl\:top-2\/3 { - top: 66.666667%; + .xl\:-left-1 { + left: -0.25rem; } - .xl\:right-2\/3 { - right: 66.666667%; + .xl\:-left-2 { + left: -0.5rem; } - .xl\:bottom-2\/3 { - bottom: 66.666667%; + .xl\:-left-3 { + left: -0.75rem; } - .xl\:left-2\/3 { - left: 66.666667%; + .xl\:-left-4 { + left: -1rem; } - .xl\:top-1\/4 { - top: 25%; + .xl\:-left-5 { + left: -1.25rem; } - .xl\:right-1\/4 { - right: 25%; + .xl\:-left-6 { + left: -1.5rem; } - .xl\:bottom-1\/4 { - bottom: 25%; + .xl\:-left-7 { + left: -1.75rem; } - .xl\:left-1\/4 { - left: 25%; + .xl\:-left-8 { + left: -2rem; } - .xl\:top-2\/4 { - top: 50%; + .xl\:-left-9 { + left: -2.25rem; } - .xl\:right-2\/4 { - right: 50%; + .xl\:-left-10 { + left: -2.5rem; } - .xl\:bottom-2\/4 { - bottom: 50%; + .xl\:-left-11 { + left: -2.75rem; } - .xl\:left-2\/4 { - left: 50%; + .xl\:-left-12 { + left: -3rem; } - .xl\:top-3\/4 { - top: 75%; + .xl\:-left-14 { + left: -3.5rem; } - .xl\:right-3\/4 { - right: 75%; + .xl\:-left-16 { + left: -4rem; } - .xl\:bottom-3\/4 { - bottom: 75%; + .xl\:-left-20 { + left: -5rem; } - .xl\:left-3\/4 { - left: 75%; + .xl\:-left-24 { + left: -6rem; } - .xl\:top-full { - top: 100%; + .xl\:-left-28 { + left: -7rem; } - .xl\:right-full { - right: 100%; + .xl\:-left-32 { + left: -8rem; } - .xl\:bottom-full { - bottom: 100%; + .xl\:-left-36 { + left: -9rem; } - .xl\:left-full { - left: 100%; + .xl\:-left-40 { + left: -10rem; } - .xl\:-top-1\/2 { - top: -50%; + .xl\:-left-44 { + left: -11rem; } - .xl\:-right-1\/2 { - right: -50%; + .xl\:-left-48 { + left: -12rem; } - .xl\:-bottom-1\/2 { - bottom: -50%; + .xl\:-left-52 { + left: -13rem; } - .xl\:-left-1\/2 { - left: -50%; + .xl\:-left-56 { + left: -14rem; } - .xl\:-top-1\/3 { - top: -33.333333%; + .xl\:-left-60 { + left: -15rem; } - .xl\:-right-1\/3 { - right: -33.333333%; + .xl\:-left-64 { + left: -16rem; } - .xl\:-bottom-1\/3 { - bottom: -33.333333%; + .xl\:-left-72 { + left: -18rem; } - .xl\:-left-1\/3 { - left: -33.333333%; + .xl\:-left-80 { + left: -20rem; } - .xl\:-top-2\/3 { - top: -66.666667%; + .xl\:-left-96 { + left: -24rem; } - .xl\:-right-2\/3 { - right: -66.666667%; + .xl\:-left-px { + left: -1px; } - .xl\:-bottom-2\/3 { - bottom: -66.666667%; + .xl\:-left-0\.5 { + left: -0.125rem; } - .xl\:-left-2\/3 { - left: -66.666667%; + .xl\:-left-1\.5 { + left: -0.375rem; } - .xl\:-top-1\/4 { - top: -25%; + .xl\:-left-2\.5 { + left: -0.625rem; } - .xl\:-right-1\/4 { - right: -25%; + .xl\:-left-3\.5 { + left: -0.875rem; } - .xl\:-bottom-1\/4 { - bottom: -25%; + .xl\:left-1\/2 { + left: 50%; } - .xl\:-left-1\/4 { - left: -25%; + .xl\:left-1\/3 { + left: 33.333333%; } - .xl\:-top-2\/4 { - top: -50%; + .xl\:left-2\/3 { + left: 66.666667%; } - .xl\:-right-2\/4 { - right: -50%; + .xl\:left-1\/4 { + left: 25%; } - .xl\:-bottom-2\/4 { - bottom: -50%; + .xl\:left-2\/4 { + left: 50%; } - .xl\:-left-2\/4 { - left: -50%; + .xl\:left-3\/4 { + left: 75%; } - .xl\:-top-3\/4 { - top: -75%; + .xl\:left-full { + left: 100%; } - .xl\:-right-3\/4 { - right: -75%; + .xl\:-left-1\/2 { + left: -50%; } - .xl\:-bottom-3\/4 { - bottom: -75%; + .xl\:-left-1\/3 { + left: -33.333333%; } - .xl\:-left-3\/4 { - left: -75%; + .xl\:-left-2\/3 { + left: -66.666667%; } - .xl\:-top-full { - top: -100%; + .xl\:-left-1\/4 { + left: -25%; } - .xl\:-right-full { - right: -100%; + .xl\:-left-2\/4 { + left: -50%; } - .xl\:-bottom-full { - bottom: -100%; + .xl\:-left-3\/4 { + left: -75%; } .xl\:-left-full { @@ -115936,133 +116032,183 @@ video { --tw-scale-y: 1.5; } - .xl\:scale-x-0 { + .xl\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:scale-x-50 { + .xl\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:scale-x-75 { + .xl\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:scale-x-90 { + .xl\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:scale-x-95 { + .xl\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:scale-x-100 { + .xl\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:scale-x-105 { + .xl\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:scale-x-110 { + .xl\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:scale-x-125 { + .xl\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:scale-x-150 { + .xl\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:scale-y-0 { + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .xl\:scale-y-50 { + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .xl\:scale-y-75 { + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .xl\:scale-y-90 { + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .xl\:scale-y-95 { + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .xl\:scale-y-100 { + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .xl\:scale-y-105 { + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .xl\:scale-y-110 { + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .xl\:scale-y-125 { + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .xl\:scale-y-150 { + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .xl\:hover\:scale-0:hover { + .xl\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .xl\:hover\:scale-50:hover { + .xl\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .xl\:hover\:scale-75:hover { + .xl\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .xl\:hover\:scale-90:hover { + .xl\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .xl\:hover\:scale-95:hover { + .xl\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .xl\:hover\:scale-100:hover { + .xl\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .xl\:hover\:scale-105:hover { + .xl\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .xl\:hover\:scale-110:hover { + .xl\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .xl\:hover\:scale-125:hover { + .xl\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .xl\:hover\:scale-150:hover { + .xl\:scale-x-150 { --tw-scale-x: 1.5; + } + + .xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .xl\:scale-y-150 { --tw-scale-y: 1.5; } @@ -116146,56 +116292,6 @@ video { --tw-scale-y: 1.5; } - .xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .xl\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -117088,436 +117184,640 @@ video { row-gap: 0.875rem; } - .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -117526,408 +117826,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -117936,66 +118032,66 @@ video { --tw-space-x-reverse: 1; } - .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -122847,2188 +122943,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .xl\:to-transparent { - --tw-gradient-to: transparent; + .xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:to-current { - --tw-gradient-to: currentColor; + .xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:to-black { - --tw-gradient-to: #000; + .xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:to-white { - --tw-gradient-to: #fff; + .xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:to-gray-700 { - --tw-gradient-to: #374151; + .xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:to-gray-900 { - --tw-gradient-to: #111827; + .xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:to-red-400 { - --tw-gradient-to: #f87171; + .xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:to-green-400 { - --tw-gradient-to: #34d399; + .xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:to-green-500 { - --tw-gradient-to: #10b981; + .xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:to-green-600 { - --tw-gradient-to: #059669; + .xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:to-green-700 { - --tw-gradient-to: #047857; + .xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:to-green-800 { - --tw-gradient-to: #065f46; + .xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:to-pink-900 { - --tw-gradient-to: #831843; + .xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:hover\:from-transparent:hover { + .xl\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:from-current:hover { + .xl\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:from-black:hover { + .xl\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:from-white:hover { + .xl\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:from-gray-50:hover { + .xl\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:hover\:from-gray-100:hover { + .xl\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:hover\:from-gray-200:hover { + .xl\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:hover\:from-gray-300:hover { + .xl\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:hover\:from-gray-400:hover { + .xl\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:hover\:from-gray-500:hover { + .xl\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:hover\:from-gray-600:hover { + .xl\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:hover\:from-gray-700:hover { + .xl\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:hover\:from-gray-800:hover { + .xl\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:hover\:from-gray-900:hover { + .xl\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:hover\:from-red-50:hover { + .xl\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:hover\:from-red-100:hover { + .xl\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:hover\:from-red-200:hover { + .xl\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:hover\:from-red-300:hover { + .xl\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:hover\:from-red-400:hover { + .xl\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:hover\:from-red-500:hover { + .xl\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:hover\:from-red-600:hover { + .xl\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:hover\:from-red-700:hover { + .xl\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:hover\:from-red-800:hover { + .xl\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:hover\:from-red-900:hover { + .xl\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:hover\:from-yellow-50:hover { + .xl\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:hover\:from-yellow-100:hover { + .xl\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:hover\:from-yellow-200:hover { + .xl\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:hover\:from-yellow-300:hover { + .xl\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:hover\:from-yellow-400:hover { + .xl\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:hover\:from-yellow-500:hover { + .xl\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:hover\:from-yellow-600:hover { + .xl\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:hover\:from-yellow-700:hover { + .xl\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:hover\:from-yellow-800:hover { + .xl\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:hover\:from-yellow-900:hover { + .xl\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:hover\:from-green-50:hover { + .xl\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:hover\:from-green-100:hover { + .xl\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:hover\:from-green-200:hover { + .xl\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:hover\:from-green-300:hover { + .xl\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:hover\:from-green-400:hover { + .xl\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:hover\:from-green-500:hover { + .xl\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:hover\:from-green-600:hover { + .xl\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:hover\:from-green-700:hover { + .xl\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:hover\:from-green-800:hover { + .xl\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:hover\:from-green-900:hover { + .xl\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:hover\:from-blue-50:hover { + .xl\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:hover\:from-blue-100:hover { + .xl\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:hover\:from-blue-200:hover { + .xl\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:hover\:from-blue-300:hover { + .xl\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:hover\:from-blue-400:hover { + .xl\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:hover\:from-blue-500:hover { + .xl\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:hover\:from-blue-600:hover { + .xl\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:hover\:from-blue-700:hover { + .xl\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:hover\:from-blue-800:hover { + .xl\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:hover\:from-blue-900:hover { + .xl\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:hover\:from-indigo-50:hover { + .xl\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:hover\:from-indigo-100:hover { + .xl\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:hover\:from-indigo-200:hover { + .xl\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:hover\:from-indigo-300:hover { + .xl\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:hover\:from-indigo-400:hover { + .xl\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:hover\:from-indigo-500:hover { + .xl\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:hover\:from-indigo-600:hover { + .xl\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:hover\:from-indigo-700:hover { + .xl\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:hover\:from-indigo-800:hover { + .xl\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:hover\:from-indigo-900:hover { + .xl\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:hover\:from-purple-50:hover { + .xl\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:hover\:from-purple-100:hover { + .xl\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:hover\:from-purple-200:hover { + .xl\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:hover\:from-purple-300:hover { + .xl\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:hover\:from-purple-400:hover { + .xl\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:hover\:from-purple-500:hover { + .xl\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:hover\:from-purple-600:hover { + .xl\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:hover\:from-purple-700:hover { + .xl\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:hover\:from-purple-800:hover { + .xl\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:hover\:from-purple-900:hover { + .xl\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:hover\:from-pink-50:hover { + .xl\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:hover\:from-pink-100:hover { + .xl\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:hover\:from-pink-200:hover { + .xl\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:hover\:from-pink-300:hover { + .xl\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:hover\:from-pink-400:hover { + .xl\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:hover\:from-pink-500:hover { + .xl\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:hover\:from-pink-600:hover { + .xl\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:hover\:from-pink-700:hover { + .xl\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:hover\:from-pink-800:hover { + .xl\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:hover\:from-pink-900:hover { + .xl\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:hover\:via-transparent:hover { + .xl\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:via-current:hover { + .xl\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:via-black:hover { + .xl\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:via-white:hover { + .xl\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:via-gray-50:hover { + .xl\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:hover\:via-gray-100:hover { + .xl\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:hover\:via-gray-200:hover { + .xl\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:hover\:via-gray-300:hover { + .xl\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:hover\:via-gray-400:hover { + .xl\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:hover\:via-gray-500:hover { + .xl\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:hover\:via-gray-600:hover { + .xl\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:hover\:via-gray-700:hover { + .xl\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:hover\:via-gray-800:hover { + .xl\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:hover\:via-gray-900:hover { + .xl\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:hover\:via-red-50:hover { + .xl\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:hover\:via-red-100:hover { + .xl\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:hover\:via-red-200:hover { + .xl\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:hover\:via-red-300:hover { + .xl\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:hover\:via-red-400:hover { + .xl\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:hover\:via-red-500:hover { + .xl\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:hover\:via-red-600:hover { + .xl\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:hover\:via-red-700:hover { + .xl\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:hover\:via-red-800:hover { + .xl\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:hover\:via-red-900:hover { + .xl\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:hover\:via-yellow-50:hover { + .xl\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:hover\:via-yellow-100:hover { + .xl\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:hover\:via-yellow-200:hover { + .xl\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:hover\:via-yellow-300:hover { + .xl\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:hover\:via-yellow-400:hover { + .xl\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:hover\:via-yellow-500:hover { + .xl\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:hover\:via-yellow-600:hover { + .xl\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:hover\:via-yellow-700:hover { + .xl\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:hover\:via-yellow-800:hover { + .xl\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:hover\:via-yellow-900:hover { + .xl\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:hover\:via-green-50:hover { + .xl\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:hover\:via-green-100:hover { + .xl\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:hover\:via-green-200:hover { + .xl\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:hover\:via-green-300:hover { + .xl\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:hover\:via-green-400:hover { + .xl\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:hover\:via-green-500:hover { + .xl\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:hover\:via-green-600:hover { + .xl\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:hover\:via-green-700:hover { + .xl\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:hover\:via-green-800:hover { + .xl\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:hover\:via-green-900:hover { + .xl\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:hover\:via-blue-50:hover { + .xl\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:hover\:via-blue-100:hover { + .xl\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:hover\:via-blue-200:hover { + .xl\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:hover\:via-blue-300:hover { + .xl\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:hover\:via-blue-400:hover { + .xl\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:hover\:via-blue-500:hover { + .xl\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:hover\:via-blue-600:hover { + .xl\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:hover\:via-blue-700:hover { + .xl\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:hover\:via-blue-800:hover { + .xl\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:hover\:via-blue-900:hover { + .xl\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:hover\:via-indigo-50:hover { + .xl\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:hover\:via-indigo-100:hover { + .xl\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:hover\:via-indigo-200:hover { + .xl\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:hover\:via-indigo-300:hover { + .xl\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:hover\:via-indigo-400:hover { + .xl\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:hover\:via-indigo-500:hover { + .xl\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:hover\:via-indigo-600:hover { + .xl\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:hover\:via-indigo-700:hover { + .xl\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:hover\:via-indigo-800:hover { + .xl\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:hover\:via-indigo-900:hover { + .xl\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:hover\:via-purple-50:hover { + .xl\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:hover\:via-purple-100:hover { + .xl\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:hover\:via-purple-200:hover { + .xl\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:hover\:via-purple-300:hover { + .xl\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:hover\:via-purple-400:hover { + .xl\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:hover\:via-purple-500:hover { + .xl\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:hover\:via-purple-600:hover { + .xl\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:hover\:via-purple-700:hover { + .xl\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:hover\:via-purple-800:hover { + .xl\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:hover\:via-purple-900:hover { + .xl\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:hover\:via-pink-50:hover { + .xl\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:hover\:via-pink-100:hover { + .xl\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:hover\:via-pink-200:hover { + .xl\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:hover\:via-pink-300:hover { + .xl\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:hover\:via-pink-400:hover { + .xl\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:hover\:via-pink-500:hover { + .xl\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:hover\:via-pink-600:hover { + .xl\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:hover\:via-pink-700:hover { + .xl\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:hover\:via-pink-800:hover { + .xl\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:hover\:via-pink-900:hover { + .xl\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .xl\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .xl\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .xl\:focus\:via-transparent:focus { @@ -125367,6 +124791,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .xl\:to-current { + --tw-gradient-to: currentColor; + } + + .xl\:to-black { + --tw-gradient-to: #000; + } + + .xl\:to-white { + --tw-gradient-to: #fff; + } + + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .xl\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .xl\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .xl\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .xl\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .xl\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .xl\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .xl\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .xl\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .xl\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .xl\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .xl\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .xl\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .xl\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .xl\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .xl\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .xl\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .xl\:to-green-600 { + --tw-gradient-to: #059669; + } + + .xl\:to-green-700 { + --tw-gradient-to: #047857; + } + + .xl\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .xl\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .xl\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .xl\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .xl\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .xl\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .xl\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .xl\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .xl\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .xl\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .xl\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .xl\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -130382,10 +130478,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:ring-inset { - --tw-ring-inset: inset; - } - .xl\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -130422,10 +130514,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .xl\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -130462,6 +130550,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .xl\:ring-inset { + --tw-ring-inset: inset; + } + + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .xl\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -133222,6 +133318,38 @@ video { backdrop-filter: none; } + .xl\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .xl\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .xl\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .xl\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .xl\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .xl\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .xl\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .xl\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .xl\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -134131,116 +134259,541 @@ video { left: -0.375rem; } - .\32xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .\32xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .\32xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .\32xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .\32xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .\32xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .\32xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .\32xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .\32xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .\32xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .\32xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .\32xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .\32xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .\32xl\:inset-x-0 { + left: 0px; + right: 0px; + } + + .\32xl\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .\32xl\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .\32xl\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .\32xl\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .\32xl\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .\32xl\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .\32xl\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .\32xl\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .\32xl\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .\32xl\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .\32xl\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .\32xl\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .\32xl\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .\32xl\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .\32xl\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .\32xl\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .\32xl\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .\32xl\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .\32xl\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .\32xl\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .\32xl\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .\32xl\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .\32xl\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .\32xl\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .\32xl\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .\32xl\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .\32xl\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .\32xl\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .\32xl\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .\32xl\:inset-x-auto { + left: auto; + right: auto; + } + + .\32xl\:inset-x-px { + left: 1px; + right: 1px; + } + + .\32xl\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .\32xl\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .\32xl\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .\32xl\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .\32xl\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .\32xl\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .\32xl\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .\32xl\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .\32xl\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .\32xl\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .\32xl\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .\32xl\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .\32xl\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .\32xl\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .\32xl\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .\32xl\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .\32xl\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .\32xl\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .\32xl\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .\32xl\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .\32xl\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .\32xl\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .\32xl\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .\32xl\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .\32xl\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .\32xl\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .\32xl\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .\32xl\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .\32xl\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .\32xl\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .\32xl\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .\32xl\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .\32xl\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .\32xl\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .\32xl\:-inset-x-px { + left: -1px; + right: -1px; + } + + .\32xl\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .\32xl\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .\32xl\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .\32xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .\32xl\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .\32xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .\32xl\:inset-x-1\/2 { left: 50%; + right: 50%; } - .\32xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .\32xl\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .\32xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .\32xl\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .\32xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .\32xl\:inset-x-1\/4 { left: 25%; + right: 25%; } - .\32xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .\32xl\:inset-x-2\/4 { left: 50%; + right: 50%; } - .\32xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .\32xl\:inset-x-3\/4 { left: 75%; + right: 75%; } - .\32xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .\32xl\:inset-x-full { left: 100%; + right: 100%; } - .\32xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .\32xl\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .\32xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .\32xl\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .\32xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .\32xl\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .\32xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .\32xl\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .\32xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .\32xl\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .\32xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .\32xl\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .\32xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .\32xl\:-inset-x-full { left: -100%; + right: -100%; } .\32xl\:inset-y-0 { @@ -134248,2205 +134801,1780 @@ video { bottom: 0px; } - .\32xl\:inset-x-0 { - right: 0px; - left: 0px; - } - .\32xl\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .\32xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .\32xl\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .\32xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .\32xl\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .\32xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .\32xl\:inset-y-4 { top: 1rem; bottom: 1rem; } - .\32xl\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .\32xl\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .\32xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .\32xl\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .\32xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .\32xl\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .\32xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .\32xl\:inset-y-8 { top: 2rem; bottom: 2rem; } - .\32xl\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .\32xl\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .\32xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .\32xl\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .\32xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .\32xl\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .\32xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .\32xl\:inset-y-12 { top: 3rem; bottom: 3rem; } - .\32xl\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .\32xl\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .\32xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .\32xl\:inset-y-16 { top: 4rem; bottom: 4rem; } - .\32xl\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .\32xl\:inset-y-20 { top: 5rem; bottom: 5rem; } - .\32xl\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .\32xl\:inset-y-24 { top: 6rem; bottom: 6rem; } - .\32xl\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .\32xl\:inset-y-28 { top: 7rem; bottom: 7rem; } - .\32xl\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .\32xl\:inset-y-32 { top: 8rem; bottom: 8rem; } - .\32xl\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .\32xl\:inset-y-36 { top: 9rem; bottom: 9rem; } - .\32xl\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .\32xl\:inset-y-40 { top: 10rem; bottom: 10rem; } - .\32xl\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .\32xl\:inset-y-44 { top: 11rem; bottom: 11rem; } - .\32xl\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .\32xl\:inset-y-48 { top: 12rem; bottom: 12rem; } - .\32xl\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .\32xl\:inset-y-52 { top: 13rem; bottom: 13rem; } - .\32xl\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .\32xl\:inset-y-56 { top: 14rem; bottom: 14rem; } - .\32xl\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .\32xl\:inset-y-60 { top: 15rem; bottom: 15rem; } - .\32xl\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .\32xl\:inset-y-64 { top: 16rem; bottom: 16rem; } - .\32xl\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .\32xl\:inset-y-72 { top: 18rem; bottom: 18rem; } - .\32xl\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .\32xl\:inset-y-80 { top: 20rem; bottom: 20rem; } - .\32xl\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .\32xl\:inset-y-96 { top: 24rem; bottom: 24rem; } - .\32xl\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .\32xl\:inset-y-auto { top: auto; bottom: auto; } - .\32xl\:inset-x-auto { - right: auto; - left: auto; - } - .\32xl\:inset-y-px { top: 1px; bottom: 1px; } - .\32xl\:inset-x-px { - right: 1px; - left: 1px; - } - .\32xl\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .\32xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .\32xl\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .\32xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .\32xl\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .\32xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .\32xl\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .\32xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .\32xl\:-inset-y-0 { top: 0px; bottom: 0px; } - .\32xl\:-inset-x-0 { - right: 0px; - left: 0px; - } - .\32xl\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .\32xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .\32xl\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .\32xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .\32xl\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .\32xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .\32xl\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .\32xl\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .\32xl\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .\32xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .\32xl\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .\32xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .\32xl\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .\32xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .\32xl\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .\32xl\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .\32xl\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .\32xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .\32xl\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .\32xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .\32xl\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .\32xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .\32xl\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .\32xl\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .\32xl\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .\32xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .\32xl\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .\32xl\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .\32xl\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .\32xl\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .\32xl\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .\32xl\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .\32xl\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .\32xl\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .\32xl\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .\32xl\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .\32xl\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .\32xl\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .\32xl\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .\32xl\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .\32xl\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .\32xl\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .\32xl\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .\32xl\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .\32xl\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .\32xl\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .\32xl\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .\32xl\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .\32xl\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .\32xl\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .\32xl\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .\32xl\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .\32xl\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .\32xl\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .\32xl\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .\32xl\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .\32xl\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .\32xl\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .\32xl\:-inset-y-px { top: -1px; bottom: -1px; } - .\32xl\:-inset-x-px { - right: -1px; - left: -1px; - } - .\32xl\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .\32xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .\32xl\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .\32xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .\32xl\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .\32xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .\32xl\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .\32xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .\32xl\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .\32xl\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .\32xl\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .\32xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .\32xl\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .\32xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .\32xl\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .\32xl\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .\32xl\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .\32xl\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .\32xl\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .\32xl\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .\32xl\:inset-y-full { top: 100%; bottom: 100%; } - .\32xl\:inset-x-full { - right: 100%; - left: 100%; - } - .\32xl\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .\32xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .\32xl\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .\32xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .\32xl\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .\32xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .\32xl\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .\32xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .\32xl\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .\32xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .\32xl\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .\32xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .\32xl\:-inset-y-full { top: -100%; bottom: -100%; } - .\32xl\:-inset-x-full { - right: -100%; - left: -100%; - } - .\32xl\:top-0 { top: 0px; } - .\32xl\:right-0 { - right: 0px; + .\32xl\:top-1 { + top: 0.25rem; } - .\32xl\:bottom-0 { - bottom: 0px; + .\32xl\:top-2 { + top: 0.5rem; } - .\32xl\:left-0 { - left: 0px; + .\32xl\:top-3 { + top: 0.75rem; } - .\32xl\:top-1 { - top: 0.25rem; + .\32xl\:top-4 { + top: 1rem; } - .\32xl\:right-1 { - right: 0.25rem; + .\32xl\:top-5 { + top: 1.25rem; } - .\32xl\:bottom-1 { - bottom: 0.25rem; + .\32xl\:top-6 { + top: 1.5rem; } - .\32xl\:left-1 { - left: 0.25rem; + .\32xl\:top-7 { + top: 1.75rem; } - .\32xl\:top-2 { - top: 0.5rem; + .\32xl\:top-8 { + top: 2rem; } - .\32xl\:right-2 { - right: 0.5rem; + .\32xl\:top-9 { + top: 2.25rem; } - .\32xl\:bottom-2 { - bottom: 0.5rem; + .\32xl\:top-10 { + top: 2.5rem; } - .\32xl\:left-2 { - left: 0.5rem; + .\32xl\:top-11 { + top: 2.75rem; } - .\32xl\:top-3 { - top: 0.75rem; + .\32xl\:top-12 { + top: 3rem; } - .\32xl\:right-3 { - right: 0.75rem; + .\32xl\:top-14 { + top: 3.5rem; } - .\32xl\:bottom-3 { - bottom: 0.75rem; + .\32xl\:top-16 { + top: 4rem; } - .\32xl\:left-3 { - left: 0.75rem; + .\32xl\:top-20 { + top: 5rem; } - .\32xl\:top-4 { - top: 1rem; + .\32xl\:top-24 { + top: 6rem; } - .\32xl\:right-4 { - right: 1rem; + .\32xl\:top-28 { + top: 7rem; } - .\32xl\:bottom-4 { - bottom: 1rem; + .\32xl\:top-32 { + top: 8rem; } - .\32xl\:left-4 { - left: 1rem; + .\32xl\:top-36 { + top: 9rem; } - .\32xl\:top-5 { - top: 1.25rem; + .\32xl\:top-40 { + top: 10rem; } - .\32xl\:right-5 { - right: 1.25rem; + .\32xl\:top-44 { + top: 11rem; } - .\32xl\:bottom-5 { - bottom: 1.25rem; + .\32xl\:top-48 { + top: 12rem; } - .\32xl\:left-5 { - left: 1.25rem; + .\32xl\:top-52 { + top: 13rem; } - .\32xl\:top-6 { - top: 1.5rem; + .\32xl\:top-56 { + top: 14rem; } - .\32xl\:right-6 { - right: 1.5rem; + .\32xl\:top-60 { + top: 15rem; } - .\32xl\:bottom-6 { - bottom: 1.5rem; + .\32xl\:top-64 { + top: 16rem; } - .\32xl\:left-6 { - left: 1.5rem; + .\32xl\:top-72 { + top: 18rem; } - .\32xl\:top-7 { - top: 1.75rem; + .\32xl\:top-80 { + top: 20rem; } - .\32xl\:right-7 { - right: 1.75rem; + .\32xl\:top-96 { + top: 24rem; } - .\32xl\:bottom-7 { - bottom: 1.75rem; + .\32xl\:top-auto { + top: auto; } - .\32xl\:left-7 { - left: 1.75rem; + .\32xl\:top-px { + top: 1px; } - .\32xl\:top-8 { - top: 2rem; + .\32xl\:top-0\.5 { + top: 0.125rem; } - .\32xl\:right-8 { - right: 2rem; + .\32xl\:top-1\.5 { + top: 0.375rem; } - .\32xl\:bottom-8 { - bottom: 2rem; + .\32xl\:top-2\.5 { + top: 0.625rem; } - .\32xl\:left-8 { - left: 2rem; + .\32xl\:top-3\.5 { + top: 0.875rem; } - .\32xl\:top-9 { - top: 2.25rem; + .\32xl\:-top-0 { + top: 0px; } - .\32xl\:right-9 { - right: 2.25rem; + .\32xl\:-top-1 { + top: -0.25rem; } - .\32xl\:bottom-9 { - bottom: 2.25rem; + .\32xl\:-top-2 { + top: -0.5rem; } - .\32xl\:left-9 { - left: 2.25rem; + .\32xl\:-top-3 { + top: -0.75rem; } - .\32xl\:top-10 { - top: 2.5rem; + .\32xl\:-top-4 { + top: -1rem; } - .\32xl\:right-10 { - right: 2.5rem; + .\32xl\:-top-5 { + top: -1.25rem; } - .\32xl\:bottom-10 { - bottom: 2.5rem; + .\32xl\:-top-6 { + top: -1.5rem; } - .\32xl\:left-10 { - left: 2.5rem; + .\32xl\:-top-7 { + top: -1.75rem; } - .\32xl\:top-11 { - top: 2.75rem; + .\32xl\:-top-8 { + top: -2rem; } - .\32xl\:right-11 { - right: 2.75rem; + .\32xl\:-top-9 { + top: -2.25rem; } - .\32xl\:bottom-11 { - bottom: 2.75rem; + .\32xl\:-top-10 { + top: -2.5rem; } - .\32xl\:left-11 { - left: 2.75rem; + .\32xl\:-top-11 { + top: -2.75rem; } - .\32xl\:top-12 { - top: 3rem; + .\32xl\:-top-12 { + top: -3rem; } - .\32xl\:right-12 { - right: 3rem; + .\32xl\:-top-14 { + top: -3.5rem; } - .\32xl\:bottom-12 { - bottom: 3rem; + .\32xl\:-top-16 { + top: -4rem; } - .\32xl\:left-12 { - left: 3rem; + .\32xl\:-top-20 { + top: -5rem; } - .\32xl\:top-14 { - top: 3.5rem; + .\32xl\:-top-24 { + top: -6rem; } - .\32xl\:right-14 { - right: 3.5rem; + .\32xl\:-top-28 { + top: -7rem; } - .\32xl\:bottom-14 { - bottom: 3.5rem; + .\32xl\:-top-32 { + top: -8rem; } - .\32xl\:left-14 { - left: 3.5rem; + .\32xl\:-top-36 { + top: -9rem; } - .\32xl\:top-16 { - top: 4rem; + .\32xl\:-top-40 { + top: -10rem; } - .\32xl\:right-16 { - right: 4rem; + .\32xl\:-top-44 { + top: -11rem; } - .\32xl\:bottom-16 { - bottom: 4rem; + .\32xl\:-top-48 { + top: -12rem; } - .\32xl\:left-16 { - left: 4rem; + .\32xl\:-top-52 { + top: -13rem; } - .\32xl\:top-20 { - top: 5rem; + .\32xl\:-top-56 { + top: -14rem; } - .\32xl\:right-20 { - right: 5rem; + .\32xl\:-top-60 { + top: -15rem; } - .\32xl\:bottom-20 { - bottom: 5rem; + .\32xl\:-top-64 { + top: -16rem; } - .\32xl\:left-20 { - left: 5rem; + .\32xl\:-top-72 { + top: -18rem; } - .\32xl\:top-24 { - top: 6rem; + .\32xl\:-top-80 { + top: -20rem; } - .\32xl\:right-24 { - right: 6rem; + .\32xl\:-top-96 { + top: -24rem; } - .\32xl\:bottom-24 { - bottom: 6rem; + .\32xl\:-top-px { + top: -1px; } - .\32xl\:left-24 { - left: 6rem; + .\32xl\:-top-0\.5 { + top: -0.125rem; } - .\32xl\:top-28 { - top: 7rem; + .\32xl\:-top-1\.5 { + top: -0.375rem; } - .\32xl\:right-28 { - right: 7rem; + .\32xl\:-top-2\.5 { + top: -0.625rem; } - .\32xl\:bottom-28 { - bottom: 7rem; + .\32xl\:-top-3\.5 { + top: -0.875rem; } - .\32xl\:left-28 { - left: 7rem; + .\32xl\:top-1\/2 { + top: 50%; } - .\32xl\:top-32 { - top: 8rem; + .\32xl\:top-1\/3 { + top: 33.333333%; } - .\32xl\:right-32 { - right: 8rem; + .\32xl\:top-2\/3 { + top: 66.666667%; } - .\32xl\:bottom-32 { - bottom: 8rem; + .\32xl\:top-1\/4 { + top: 25%; } - .\32xl\:left-32 { - left: 8rem; + .\32xl\:top-2\/4 { + top: 50%; } - .\32xl\:top-36 { - top: 9rem; + .\32xl\:top-3\/4 { + top: 75%; } - .\32xl\:right-36 { - right: 9rem; + .\32xl\:top-full { + top: 100%; } - .\32xl\:bottom-36 { - bottom: 9rem; + .\32xl\:-top-1\/2 { + top: -50%; } - .\32xl\:left-36 { - left: 9rem; + .\32xl\:-top-1\/3 { + top: -33.333333%; } - .\32xl\:top-40 { - top: 10rem; + .\32xl\:-top-2\/3 { + top: -66.666667%; } - .\32xl\:right-40 { - right: 10rem; + .\32xl\:-top-1\/4 { + top: -25%; } - .\32xl\:bottom-40 { - bottom: 10rem; + .\32xl\:-top-2\/4 { + top: -50%; } - .\32xl\:left-40 { - left: 10rem; + .\32xl\:-top-3\/4 { + top: -75%; } - .\32xl\:top-44 { - top: 11rem; + .\32xl\:-top-full { + top: -100%; } - .\32xl\:right-44 { - right: 11rem; + .\32xl\:right-0 { + right: 0px; } - .\32xl\:bottom-44 { - bottom: 11rem; + .\32xl\:right-1 { + right: 0.25rem; } - .\32xl\:left-44 { - left: 11rem; + .\32xl\:right-2 { + right: 0.5rem; } - .\32xl\:top-48 { - top: 12rem; + .\32xl\:right-3 { + right: 0.75rem; } - .\32xl\:right-48 { - right: 12rem; + .\32xl\:right-4 { + right: 1rem; } - .\32xl\:bottom-48 { - bottom: 12rem; + .\32xl\:right-5 { + right: 1.25rem; } - .\32xl\:left-48 { - left: 12rem; + .\32xl\:right-6 { + right: 1.5rem; } - .\32xl\:top-52 { - top: 13rem; + .\32xl\:right-7 { + right: 1.75rem; } - .\32xl\:right-52 { - right: 13rem; + .\32xl\:right-8 { + right: 2rem; } - .\32xl\:bottom-52 { - bottom: 13rem; + .\32xl\:right-9 { + right: 2.25rem; } - .\32xl\:left-52 { - left: 13rem; + .\32xl\:right-10 { + right: 2.5rem; } - .\32xl\:top-56 { - top: 14rem; + .\32xl\:right-11 { + right: 2.75rem; } - .\32xl\:right-56 { - right: 14rem; + .\32xl\:right-12 { + right: 3rem; } - .\32xl\:bottom-56 { - bottom: 14rem; + .\32xl\:right-14 { + right: 3.5rem; } - .\32xl\:left-56 { - left: 14rem; + .\32xl\:right-16 { + right: 4rem; } - .\32xl\:top-60 { - top: 15rem; + .\32xl\:right-20 { + right: 5rem; } - .\32xl\:right-60 { - right: 15rem; + .\32xl\:right-24 { + right: 6rem; } - .\32xl\:bottom-60 { - bottom: 15rem; + .\32xl\:right-28 { + right: 7rem; } - .\32xl\:left-60 { - left: 15rem; + .\32xl\:right-32 { + right: 8rem; } - .\32xl\:top-64 { - top: 16rem; + .\32xl\:right-36 { + right: 9rem; } - .\32xl\:right-64 { - right: 16rem; + .\32xl\:right-40 { + right: 10rem; } - .\32xl\:bottom-64 { - bottom: 16rem; + .\32xl\:right-44 { + right: 11rem; } - .\32xl\:left-64 { - left: 16rem; + .\32xl\:right-48 { + right: 12rem; } - .\32xl\:top-72 { - top: 18rem; + .\32xl\:right-52 { + right: 13rem; } - .\32xl\:right-72 { - right: 18rem; + .\32xl\:right-56 { + right: 14rem; } - .\32xl\:bottom-72 { - bottom: 18rem; + .\32xl\:right-60 { + right: 15rem; } - .\32xl\:left-72 { - left: 18rem; + .\32xl\:right-64 { + right: 16rem; } - .\32xl\:top-80 { - top: 20rem; + .\32xl\:right-72 { + right: 18rem; } .\32xl\:right-80 { right: 20rem; } - .\32xl\:bottom-80 { - bottom: 20rem; + .\32xl\:right-96 { + right: 24rem; } - .\32xl\:left-80 { - left: 20rem; + .\32xl\:right-auto { + right: auto; } - .\32xl\:top-96 { - top: 24rem; + .\32xl\:right-px { + right: 1px; } - .\32xl\:right-96 { - right: 24rem; + .\32xl\:right-0\.5 { + right: 0.125rem; } - .\32xl\:bottom-96 { - bottom: 24rem; + .\32xl\:right-1\.5 { + right: 0.375rem; } - .\32xl\:left-96 { - left: 24rem; + .\32xl\:right-2\.5 { + right: 0.625rem; } - .\32xl\:top-auto { - top: auto; + .\32xl\:right-3\.5 { + right: 0.875rem; } - .\32xl\:right-auto { - right: auto; + .\32xl\:-right-0 { + right: 0px; } - .\32xl\:bottom-auto { - bottom: auto; + .\32xl\:-right-1 { + right: -0.25rem; } - .\32xl\:left-auto { - left: auto; + .\32xl\:-right-2 { + right: -0.5rem; } - .\32xl\:top-px { - top: 1px; + .\32xl\:-right-3 { + right: -0.75rem; } - .\32xl\:right-px { - right: 1px; + .\32xl\:-right-4 { + right: -1rem; } - .\32xl\:bottom-px { - bottom: 1px; + .\32xl\:-right-5 { + right: -1.25rem; } - .\32xl\:left-px { - left: 1px; + .\32xl\:-right-6 { + right: -1.5rem; } - .\32xl\:top-0\.5 { - top: 0.125rem; + .\32xl\:-right-7 { + right: -1.75rem; } - .\32xl\:right-0\.5 { - right: 0.125rem; + .\32xl\:-right-8 { + right: -2rem; } - .\32xl\:bottom-0\.5 { - bottom: 0.125rem; + .\32xl\:-right-9 { + right: -2.25rem; } - .\32xl\:left-0\.5 { - left: 0.125rem; + .\32xl\:-right-10 { + right: -2.5rem; } - .\32xl\:top-1\.5 { - top: 0.375rem; + .\32xl\:-right-11 { + right: -2.75rem; } - .\32xl\:right-1\.5 { - right: 0.375rem; + .\32xl\:-right-12 { + right: -3rem; } - .\32xl\:bottom-1\.5 { - bottom: 0.375rem; + .\32xl\:-right-14 { + right: -3.5rem; } - .\32xl\:left-1\.5 { - left: 0.375rem; + .\32xl\:-right-16 { + right: -4rem; } - .\32xl\:top-2\.5 { - top: 0.625rem; + .\32xl\:-right-20 { + right: -5rem; } - .\32xl\:right-2\.5 { - right: 0.625rem; + .\32xl\:-right-24 { + right: -6rem; } - .\32xl\:bottom-2\.5 { - bottom: 0.625rem; + .\32xl\:-right-28 { + right: -7rem; } - .\32xl\:left-2\.5 { - left: 0.625rem; + .\32xl\:-right-32 { + right: -8rem; } - .\32xl\:top-3\.5 { - top: 0.875rem; + .\32xl\:-right-36 { + right: -9rem; } - .\32xl\:right-3\.5 { - right: 0.875rem; + .\32xl\:-right-40 { + right: -10rem; } - .\32xl\:bottom-3\.5 { - bottom: 0.875rem; + .\32xl\:-right-44 { + right: -11rem; } - .\32xl\:left-3\.5 { - left: 0.875rem; + .\32xl\:-right-48 { + right: -12rem; } - .\32xl\:-top-0 { - top: 0px; + .\32xl\:-right-52 { + right: -13rem; } - .\32xl\:-right-0 { - right: 0px; + .\32xl\:-right-56 { + right: -14rem; } - .\32xl\:-bottom-0 { - bottom: 0px; + .\32xl\:-right-60 { + right: -15rem; } - .\32xl\:-left-0 { - left: 0px; + .\32xl\:-right-64 { + right: -16rem; } - .\32xl\:-top-1 { - top: -0.25rem; + .\32xl\:-right-72 { + right: -18rem; } - .\32xl\:-right-1 { - right: -0.25rem; + .\32xl\:-right-80 { + right: -20rem; } - .\32xl\:-bottom-1 { - bottom: -0.25rem; + .\32xl\:-right-96 { + right: -24rem; } - .\32xl\:-left-1 { - left: -0.25rem; + .\32xl\:-right-px { + right: -1px; } - .\32xl\:-top-2 { - top: -0.5rem; + .\32xl\:-right-0\.5 { + right: -0.125rem; } - .\32xl\:-right-2 { - right: -0.5rem; + .\32xl\:-right-1\.5 { + right: -0.375rem; } - .\32xl\:-bottom-2 { - bottom: -0.5rem; + .\32xl\:-right-2\.5 { + right: -0.625rem; } - .\32xl\:-left-2 { - left: -0.5rem; + .\32xl\:-right-3\.5 { + right: -0.875rem; } - .\32xl\:-top-3 { - top: -0.75rem; + .\32xl\:right-1\/2 { + right: 50%; } - .\32xl\:-right-3 { - right: -0.75rem; + .\32xl\:right-1\/3 { + right: 33.333333%; } - .\32xl\:-bottom-3 { - bottom: -0.75rem; + .\32xl\:right-2\/3 { + right: 66.666667%; } - .\32xl\:-left-3 { - left: -0.75rem; + .\32xl\:right-1\/4 { + right: 25%; } - .\32xl\:-top-4 { - top: -1rem; + .\32xl\:right-2\/4 { + right: 50%; } - .\32xl\:-right-4 { - right: -1rem; + .\32xl\:right-3\/4 { + right: 75%; } - .\32xl\:-bottom-4 { - bottom: -1rem; + .\32xl\:right-full { + right: 100%; } - .\32xl\:-left-4 { - left: -1rem; + .\32xl\:-right-1\/2 { + right: -50%; } - .\32xl\:-top-5 { - top: -1.25rem; + .\32xl\:-right-1\/3 { + right: -33.333333%; } - .\32xl\:-right-5 { - right: -1.25rem; + .\32xl\:-right-2\/3 { + right: -66.666667%; } - .\32xl\:-bottom-5 { - bottom: -1.25rem; + .\32xl\:-right-1\/4 { + right: -25%; } - .\32xl\:-left-5 { - left: -1.25rem; + .\32xl\:-right-2\/4 { + right: -50%; } - .\32xl\:-top-6 { - top: -1.5rem; + .\32xl\:-right-3\/4 { + right: -75%; } - .\32xl\:-right-6 { - right: -1.5rem; + .\32xl\:-right-full { + right: -100%; } - .\32xl\:-bottom-6 { - bottom: -1.5rem; + .\32xl\:bottom-0 { + bottom: 0px; } - .\32xl\:-left-6 { - left: -1.5rem; + .\32xl\:bottom-1 { + bottom: 0.25rem; } - .\32xl\:-top-7 { - top: -1.75rem; + .\32xl\:bottom-2 { + bottom: 0.5rem; } - .\32xl\:-right-7 { - right: -1.75rem; + .\32xl\:bottom-3 { + bottom: 0.75rem; } - .\32xl\:-bottom-7 { - bottom: -1.75rem; + .\32xl\:bottom-4 { + bottom: 1rem; } - .\32xl\:-left-7 { - left: -1.75rem; + .\32xl\:bottom-5 { + bottom: 1.25rem; } - .\32xl\:-top-8 { - top: -2rem; + .\32xl\:bottom-6 { + bottom: 1.5rem; } - .\32xl\:-right-8 { - right: -2rem; + .\32xl\:bottom-7 { + bottom: 1.75rem; } - .\32xl\:-bottom-8 { - bottom: -2rem; + .\32xl\:bottom-8 { + bottom: 2rem; } - .\32xl\:-left-8 { - left: -2rem; + .\32xl\:bottom-9 { + bottom: 2.25rem; } - .\32xl\:-top-9 { - top: -2.25rem; + .\32xl\:bottom-10 { + bottom: 2.5rem; } - .\32xl\:-right-9 { - right: -2.25rem; + .\32xl\:bottom-11 { + bottom: 2.75rem; } - .\32xl\:-bottom-9 { - bottom: -2.25rem; + .\32xl\:bottom-12 { + bottom: 3rem; } - .\32xl\:-left-9 { - left: -2.25rem; + .\32xl\:bottom-14 { + bottom: 3.5rem; } - .\32xl\:-top-10 { - top: -2.5rem; + .\32xl\:bottom-16 { + bottom: 4rem; } - .\32xl\:-right-10 { - right: -2.5rem; + .\32xl\:bottom-20 { + bottom: 5rem; } - .\32xl\:-bottom-10 { - bottom: -2.5rem; + .\32xl\:bottom-24 { + bottom: 6rem; } - .\32xl\:-left-10 { - left: -2.5rem; + .\32xl\:bottom-28 { + bottom: 7rem; } - .\32xl\:-top-11 { - top: -2.75rem; + .\32xl\:bottom-32 { + bottom: 8rem; } - .\32xl\:-right-11 { - right: -2.75rem; + .\32xl\:bottom-36 { + bottom: 9rem; } - .\32xl\:-bottom-11 { - bottom: -2.75rem; + .\32xl\:bottom-40 { + bottom: 10rem; } - .\32xl\:-left-11 { - left: -2.75rem; + .\32xl\:bottom-44 { + bottom: 11rem; } - .\32xl\:-top-12 { - top: -3rem; + .\32xl\:bottom-48 { + bottom: 12rem; } - .\32xl\:-right-12 { - right: -3rem; + .\32xl\:bottom-52 { + bottom: 13rem; } - .\32xl\:-bottom-12 { - bottom: -3rem; + .\32xl\:bottom-56 { + bottom: 14rem; } - .\32xl\:-left-12 { - left: -3rem; + .\32xl\:bottom-60 { + bottom: 15rem; } - .\32xl\:-top-14 { - top: -3.5rem; + .\32xl\:bottom-64 { + bottom: 16rem; } - .\32xl\:-right-14 { - right: -3.5rem; + .\32xl\:bottom-72 { + bottom: 18rem; } - .\32xl\:-bottom-14 { - bottom: -3.5rem; + .\32xl\:bottom-80 { + bottom: 20rem; } - .\32xl\:-left-14 { - left: -3.5rem; + .\32xl\:bottom-96 { + bottom: 24rem; } - .\32xl\:-top-16 { - top: -4rem; + .\32xl\:bottom-auto { + bottom: auto; } - .\32xl\:-right-16 { - right: -4rem; + .\32xl\:bottom-px { + bottom: 1px; } - .\32xl\:-bottom-16 { - bottom: -4rem; + .\32xl\:bottom-0\.5 { + bottom: 0.125rem; } - .\32xl\:-left-16 { - left: -4rem; + .\32xl\:bottom-1\.5 { + bottom: 0.375rem; } - .\32xl\:-top-20 { - top: -5rem; + .\32xl\:bottom-2\.5 { + bottom: 0.625rem; } - .\32xl\:-right-20 { - right: -5rem; + .\32xl\:bottom-3\.5 { + bottom: 0.875rem; } - .\32xl\:-bottom-20 { - bottom: -5rem; + .\32xl\:-bottom-0 { + bottom: 0px; } - .\32xl\:-left-20 { - left: -5rem; + .\32xl\:-bottom-1 { + bottom: -0.25rem; } - .\32xl\:-top-24 { - top: -6rem; + .\32xl\:-bottom-2 { + bottom: -0.5rem; } - .\32xl\:-right-24 { - right: -6rem; + .\32xl\:-bottom-3 { + bottom: -0.75rem; } - .\32xl\:-bottom-24 { - bottom: -6rem; + .\32xl\:-bottom-4 { + bottom: -1rem; } - .\32xl\:-left-24 { - left: -6rem; + .\32xl\:-bottom-5 { + bottom: -1.25rem; } - .\32xl\:-top-28 { - top: -7rem; + .\32xl\:-bottom-6 { + bottom: -1.5rem; } - .\32xl\:-right-28 { - right: -7rem; + .\32xl\:-bottom-7 { + bottom: -1.75rem; } - .\32xl\:-bottom-28 { - bottom: -7rem; + .\32xl\:-bottom-8 { + bottom: -2rem; } - .\32xl\:-left-28 { - left: -7rem; + .\32xl\:-bottom-9 { + bottom: -2.25rem; } - .\32xl\:-top-32 { - top: -8rem; + .\32xl\:-bottom-10 { + bottom: -2.5rem; } - .\32xl\:-right-32 { - right: -8rem; + .\32xl\:-bottom-11 { + bottom: -2.75rem; } - .\32xl\:-bottom-32 { - bottom: -8rem; + .\32xl\:-bottom-12 { + bottom: -3rem; } - .\32xl\:-left-32 { - left: -8rem; + .\32xl\:-bottom-14 { + bottom: -3.5rem; } - .\32xl\:-top-36 { - top: -9rem; + .\32xl\:-bottom-16 { + bottom: -4rem; } - .\32xl\:-right-36 { - right: -9rem; + .\32xl\:-bottom-20 { + bottom: -5rem; } - .\32xl\:-bottom-36 { - bottom: -9rem; + .\32xl\:-bottom-24 { + bottom: -6rem; } - .\32xl\:-left-36 { - left: -9rem; + .\32xl\:-bottom-28 { + bottom: -7rem; } - .\32xl\:-top-40 { - top: -10rem; + .\32xl\:-bottom-32 { + bottom: -8rem; } - .\32xl\:-right-40 { - right: -10rem; + .\32xl\:-bottom-36 { + bottom: -9rem; } .\32xl\:-bottom-40 { bottom: -10rem; } - .\32xl\:-left-40 { - left: -10rem; + .\32xl\:-bottom-44 { + bottom: -11rem; } - .\32xl\:-top-44 { - top: -11rem; + .\32xl\:-bottom-48 { + bottom: -12rem; } - .\32xl\:-right-44 { - right: -11rem; + .\32xl\:-bottom-52 { + bottom: -13rem; } - .\32xl\:-bottom-44 { - bottom: -11rem; + .\32xl\:-bottom-56 { + bottom: -14rem; } - .\32xl\:-left-44 { - left: -11rem; + .\32xl\:-bottom-60 { + bottom: -15rem; } - .\32xl\:-top-48 { - top: -12rem; + .\32xl\:-bottom-64 { + bottom: -16rem; } - .\32xl\:-right-48 { - right: -12rem; + .\32xl\:-bottom-72 { + bottom: -18rem; } - .\32xl\:-bottom-48 { - bottom: -12rem; + .\32xl\:-bottom-80 { + bottom: -20rem; } - .\32xl\:-left-48 { - left: -12rem; + .\32xl\:-bottom-96 { + bottom: -24rem; } - .\32xl\:-top-52 { - top: -13rem; + .\32xl\:-bottom-px { + bottom: -1px; } - .\32xl\:-right-52 { - right: -13rem; + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .\32xl\:-bottom-52 { - bottom: -13rem; + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .\32xl\:-left-52 { - left: -13rem; + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .\32xl\:-top-56 { - top: -14rem; + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .\32xl\:-right-56 { - right: -14rem; + .\32xl\:bottom-1\/2 { + bottom: 50%; } - .\32xl\:-bottom-56 { - bottom: -14rem; + .\32xl\:bottom-1\/3 { + bottom: 33.333333%; } - .\32xl\:-left-56 { - left: -14rem; + .\32xl\:bottom-2\/3 { + bottom: 66.666667%; } - .\32xl\:-top-60 { - top: -15rem; + .\32xl\:bottom-1\/4 { + bottom: 25%; } - .\32xl\:-right-60 { - right: -15rem; + .\32xl\:bottom-2\/4 { + bottom: 50%; } - .\32xl\:-bottom-60 { - bottom: -15rem; + .\32xl\:bottom-3\/4 { + bottom: 75%; } - .\32xl\:-left-60 { - left: -15rem; + .\32xl\:bottom-full { + bottom: 100%; } - .\32xl\:-top-64 { - top: -16rem; + .\32xl\:-bottom-1\/2 { + bottom: -50%; } - .\32xl\:-right-64 { - right: -16rem; + .\32xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .\32xl\:-bottom-64 { - bottom: -16rem; + .\32xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .\32xl\:-left-64 { - left: -16rem; + .\32xl\:-bottom-1\/4 { + bottom: -25%; } - .\32xl\:-top-72 { - top: -18rem; + .\32xl\:-bottom-2\/4 { + bottom: -50%; } - .\32xl\:-right-72 { - right: -18rem; + .\32xl\:-bottom-3\/4 { + bottom: -75%; } - .\32xl\:-bottom-72 { - bottom: -18rem; + .\32xl\:-bottom-full { + bottom: -100%; } - .\32xl\:-left-72 { - left: -18rem; + .\32xl\:left-0 { + left: 0px; } - .\32xl\:-top-80 { - top: -20rem; + .\32xl\:left-1 { + left: 0.25rem; } - .\32xl\:-right-80 { - right: -20rem; + .\32xl\:left-2 { + left: 0.5rem; } - .\32xl\:-bottom-80 { - bottom: -20rem; + .\32xl\:left-3 { + left: 0.75rem; } - .\32xl\:-left-80 { - left: -20rem; + .\32xl\:left-4 { + left: 1rem; } - .\32xl\:-top-96 { - top: -24rem; + .\32xl\:left-5 { + left: 1.25rem; } - .\32xl\:-right-96 { - right: -24rem; + .\32xl\:left-6 { + left: 1.5rem; } - .\32xl\:-bottom-96 { - bottom: -24rem; + .\32xl\:left-7 { + left: 1.75rem; } - .\32xl\:-left-96 { - left: -24rem; + .\32xl\:left-8 { + left: 2rem; } - .\32xl\:-top-px { - top: -1px; + .\32xl\:left-9 { + left: 2.25rem; } - .\32xl\:-right-px { - right: -1px; + .\32xl\:left-10 { + left: 2.5rem; } - .\32xl\:-bottom-px { - bottom: -1px; + .\32xl\:left-11 { + left: 2.75rem; } - .\32xl\:-left-px { - left: -1px; + .\32xl\:left-12 { + left: 3rem; } - .\32xl\:-top-0\.5 { - top: -0.125rem; + .\32xl\:left-14 { + left: 3.5rem; } - .\32xl\:-right-0\.5 { - right: -0.125rem; + .\32xl\:left-16 { + left: 4rem; } - .\32xl\:-bottom-0\.5 { - bottom: -0.125rem; + .\32xl\:left-20 { + left: 5rem; } - .\32xl\:-left-0\.5 { - left: -0.125rem; + .\32xl\:left-24 { + left: 6rem; } - .\32xl\:-top-1\.5 { - top: -0.375rem; + .\32xl\:left-28 { + left: 7rem; } - .\32xl\:-right-1\.5 { - right: -0.375rem; + .\32xl\:left-32 { + left: 8rem; } - .\32xl\:-bottom-1\.5 { - bottom: -0.375rem; + .\32xl\:left-36 { + left: 9rem; } - .\32xl\:-left-1\.5 { - left: -0.375rem; + .\32xl\:left-40 { + left: 10rem; } - .\32xl\:-top-2\.5 { - top: -0.625rem; + .\32xl\:left-44 { + left: 11rem; } - .\32xl\:-right-2\.5 { - right: -0.625rem; + .\32xl\:left-48 { + left: 12rem; } - .\32xl\:-bottom-2\.5 { - bottom: -0.625rem; + .\32xl\:left-52 { + left: 13rem; } - .\32xl\:-left-2\.5 { - left: -0.625rem; + .\32xl\:left-56 { + left: 14rem; } - .\32xl\:-top-3\.5 { - top: -0.875rem; + .\32xl\:left-60 { + left: 15rem; } - .\32xl\:-right-3\.5 { - right: -0.875rem; + .\32xl\:left-64 { + left: 16rem; } - .\32xl\:-bottom-3\.5 { - bottom: -0.875rem; + .\32xl\:left-72 { + left: 18rem; } - .\32xl\:-left-3\.5 { - left: -0.875rem; + .\32xl\:left-80 { + left: 20rem; } - .\32xl\:top-1\/2 { - top: 50%; + .\32xl\:left-96 { + left: 24rem; } - .\32xl\:right-1\/2 { - right: 50%; + .\32xl\:left-auto { + left: auto; } - .\32xl\:bottom-1\/2 { - bottom: 50%; + .\32xl\:left-px { + left: 1px; } - .\32xl\:left-1\/2 { - left: 50%; + .\32xl\:left-0\.5 { + left: 0.125rem; } - .\32xl\:top-1\/3 { - top: 33.333333%; + .\32xl\:left-1\.5 { + left: 0.375rem; } - .\32xl\:right-1\/3 { - right: 33.333333%; + .\32xl\:left-2\.5 { + left: 0.625rem; } - .\32xl\:bottom-1\/3 { - bottom: 33.333333%; + .\32xl\:left-3\.5 { + left: 0.875rem; } - .\32xl\:left-1\/3 { - left: 33.333333%; + .\32xl\:-left-0 { + left: 0px; } - .\32xl\:top-2\/3 { - top: 66.666667%; + .\32xl\:-left-1 { + left: -0.25rem; } - .\32xl\:right-2\/3 { - right: 66.666667%; + .\32xl\:-left-2 { + left: -0.5rem; } - .\32xl\:bottom-2\/3 { - bottom: 66.666667%; + .\32xl\:-left-3 { + left: -0.75rem; } - .\32xl\:left-2\/3 { - left: 66.666667%; + .\32xl\:-left-4 { + left: -1rem; } - .\32xl\:top-1\/4 { - top: 25%; + .\32xl\:-left-5 { + left: -1.25rem; } - .\32xl\:right-1\/4 { - right: 25%; + .\32xl\:-left-6 { + left: -1.5rem; } - .\32xl\:bottom-1\/4 { - bottom: 25%; + .\32xl\:-left-7 { + left: -1.75rem; } - .\32xl\:left-1\/4 { - left: 25%; + .\32xl\:-left-8 { + left: -2rem; } - .\32xl\:top-2\/4 { - top: 50%; + .\32xl\:-left-9 { + left: -2.25rem; } - .\32xl\:right-2\/4 { - right: 50%; + .\32xl\:-left-10 { + left: -2.5rem; } - .\32xl\:bottom-2\/4 { - bottom: 50%; + .\32xl\:-left-11 { + left: -2.75rem; } - .\32xl\:left-2\/4 { - left: 50%; + .\32xl\:-left-12 { + left: -3rem; } - .\32xl\:top-3\/4 { - top: 75%; + .\32xl\:-left-14 { + left: -3.5rem; } - .\32xl\:right-3\/4 { - right: 75%; + .\32xl\:-left-16 { + left: -4rem; } - .\32xl\:bottom-3\/4 { - bottom: 75%; + .\32xl\:-left-20 { + left: -5rem; } - .\32xl\:left-3\/4 { - left: 75%; + .\32xl\:-left-24 { + left: -6rem; } - .\32xl\:top-full { - top: 100%; + .\32xl\:-left-28 { + left: -7rem; } - .\32xl\:right-full { - right: 100%; + .\32xl\:-left-32 { + left: -8rem; } - .\32xl\:bottom-full { - bottom: 100%; + .\32xl\:-left-36 { + left: -9rem; } - .\32xl\:left-full { - left: 100%; + .\32xl\:-left-40 { + left: -10rem; } - .\32xl\:-top-1\/2 { - top: -50%; + .\32xl\:-left-44 { + left: -11rem; } - .\32xl\:-right-1\/2 { - right: -50%; + .\32xl\:-left-48 { + left: -12rem; } - .\32xl\:-bottom-1\/2 { - bottom: -50%; + .\32xl\:-left-52 { + left: -13rem; } - .\32xl\:-left-1\/2 { - left: -50%; + .\32xl\:-left-56 { + left: -14rem; } - .\32xl\:-top-1\/3 { - top: -33.333333%; + .\32xl\:-left-60 { + left: -15rem; } - .\32xl\:-right-1\/3 { - right: -33.333333%; + .\32xl\:-left-64 { + left: -16rem; } - .\32xl\:-bottom-1\/3 { - bottom: -33.333333%; + .\32xl\:-left-72 { + left: -18rem; } - .\32xl\:-left-1\/3 { - left: -33.333333%; + .\32xl\:-left-80 { + left: -20rem; } - .\32xl\:-top-2\/3 { - top: -66.666667%; + .\32xl\:-left-96 { + left: -24rem; } - .\32xl\:-right-2\/3 { - right: -66.666667%; + .\32xl\:-left-px { + left: -1px; } - .\32xl\:-bottom-2\/3 { - bottom: -66.666667%; + .\32xl\:-left-0\.5 { + left: -0.125rem; } - .\32xl\:-left-2\/3 { - left: -66.666667%; + .\32xl\:-left-1\.5 { + left: -0.375rem; } - .\32xl\:-top-1\/4 { - top: -25%; + .\32xl\:-left-2\.5 { + left: -0.625rem; } - .\32xl\:-right-1\/4 { - right: -25%; + .\32xl\:-left-3\.5 { + left: -0.875rem; } - .\32xl\:-bottom-1\/4 { - bottom: -25%; + .\32xl\:left-1\/2 { + left: 50%; } - .\32xl\:-left-1\/4 { - left: -25%; + .\32xl\:left-1\/3 { + left: 33.333333%; } - .\32xl\:-top-2\/4 { - top: -50%; + .\32xl\:left-2\/3 { + left: 66.666667%; } - .\32xl\:-right-2\/4 { - right: -50%; + .\32xl\:left-1\/4 { + left: 25%; } - .\32xl\:-bottom-2\/4 { - bottom: -50%; + .\32xl\:left-2\/4 { + left: 50%; } - .\32xl\:-left-2\/4 { - left: -50%; + .\32xl\:left-3\/4 { + left: 75%; } - .\32xl\:-top-3\/4 { - top: -75%; + .\32xl\:left-full { + left: 100%; } - .\32xl\:-right-3\/4 { - right: -75%; + .\32xl\:-left-1\/2 { + left: -50%; } - .\32xl\:-bottom-3\/4 { - bottom: -75%; + .\32xl\:-left-1\/3 { + left: -33.333333%; } - .\32xl\:-left-3\/4 { - left: -75%; + .\32xl\:-left-2\/3 { + left: -66.666667%; } - .\32xl\:-top-full { - top: -100%; + .\32xl\:-left-1\/4 { + left: -25%; } - .\32xl\:-right-full { - right: -100%; + .\32xl\:-left-2\/4 { + left: -50%; } - .\32xl\:-bottom-full { - bottom: -100%; + .\32xl\:-left-3\/4 { + left: -75%; } .\32xl\:-left-full { @@ -142503,133 +142631,183 @@ video { --tw-scale-y: 1.5; } - .\32xl\:scale-x-0 { + .\32xl\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:scale-x-50 { + .\32xl\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:scale-x-75 { + .\32xl\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:scale-x-90 { + .\32xl\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:scale-x-95 { + .\32xl\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:scale-x-100 { + .\32xl\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:scale-x-105 { + .\32xl\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:scale-x-110 { + .\32xl\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:scale-x-125 { + .\32xl\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:scale-x-150 { + .\32xl\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:scale-y-0 { + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .\32xl\:scale-y-50 { + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .\32xl\:scale-y-75 { + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .\32xl\:scale-y-90 { + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .\32xl\:scale-y-95 { + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .\32xl\:scale-y-100 { + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .\32xl\:scale-y-105 { + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .\32xl\:scale-y-110 { + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .\32xl\:scale-y-125 { + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .\32xl\:scale-y-150 { + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .\32xl\:hover\:scale-0:hover { + .\32xl\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .\32xl\:hover\:scale-50:hover { + .\32xl\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .\32xl\:hover\:scale-75:hover { + .\32xl\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .\32xl\:hover\:scale-90:hover { + .\32xl\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .\32xl\:hover\:scale-95:hover { + .\32xl\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .\32xl\:hover\:scale-100:hover { + .\32xl\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .\32xl\:hover\:scale-105:hover { + .\32xl\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .\32xl\:hover\:scale-110:hover { + .\32xl\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .\32xl\:hover\:scale-125:hover { + .\32xl\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .\32xl\:hover\:scale-150:hover { + .\32xl\:scale-x-150 { --tw-scale-x: 1.5; + } + + .\32xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .\32xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .\32xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .\32xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .\32xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .\32xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .\32xl\:scale-y-150 { --tw-scale-y: 1.5; } @@ -142713,56 +142891,6 @@ video { --tw-scale-y: 1.5; } - .\32xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .\32xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .\32xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .\32xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .\32xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .\32xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .\32xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .\32xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .\32xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .\32xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .\32xl\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -143655,436 +143783,640 @@ video { row-gap: 0.875rem; } - .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .\32xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -144093,408 +144425,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -144503,66 +144631,66 @@ video { --tw-space-x-reverse: 1; } - .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -149414,2188 +149542,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .\32xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .\32xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .\32xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .\32xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .\32xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .\32xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .\32xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .\32xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .\32xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .\32xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .\32xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .\32xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .\32xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .\32xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .\32xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .\32xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .\32xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .\32xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .\32xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .\32xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .\32xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .\32xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .\32xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .\32xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .\32xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .\32xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .\32xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .\32xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .\32xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .\32xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .\32xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .\32xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .\32xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .\32xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .\32xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .\32xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .\32xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .\32xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .\32xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .\32xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .\32xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .\32xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .\32xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .\32xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .\32xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .\32xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .\32xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .\32xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .\32xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .\32xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .\32xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .\32xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .\32xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .\32xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .\32xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .\32xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .\32xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .\32xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .\32xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .\32xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .\32xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .\32xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .\32xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .\32xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .\32xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .\32xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .\32xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .\32xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .\32xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .\32xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .\32xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .\32xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .\32xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .\32xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .\32xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .\32xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .\32xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .\32xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .\32xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .\32xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .\32xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .\32xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .\32xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .\32xl\:to-transparent { - --tw-gradient-to: transparent; + .\32xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:to-current { - --tw-gradient-to: currentColor; + .\32xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:to-black { - --tw-gradient-to: #000; + .\32xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:to-white { - --tw-gradient-to: #fff; + .\32xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .\32xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .\32xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .\32xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .\32xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .\32xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .\32xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .\32xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:to-gray-700 { - --tw-gradient-to: #374151; + .\32xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .\32xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:to-gray-900 { - --tw-gradient-to: #111827; + .\32xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .\32xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .\32xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .\32xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .\32xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:to-red-400 { - --tw-gradient-to: #f87171; + .\32xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .\32xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .\32xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .\32xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .\32xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .\32xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .\32xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .\32xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .\32xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .\32xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .\32xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .\32xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .\32xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .\32xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .\32xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .\32xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .\32xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .\32xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .\32xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .\32xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:to-green-400 { - --tw-gradient-to: #34d399; + .\32xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:to-green-500 { - --tw-gradient-to: #10b981; + .\32xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:to-green-600 { - --tw-gradient-to: #059669; + .\32xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:to-green-700 { - --tw-gradient-to: #047857; + .\32xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:to-green-800 { - --tw-gradient-to: #065f46; + .\32xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .\32xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .\32xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .\32xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .\32xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .\32xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .\32xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .\32xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .\32xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .\32xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .\32xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .\32xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .\32xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .\32xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .\32xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .\32xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .\32xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .\32xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .\32xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .\32xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .\32xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .\32xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .\32xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .\32xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .\32xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .\32xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .\32xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .\32xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .\32xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .\32xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .\32xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .\32xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .\32xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .\32xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .\32xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .\32xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .\32xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .\32xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .\32xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .\32xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .\32xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:to-pink-900 { - --tw-gradient-to: #831843; + .\32xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:hover\:from-transparent:hover { + .\32xl\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:from-current:hover { + .\32xl\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:from-black:hover { + .\32xl\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:from-white:hover { + .\32xl\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:from-gray-50:hover { + .\32xl\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:hover\:from-gray-100:hover { + .\32xl\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:hover\:from-gray-200:hover { + .\32xl\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:hover\:from-gray-300:hover { + .\32xl\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:hover\:from-gray-400:hover { + .\32xl\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:hover\:from-gray-500:hover { + .\32xl\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:hover\:from-gray-600:hover { + .\32xl\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:hover\:from-gray-700:hover { + .\32xl\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:hover\:from-gray-800:hover { + .\32xl\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:hover\:from-gray-900:hover { + .\32xl\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:hover\:from-red-50:hover { + .\32xl\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:hover\:from-red-100:hover { + .\32xl\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:hover\:from-red-200:hover { + .\32xl\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:hover\:from-red-300:hover { + .\32xl\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:hover\:from-red-400:hover { + .\32xl\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:hover\:from-red-500:hover { + .\32xl\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:hover\:from-red-600:hover { + .\32xl\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:hover\:from-red-700:hover { + .\32xl\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:hover\:from-red-800:hover { + .\32xl\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:hover\:from-red-900:hover { + .\32xl\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:hover\:from-yellow-50:hover { + .\32xl\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:hover\:from-yellow-100:hover { + .\32xl\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:hover\:from-yellow-200:hover { + .\32xl\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:hover\:from-yellow-300:hover { + .\32xl\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:hover\:from-yellow-400:hover { + .\32xl\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:hover\:from-yellow-500:hover { + .\32xl\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:hover\:from-yellow-600:hover { + .\32xl\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:hover\:from-yellow-700:hover { + .\32xl\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:hover\:from-yellow-800:hover { + .\32xl\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:hover\:from-yellow-900:hover { + .\32xl\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:hover\:from-green-50:hover { + .\32xl\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:hover\:from-green-100:hover { + .\32xl\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:hover\:from-green-200:hover { + .\32xl\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:hover\:from-green-300:hover { + .\32xl\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:hover\:from-green-400:hover { + .\32xl\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:hover\:from-green-500:hover { + .\32xl\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:hover\:from-green-600:hover { + .\32xl\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:hover\:from-green-700:hover { + .\32xl\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:hover\:from-green-800:hover { + .\32xl\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:hover\:from-green-900:hover { + .\32xl\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:hover\:from-blue-50:hover { + .\32xl\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:hover\:from-blue-100:hover { + .\32xl\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:hover\:from-blue-200:hover { + .\32xl\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:hover\:from-blue-300:hover { + .\32xl\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:hover\:from-blue-400:hover { + .\32xl\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:hover\:from-blue-500:hover { + .\32xl\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:hover\:from-blue-600:hover { + .\32xl\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:hover\:from-blue-700:hover { + .\32xl\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:hover\:from-blue-800:hover { + .\32xl\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:hover\:from-blue-900:hover { + .\32xl\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:hover\:from-indigo-50:hover { + .\32xl\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:hover\:from-indigo-100:hover { + .\32xl\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:hover\:from-indigo-200:hover { + .\32xl\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:hover\:from-indigo-300:hover { + .\32xl\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:hover\:from-indigo-400:hover { + .\32xl\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:hover\:from-indigo-500:hover { + .\32xl\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:hover\:from-indigo-600:hover { + .\32xl\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:hover\:from-indigo-700:hover { + .\32xl\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:hover\:from-indigo-800:hover { + .\32xl\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:hover\:from-indigo-900:hover { + .\32xl\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:hover\:from-purple-50:hover { + .\32xl\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:hover\:from-purple-100:hover { + .\32xl\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:hover\:from-purple-200:hover { + .\32xl\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:hover\:from-purple-300:hover { + .\32xl\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:hover\:from-purple-400:hover { + .\32xl\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:hover\:from-purple-500:hover { + .\32xl\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:hover\:from-purple-600:hover { + .\32xl\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:hover\:from-purple-700:hover { + .\32xl\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:hover\:from-purple-800:hover { + .\32xl\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:hover\:from-purple-900:hover { + .\32xl\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:hover\:from-pink-50:hover { + .\32xl\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:hover\:from-pink-100:hover { + .\32xl\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:hover\:from-pink-200:hover { + .\32xl\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:hover\:from-pink-300:hover { + .\32xl\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:hover\:from-pink-400:hover { + .\32xl\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:hover\:from-pink-500:hover { + .\32xl\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:hover\:from-pink-600:hover { + .\32xl\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:hover\:from-pink-700:hover { + .\32xl\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:hover\:from-pink-800:hover { + .\32xl\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:hover\:from-pink-900:hover { + .\32xl\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:hover\:via-transparent:hover { + .\32xl\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:via-current:hover { + .\32xl\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:via-black:hover { + .\32xl\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:via-white:hover { + .\32xl\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:via-gray-50:hover { + .\32xl\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:hover\:via-gray-100:hover { + .\32xl\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:hover\:via-gray-200:hover { + .\32xl\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:hover\:via-gray-300:hover { + .\32xl\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:hover\:via-gray-400:hover { + .\32xl\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:hover\:via-gray-500:hover { + .\32xl\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:hover\:via-gray-600:hover { + .\32xl\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:hover\:via-gray-700:hover { + .\32xl\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:hover\:via-gray-800:hover { + .\32xl\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:hover\:via-gray-900:hover { + .\32xl\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:hover\:via-red-50:hover { + .\32xl\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:hover\:via-red-100:hover { + .\32xl\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:hover\:via-red-200:hover { + .\32xl\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:hover\:via-red-300:hover { + .\32xl\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:hover\:via-red-400:hover { + .\32xl\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:hover\:via-red-500:hover { + .\32xl\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:hover\:via-red-600:hover { + .\32xl\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:hover\:via-red-700:hover { + .\32xl\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:hover\:via-red-800:hover { + .\32xl\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:hover\:via-red-900:hover { + .\32xl\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:hover\:via-yellow-50:hover { + .\32xl\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:hover\:via-yellow-100:hover { + .\32xl\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:hover\:via-yellow-200:hover { + .\32xl\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:hover\:via-yellow-300:hover { + .\32xl\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:hover\:via-yellow-400:hover { + .\32xl\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:hover\:via-yellow-500:hover { + .\32xl\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:hover\:via-yellow-600:hover { + .\32xl\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:hover\:via-yellow-700:hover { + .\32xl\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:hover\:via-yellow-800:hover { + .\32xl\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:hover\:via-yellow-900:hover { + .\32xl\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:hover\:via-green-50:hover { + .\32xl\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:hover\:via-green-100:hover { + .\32xl\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:hover\:via-green-200:hover { + .\32xl\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:hover\:via-green-300:hover { + .\32xl\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:hover\:via-green-400:hover { + .\32xl\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:hover\:via-green-500:hover { + .\32xl\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:hover\:via-green-600:hover { + .\32xl\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:hover\:via-green-700:hover { + .\32xl\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:hover\:via-green-800:hover { + .\32xl\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:hover\:via-green-900:hover { + .\32xl\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:hover\:via-blue-50:hover { + .\32xl\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:hover\:via-blue-100:hover { + .\32xl\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:hover\:via-blue-200:hover { + .\32xl\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:hover\:via-blue-300:hover { + .\32xl\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:hover\:via-blue-400:hover { + .\32xl\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:hover\:via-blue-500:hover { + .\32xl\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:hover\:via-blue-600:hover { + .\32xl\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:hover\:via-blue-700:hover { + .\32xl\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:hover\:via-blue-800:hover { + .\32xl\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:hover\:via-blue-900:hover { + .\32xl\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:hover\:via-indigo-50:hover { + .\32xl\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:hover\:via-indigo-100:hover { + .\32xl\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:hover\:via-indigo-200:hover { + .\32xl\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:hover\:via-indigo-300:hover { + .\32xl\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:hover\:via-indigo-400:hover { + .\32xl\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:hover\:via-indigo-500:hover { + .\32xl\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:hover\:via-indigo-600:hover { + .\32xl\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:hover\:via-indigo-700:hover { + .\32xl\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:hover\:via-indigo-800:hover { + .\32xl\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:hover\:via-indigo-900:hover { + .\32xl\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:hover\:via-purple-50:hover { + .\32xl\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:hover\:via-purple-100:hover { + .\32xl\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:hover\:via-purple-200:hover { + .\32xl\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:hover\:via-purple-300:hover { + .\32xl\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:hover\:via-purple-400:hover { + .\32xl\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:hover\:via-purple-500:hover { + .\32xl\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:hover\:via-purple-600:hover { + .\32xl\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:hover\:via-purple-700:hover { + .\32xl\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:hover\:via-purple-800:hover { + .\32xl\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:hover\:via-purple-900:hover { + .\32xl\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:hover\:via-pink-50:hover { + .\32xl\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:hover\:via-pink-100:hover { + .\32xl\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:hover\:via-pink-200:hover { + .\32xl\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:hover\:via-pink-300:hover { + .\32xl\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:hover\:via-pink-400:hover { + .\32xl\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:hover\:via-pink-500:hover { + .\32xl\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:hover\:via-pink-600:hover { + .\32xl\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:hover\:via-pink-700:hover { + .\32xl\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:hover\:via-pink-800:hover { + .\32xl\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:hover\:via-pink-900:hover { + .\32xl\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .\32xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .\32xl\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .\32xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .\32xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .\32xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .\32xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .\32xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .\32xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .\32xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .\32xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .\32xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .\32xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .\32xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .\32xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .\32xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .\32xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .\32xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .\32xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .\32xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .\32xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .\32xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .\32xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .\32xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .\32xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .\32xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .\32xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .\32xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .\32xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .\32xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .\32xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .\32xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .\32xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .\32xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .\32xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .\32xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .\32xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .\32xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .\32xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .\32xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .\32xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .\32xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .\32xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .\32xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .\32xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .\32xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .\32xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .\32xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .\32xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .\32xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .\32xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .\32xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .\32xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .\32xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .\32xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .\32xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .\32xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .\32xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .\32xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .\32xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .\32xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .\32xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .\32xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .\32xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .\32xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .\32xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .\32xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .\32xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .\32xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .\32xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .\32xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .\32xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .\32xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .\32xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .\32xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .\32xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .\32xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .\32xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .\32xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .\32xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .\32xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .\32xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .\32xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .\32xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .\32xl\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .\32xl\:focus\:via-transparent:focus { @@ -151934,6 +151390,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .\32xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .\32xl\:to-current { + --tw-gradient-to: currentColor; + } + + .\32xl\:to-black { + --tw-gradient-to: #000; + } + + .\32xl\:to-white { + --tw-gradient-to: #fff; + } + + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .\32xl\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .\32xl\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .\32xl\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .\32xl\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .\32xl\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .\32xl\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .\32xl\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .\32xl\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .\32xl\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .\32xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .\32xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .\32xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .\32xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .\32xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .\32xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .\32xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .\32xl\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .\32xl\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .\32xl\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .\32xl\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .\32xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .\32xl\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .\32xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .\32xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .\32xl\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .\32xl\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .\32xl\:to-green-600 { + --tw-gradient-to: #059669; + } + + .\32xl\:to-green-700 { + --tw-gradient-to: #047857; + } + + .\32xl\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .\32xl\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .\32xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .\32xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .\32xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .\32xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .\32xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .\32xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .\32xl\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .\32xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .\32xl\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .\32xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .\32xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .\32xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .\32xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .\32xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .\32xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .\32xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .\32xl\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .\32xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .\32xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .\32xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .\32xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .\32xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .\32xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .\32xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .\32xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .\32xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .\32xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .\32xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .\32xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .\32xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .\32xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .\32xl\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .\32xl\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .\32xl\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .\32xl\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .\32xl\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .\32xl\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .\32xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .\32xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .\32xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .\32xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .\32xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .\32xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .\32xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .\32xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .\32xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .\32xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .\32xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .\32xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .\32xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .\32xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .\32xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .\32xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .\32xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .\32xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .\32xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .\32xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .\32xl\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -156949,10 +157077,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:ring-inset { - --tw-ring-inset: inset; - } - .\32xl\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -156989,10 +157113,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .\32xl\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -157029,6 +157149,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .\32xl\:ring-inset { + --tw-ring-inset: inset; + } + + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .\32xl\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -159789,6 +159917,38 @@ video { backdrop-filter: none; } + .\32xl\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .\32xl\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .\32xl\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .\32xl\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .\32xl\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .\32xl\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .\32xl\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .\32xl\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .\32xl\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } diff --git a/tests/fixtures/tailwind-output.css b/tests/fixtures/tailwind-output.css index 5c234b57f7f5..e718a71c36ba 100644 --- a/tests/fixtures/tailwind-output.css +++ b/tests/fixtures/tailwind-output.css @@ -1273,14 +1273,434 @@ video { left: -100%; } -.inset-y-0 { - top: 0px; - bottom: 0px; -} - .inset-x-0 { + left: 0px; right: 0px; +} + +.inset-x-1 { + left: 0.25rem; + right: 0.25rem; +} + +.inset-x-2 { + left: 0.5rem; + right: 0.5rem; +} + +.inset-x-3 { + left: 0.75rem; + right: 0.75rem; +} + +.inset-x-4 { + left: 1rem; + right: 1rem; +} + +.inset-x-5 { + left: 1.25rem; + right: 1.25rem; +} + +.inset-x-6 { + left: 1.5rem; + right: 1.5rem; +} + +.inset-x-7 { + left: 1.75rem; + right: 1.75rem; +} + +.inset-x-8 { + left: 2rem; + right: 2rem; +} + +.inset-x-9 { + left: 2.25rem; + right: 2.25rem; +} + +.inset-x-10 { + left: 2.5rem; + right: 2.5rem; +} + +.inset-x-11 { + left: 2.75rem; + right: 2.75rem; +} + +.inset-x-12 { + left: 3rem; + right: 3rem; +} + +.inset-x-14 { + left: 3.5rem; + right: 3.5rem; +} + +.inset-x-16 { + left: 4rem; + right: 4rem; +} + +.inset-x-20 { + left: 5rem; + right: 5rem; +} + +.inset-x-24 { + left: 6rem; + right: 6rem; +} + +.inset-x-28 { + left: 7rem; + right: 7rem; +} + +.inset-x-32 { + left: 8rem; + right: 8rem; +} + +.inset-x-36 { + left: 9rem; + right: 9rem; +} + +.inset-x-40 { + left: 10rem; + right: 10rem; +} + +.inset-x-44 { + left: 11rem; + right: 11rem; +} + +.inset-x-48 { + left: 12rem; + right: 12rem; +} + +.inset-x-52 { + left: 13rem; + right: 13rem; +} + +.inset-x-56 { + left: 14rem; + right: 14rem; +} + +.inset-x-60 { + left: 15rem; + right: 15rem; +} + +.inset-x-64 { + left: 16rem; + right: 16rem; +} + +.inset-x-72 { + left: 18rem; + right: 18rem; +} + +.inset-x-80 { + left: 20rem; + right: 20rem; +} + +.inset-x-96 { + left: 24rem; + right: 24rem; +} + +.inset-x-auto { + left: auto; + right: auto; +} + +.inset-x-px { + left: 1px; + right: 1px; +} + +.inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; +} + +.inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; +} + +.inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; +} + +.inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; +} + +.-inset-x-0 { left: 0px; + right: 0px; +} + +.-inset-x-1 { + left: -0.25rem; + right: -0.25rem; +} + +.-inset-x-2 { + left: -0.5rem; + right: -0.5rem; +} + +.-inset-x-3 { + left: -0.75rem; + right: -0.75rem; +} + +.-inset-x-4 { + left: -1rem; + right: -1rem; +} + +.-inset-x-5 { + left: -1.25rem; + right: -1.25rem; +} + +.-inset-x-6 { + left: -1.5rem; + right: -1.5rem; +} + +.-inset-x-7 { + left: -1.75rem; + right: -1.75rem; +} + +.-inset-x-8 { + left: -2rem; + right: -2rem; +} + +.-inset-x-9 { + left: -2.25rem; + right: -2.25rem; +} + +.-inset-x-10 { + left: -2.5rem; + right: -2.5rem; +} + +.-inset-x-11 { + left: -2.75rem; + right: -2.75rem; +} + +.-inset-x-12 { + left: -3rem; + right: -3rem; +} + +.-inset-x-14 { + left: -3.5rem; + right: -3.5rem; +} + +.-inset-x-16 { + left: -4rem; + right: -4rem; +} + +.-inset-x-20 { + left: -5rem; + right: -5rem; +} + +.-inset-x-24 { + left: -6rem; + right: -6rem; +} + +.-inset-x-28 { + left: -7rem; + right: -7rem; +} + +.-inset-x-32 { + left: -8rem; + right: -8rem; +} + +.-inset-x-36 { + left: -9rem; + right: -9rem; +} + +.-inset-x-40 { + left: -10rem; + right: -10rem; +} + +.-inset-x-44 { + left: -11rem; + right: -11rem; +} + +.-inset-x-48 { + left: -12rem; + right: -12rem; +} + +.-inset-x-52 { + left: -13rem; + right: -13rem; +} + +.-inset-x-56 { + left: -14rem; + right: -14rem; +} + +.-inset-x-60 { + left: -15rem; + right: -15rem; +} + +.-inset-x-64 { + left: -16rem; + right: -16rem; +} + +.-inset-x-72 { + left: -18rem; + right: -18rem; +} + +.-inset-x-80 { + left: -20rem; + right: -20rem; +} + +.-inset-x-96 { + left: -24rem; + right: -24rem; +} + +.-inset-x-px { + left: -1px; + right: -1px; +} + +.-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; +} + +.-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; +} + +.-inset-x-2\.5 { + left: -0.625rem; + right: -0.625rem; +} + +.-inset-x-3\.5 { + left: -0.875rem; + right: -0.875rem; +} + +.inset-x-1\/2 { + left: 50%; + right: 50%; +} + +.inset-x-1\/3 { + left: 33.333333%; + right: 33.333333%; +} + +.inset-x-2\/3 { + left: 66.666667%; + right: 66.666667%; +} + +.inset-x-1\/4 { + left: 25%; + right: 25%; +} + +.inset-x-2\/4 { + left: 50%; + right: 50%; +} + +.inset-x-3\/4 { + left: 75%; + right: 75%; +} + +.inset-x-full { + left: 100%; + right: 100%; +} + +.-inset-x-1\/2 { + left: -50%; + right: -50%; +} + +.-inset-x-1\/3 { + left: -33.333333%; + right: -33.333333%; +} + +.-inset-x-2\/3 { + left: -66.666667%; + right: -66.666667%; +} + +.-inset-x-1\/4 { + left: -25%; + right: -25%; +} + +.-inset-x-2\/4 { + left: -50%; + right: -50%; +} + +.-inset-x-3\/4 { + left: -75%; + right: -75%; +} + +.-inset-x-full { + left: -100%; + right: -100%; +} + +.inset-y-0 { + top: 0px; + bottom: 0px; } .inset-y-1 { @@ -1288,2195 +1708,1775 @@ video { bottom: 0.25rem; } -.inset-x-1 { - right: 0.25rem; - left: 0.25rem; -} - .inset-y-2 { top: 0.5rem; bottom: 0.5rem; } -.inset-x-2 { - right: 0.5rem; - left: 0.5rem; -} - .inset-y-3 { top: 0.75rem; bottom: 0.75rem; } -.inset-x-3 { - right: 0.75rem; - left: 0.75rem; -} - .inset-y-4 { top: 1rem; bottom: 1rem; } -.inset-x-4 { - right: 1rem; - left: 1rem; -} - .inset-y-5 { top: 1.25rem; bottom: 1.25rem; } -.inset-x-5 { - right: 1.25rem; - left: 1.25rem; -} - .inset-y-6 { top: 1.5rem; bottom: 1.5rem; } -.inset-x-6 { - right: 1.5rem; - left: 1.5rem; -} - .inset-y-7 { top: 1.75rem; bottom: 1.75rem; } -.inset-x-7 { - right: 1.75rem; - left: 1.75rem; -} - .inset-y-8 { top: 2rem; bottom: 2rem; } -.inset-x-8 { - right: 2rem; - left: 2rem; -} - .inset-y-9 { top: 2.25rem; bottom: 2.25rem; } -.inset-x-9 { - right: 2.25rem; - left: 2.25rem; -} - .inset-y-10 { top: 2.5rem; bottom: 2.5rem; } -.inset-x-10 { - right: 2.5rem; - left: 2.5rem; -} - .inset-y-11 { top: 2.75rem; bottom: 2.75rem; } -.inset-x-11 { - right: 2.75rem; - left: 2.75rem; -} - .inset-y-12 { top: 3rem; bottom: 3rem; } -.inset-x-12 { - right: 3rem; - left: 3rem; -} - .inset-y-14 { top: 3.5rem; bottom: 3.5rem; } -.inset-x-14 { - right: 3.5rem; - left: 3.5rem; -} - .inset-y-16 { top: 4rem; bottom: 4rem; } -.inset-x-16 { - right: 4rem; - left: 4rem; -} - .inset-y-20 { top: 5rem; bottom: 5rem; } -.inset-x-20 { - right: 5rem; - left: 5rem; -} - .inset-y-24 { top: 6rem; bottom: 6rem; } -.inset-x-24 { - right: 6rem; - left: 6rem; -} - .inset-y-28 { top: 7rem; bottom: 7rem; } -.inset-x-28 { - right: 7rem; - left: 7rem; -} - .inset-y-32 { top: 8rem; bottom: 8rem; } -.inset-x-32 { - right: 8rem; - left: 8rem; -} - .inset-y-36 { top: 9rem; bottom: 9rem; } -.inset-x-36 { - right: 9rem; - left: 9rem; -} - .inset-y-40 { top: 10rem; bottom: 10rem; } -.inset-x-40 { - right: 10rem; - left: 10rem; -} - .inset-y-44 { top: 11rem; bottom: 11rem; } -.inset-x-44 { - right: 11rem; - left: 11rem; -} - .inset-y-48 { top: 12rem; bottom: 12rem; } -.inset-x-48 { - right: 12rem; - left: 12rem; -} - .inset-y-52 { top: 13rem; bottom: 13rem; } -.inset-x-52 { - right: 13rem; - left: 13rem; -} - .inset-y-56 { top: 14rem; bottom: 14rem; } -.inset-x-56 { - right: 14rem; - left: 14rem; -} - .inset-y-60 { top: 15rem; bottom: 15rem; } -.inset-x-60 { - right: 15rem; - left: 15rem; -} - .inset-y-64 { top: 16rem; bottom: 16rem; } -.inset-x-64 { - right: 16rem; - left: 16rem; -} - .inset-y-72 { top: 18rem; bottom: 18rem; } -.inset-x-72 { - right: 18rem; - left: 18rem; -} - .inset-y-80 { top: 20rem; bottom: 20rem; } -.inset-x-80 { - right: 20rem; - left: 20rem; -} - .inset-y-96 { top: 24rem; bottom: 24rem; } -.inset-x-96 { - right: 24rem; - left: 24rem; -} - .inset-y-auto { top: auto; bottom: auto; } -.inset-x-auto { - right: auto; - left: auto; -} - .inset-y-px { top: 1px; bottom: 1px; } -.inset-x-px { - right: 1px; - left: 1px; -} - .inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } -.inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; -} - .inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } -.inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; -} - .inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } -.inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; -} - .inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } -.inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; -} - .-inset-y-0 { top: 0px; bottom: 0px; } -.-inset-x-0 { - right: 0px; - left: 0px; -} - .-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } -.-inset-x-1 { - right: -0.25rem; - left: -0.25rem; -} - .-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } -.-inset-x-2 { - right: -0.5rem; - left: -0.5rem; -} - .-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } -.-inset-x-3 { - right: -0.75rem; - left: -0.75rem; -} - .-inset-y-4 { top: -1rem; bottom: -1rem; } -.-inset-x-4 { - right: -1rem; - left: -1rem; -} - .-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } -.-inset-x-5 { - right: -1.25rem; - left: -1.25rem; -} - .-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } -.-inset-x-6 { - right: -1.5rem; - left: -1.5rem; -} - .-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } -.-inset-x-7 { - right: -1.75rem; - left: -1.75rem; -} - .-inset-y-8 { top: -2rem; bottom: -2rem; } -.-inset-x-8 { - right: -2rem; - left: -2rem; -} - .-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } -.-inset-x-9 { - right: -2.25rem; - left: -2.25rem; -} - .-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } -.-inset-x-10 { - right: -2.5rem; - left: -2.5rem; -} - .-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } -.-inset-x-11 { - right: -2.75rem; - left: -2.75rem; -} - .-inset-y-12 { top: -3rem; bottom: -3rem; } -.-inset-x-12 { - right: -3rem; - left: -3rem; -} - .-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } -.-inset-x-14 { - right: -3.5rem; - left: -3.5rem; -} - .-inset-y-16 { top: -4rem; bottom: -4rem; } -.-inset-x-16 { - right: -4rem; - left: -4rem; -} - .-inset-y-20 { top: -5rem; bottom: -5rem; } -.-inset-x-20 { - right: -5rem; - left: -5rem; -} - .-inset-y-24 { top: -6rem; bottom: -6rem; } -.-inset-x-24 { - right: -6rem; - left: -6rem; -} - .-inset-y-28 { top: -7rem; bottom: -7rem; } -.-inset-x-28 { - right: -7rem; - left: -7rem; -} - .-inset-y-32 { top: -8rem; bottom: -8rem; } -.-inset-x-32 { - right: -8rem; - left: -8rem; -} - .-inset-y-36 { top: -9rem; bottom: -9rem; } -.-inset-x-36 { - right: -9rem; - left: -9rem; -} - .-inset-y-40 { top: -10rem; bottom: -10rem; } -.-inset-x-40 { - right: -10rem; - left: -10rem; -} - .-inset-y-44 { top: -11rem; bottom: -11rem; } -.-inset-x-44 { - right: -11rem; - left: -11rem; -} - .-inset-y-48 { top: -12rem; bottom: -12rem; } -.-inset-x-48 { - right: -12rem; - left: -12rem; -} - .-inset-y-52 { top: -13rem; bottom: -13rem; } -.-inset-x-52 { - right: -13rem; - left: -13rem; -} - .-inset-y-56 { top: -14rem; bottom: -14rem; } -.-inset-x-56 { - right: -14rem; - left: -14rem; -} - .-inset-y-60 { top: -15rem; bottom: -15rem; } -.-inset-x-60 { - right: -15rem; - left: -15rem; -} - .-inset-y-64 { top: -16rem; bottom: -16rem; } -.-inset-x-64 { - right: -16rem; - left: -16rem; -} - .-inset-y-72 { top: -18rem; bottom: -18rem; } -.-inset-x-72 { - right: -18rem; - left: -18rem; -} - .-inset-y-80 { top: -20rem; bottom: -20rem; } -.-inset-x-80 { - right: -20rem; - left: -20rem; -} - .-inset-y-96 { top: -24rem; bottom: -24rem; } -.-inset-x-96 { - right: -24rem; - left: -24rem; -} - .-inset-y-px { top: -1px; bottom: -1px; } -.-inset-x-px { - right: -1px; - left: -1px; -} - .-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } -.-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; -} - .-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } -.-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; -} - .-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } -.-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; -} - .-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } -.-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; -} - .inset-y-1\/2 { top: 50%; bottom: 50%; } -.inset-x-1\/2 { - right: 50%; - left: 50%; -} - .inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } -.inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; -} - .inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } -.inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; -} - .inset-y-1\/4 { top: 25%; bottom: 25%; } -.inset-x-1\/4 { - right: 25%; - left: 25%; -} - .inset-y-2\/4 { top: 50%; bottom: 50%; } -.inset-x-2\/4 { - right: 50%; - left: 50%; -} - .inset-y-3\/4 { top: 75%; bottom: 75%; } -.inset-x-3\/4 { - right: 75%; - left: 75%; -} - .inset-y-full { top: 100%; bottom: 100%; } -.inset-x-full { - right: 100%; - left: 100%; -} - .-inset-y-1\/2 { top: -50%; bottom: -50%; } -.-inset-x-1\/2 { - right: -50%; - left: -50%; -} - .-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } -.-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; -} - .-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } -.-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; -} - .-inset-y-1\/4 { top: -25%; bottom: -25%; } -.-inset-x-1\/4 { - right: -25%; - left: -25%; -} - .-inset-y-2\/4 { top: -50%; bottom: -50%; } -.-inset-x-2\/4 { - right: -50%; - left: -50%; -} - .-inset-y-3\/4 { top: -75%; bottom: -75%; } -.-inset-x-3\/4 { - right: -75%; - left: -75%; -} - .-inset-y-full { top: -100%; bottom: -100%; } -.-inset-x-full { - right: -100%; - left: -100%; -} - .top-0 { top: 0px; } -.right-0 { - right: 0px; +.top-1 { + top: 0.25rem; } -.bottom-0 { - bottom: 0px; +.top-2 { + top: 0.5rem; } -.left-0 { - left: 0px; +.top-3 { + top: 0.75rem; } -.top-1 { - top: 0.25rem; +.top-4 { + top: 1rem; } -.right-1 { - right: 0.25rem; +.top-5 { + top: 1.25rem; } -.bottom-1 { - bottom: 0.25rem; +.top-6 { + top: 1.5rem; } -.left-1 { - left: 0.25rem; +.top-7 { + top: 1.75rem; } -.top-2 { - top: 0.5rem; +.top-8 { + top: 2rem; } -.right-2 { - right: 0.5rem; +.top-9 { + top: 2.25rem; } -.bottom-2 { - bottom: 0.5rem; +.top-10 { + top: 2.5rem; } -.left-2 { - left: 0.5rem; +.top-11 { + top: 2.75rem; } -.top-3 { - top: 0.75rem; +.top-12 { + top: 3rem; } -.right-3 { - right: 0.75rem; +.top-14 { + top: 3.5rem; } -.bottom-3 { - bottom: 0.75rem; +.top-16 { + top: 4rem; } -.left-3 { - left: 0.75rem; +.top-20 { + top: 5rem; } -.top-4 { - top: 1rem; +.top-24 { + top: 6rem; } -.right-4 { - right: 1rem; +.top-28 { + top: 7rem; } -.bottom-4 { - bottom: 1rem; +.top-32 { + top: 8rem; } -.left-4 { - left: 1rem; +.top-36 { + top: 9rem; } -.top-5 { - top: 1.25rem; +.top-40 { + top: 10rem; } -.right-5 { - right: 1.25rem; +.top-44 { + top: 11rem; } -.bottom-5 { - bottom: 1.25rem; +.top-48 { + top: 12rem; } -.left-5 { - left: 1.25rem; +.top-52 { + top: 13rem; } -.top-6 { - top: 1.5rem; +.top-56 { + top: 14rem; } -.right-6 { - right: 1.5rem; +.top-60 { + top: 15rem; } -.bottom-6 { - bottom: 1.5rem; +.top-64 { + top: 16rem; } -.left-6 { - left: 1.5rem; +.top-72 { + top: 18rem; } -.top-7 { - top: 1.75rem; +.top-80 { + top: 20rem; } -.right-7 { - right: 1.75rem; +.top-96 { + top: 24rem; } -.bottom-7 { - bottom: 1.75rem; +.top-auto { + top: auto; } -.left-7 { - left: 1.75rem; +.top-px { + top: 1px; } -.top-8 { - top: 2rem; +.top-0\.5 { + top: 0.125rem; } -.right-8 { - right: 2rem; +.top-1\.5 { + top: 0.375rem; } -.bottom-8 { - bottom: 2rem; +.top-2\.5 { + top: 0.625rem; } -.left-8 { - left: 2rem; +.top-3\.5 { + top: 0.875rem; } -.top-9 { - top: 2.25rem; +.-top-0 { + top: 0px; } -.right-9 { - right: 2.25rem; +.-top-1 { + top: -0.25rem; } -.bottom-9 { - bottom: 2.25rem; +.-top-2 { + top: -0.5rem; } -.left-9 { - left: 2.25rem; +.-top-3 { + top: -0.75rem; } -.top-10 { - top: 2.5rem; +.-top-4 { + top: -1rem; } -.right-10 { - right: 2.5rem; +.-top-5 { + top: -1.25rem; } -.bottom-10 { - bottom: 2.5rem; +.-top-6 { + top: -1.5rem; } -.left-10 { - left: 2.5rem; +.-top-7 { + top: -1.75rem; } -.top-11 { - top: 2.75rem; +.-top-8 { + top: -2rem; } -.right-11 { - right: 2.75rem; +.-top-9 { + top: -2.25rem; } -.bottom-11 { - bottom: 2.75rem; +.-top-10 { + top: -2.5rem; } -.left-11 { - left: 2.75rem; +.-top-11 { + top: -2.75rem; } -.top-12 { - top: 3rem; +.-top-12 { + top: -3rem; } -.right-12 { - right: 3rem; +.-top-14 { + top: -3.5rem; } -.bottom-12 { - bottom: 3rem; +.-top-16 { + top: -4rem; } -.left-12 { - left: 3rem; +.-top-20 { + top: -5rem; } -.top-14 { - top: 3.5rem; +.-top-24 { + top: -6rem; } -.right-14 { - right: 3.5rem; +.-top-28 { + top: -7rem; } -.bottom-14 { - bottom: 3.5rem; +.-top-32 { + top: -8rem; } -.left-14 { - left: 3.5rem; +.-top-36 { + top: -9rem; } -.top-16 { - top: 4rem; +.-top-40 { + top: -10rem; } -.right-16 { - right: 4rem; +.-top-44 { + top: -11rem; } -.bottom-16 { - bottom: 4rem; +.-top-48 { + top: -12rem; } -.left-16 { - left: 4rem; +.-top-52 { + top: -13rem; } -.top-20 { - top: 5rem; +.-top-56 { + top: -14rem; } -.right-20 { - right: 5rem; +.-top-60 { + top: -15rem; } -.bottom-20 { - bottom: 5rem; +.-top-64 { + top: -16rem; } -.left-20 { - left: 5rem; +.-top-72 { + top: -18rem; } -.top-24 { - top: 6rem; +.-top-80 { + top: -20rem; } -.right-24 { - right: 6rem; +.-top-96 { + top: -24rem; } -.bottom-24 { - bottom: 6rem; +.-top-px { + top: -1px; } -.left-24 { - left: 6rem; +.-top-0\.5 { + top: -0.125rem; } -.top-28 { - top: 7rem; +.-top-1\.5 { + top: -0.375rem; } -.right-28 { - right: 7rem; +.-top-2\.5 { + top: -0.625rem; } -.bottom-28 { - bottom: 7rem; +.-top-3\.5 { + top: -0.875rem; } -.left-28 { - left: 7rem; +.top-1\/2 { + top: 50%; } -.top-32 { - top: 8rem; +.top-1\/3 { + top: 33.333333%; } -.right-32 { - right: 8rem; +.top-2\/3 { + top: 66.666667%; } -.bottom-32 { - bottom: 8rem; +.top-1\/4 { + top: 25%; } -.left-32 { - left: 8rem; +.top-2\/4 { + top: 50%; } -.top-36 { - top: 9rem; +.top-3\/4 { + top: 75%; } -.right-36 { - right: 9rem; +.top-full { + top: 100%; } -.bottom-36 { - bottom: 9rem; +.-top-1\/2 { + top: -50%; } -.left-36 { - left: 9rem; +.-top-1\/3 { + top: -33.333333%; } -.top-40 { - top: 10rem; +.-top-2\/3 { + top: -66.666667%; } -.right-40 { - right: 10rem; +.-top-1\/4 { + top: -25%; } -.bottom-40 { - bottom: 10rem; +.-top-2\/4 { + top: -50%; } -.left-40 { - left: 10rem; +.-top-3\/4 { + top: -75%; } -.top-44 { - top: 11rem; +.-top-full { + top: -100%; } -.right-44 { - right: 11rem; +.right-0 { + right: 0px; } -.bottom-44 { - bottom: 11rem; +.right-1 { + right: 0.25rem; } -.left-44 { - left: 11rem; +.right-2 { + right: 0.5rem; } -.top-48 { - top: 12rem; +.right-3 { + right: 0.75rem; } -.right-48 { - right: 12rem; +.right-4 { + right: 1rem; } -.bottom-48 { - bottom: 12rem; +.right-5 { + right: 1.25rem; } -.left-48 { - left: 12rem; +.right-6 { + right: 1.5rem; } -.top-52 { - top: 13rem; +.right-7 { + right: 1.75rem; } -.right-52 { - right: 13rem; +.right-8 { + right: 2rem; } -.bottom-52 { - bottom: 13rem; +.right-9 { + right: 2.25rem; } -.left-52 { - left: 13rem; +.right-10 { + right: 2.5rem; } -.top-56 { - top: 14rem; +.right-11 { + right: 2.75rem; } -.right-56 { - right: 14rem; +.right-12 { + right: 3rem; } -.bottom-56 { - bottom: 14rem; +.right-14 { + right: 3.5rem; } -.left-56 { - left: 14rem; +.right-16 { + right: 4rem; } -.top-60 { - top: 15rem; +.right-20 { + right: 5rem; } -.right-60 { - right: 15rem; +.right-24 { + right: 6rem; } -.bottom-60 { - bottom: 15rem; +.right-28 { + right: 7rem; } -.left-60 { - left: 15rem; +.right-32 { + right: 8rem; } -.top-64 { - top: 16rem; +.right-36 { + right: 9rem; } -.right-64 { - right: 16rem; +.right-40 { + right: 10rem; } -.bottom-64 { - bottom: 16rem; +.right-44 { + right: 11rem; } -.left-64 { - left: 16rem; +.right-48 { + right: 12rem; } -.top-72 { - top: 18rem; +.right-52 { + right: 13rem; } -.right-72 { - right: 18rem; +.right-56 { + right: 14rem; } -.bottom-72 { - bottom: 18rem; +.right-60 { + right: 15rem; } -.left-72 { - left: 18rem; +.right-64 { + right: 16rem; } -.top-80 { - top: 20rem; +.right-72 { + right: 18rem; } .right-80 { right: 20rem; } -.bottom-80 { - bottom: 20rem; +.right-96 { + right: 24rem; } -.left-80 { - left: 20rem; +.right-auto { + right: auto; } -.top-96 { - top: 24rem; +.right-px { + right: 1px; } -.right-96 { - right: 24rem; +.right-0\.5 { + right: 0.125rem; } -.bottom-96 { - bottom: 24rem; +.right-1\.5 { + right: 0.375rem; } -.left-96 { - left: 24rem; +.right-2\.5 { + right: 0.625rem; } -.top-auto { - top: auto; +.right-3\.5 { + right: 0.875rem; } -.right-auto { - right: auto; +.-right-0 { + right: 0px; } -.bottom-auto { - bottom: auto; +.-right-1 { + right: -0.25rem; } -.left-auto { - left: auto; +.-right-2 { + right: -0.5rem; } -.top-px { - top: 1px; +.-right-3 { + right: -0.75rem; } -.right-px { - right: 1px; +.-right-4 { + right: -1rem; } -.bottom-px { - bottom: 1px; +.-right-5 { + right: -1.25rem; } -.left-px { - left: 1px; +.-right-6 { + right: -1.5rem; } -.top-0\.5 { - top: 0.125rem; +.-right-7 { + right: -1.75rem; } -.right-0\.5 { - right: 0.125rem; +.-right-8 { + right: -2rem; } -.bottom-0\.5 { - bottom: 0.125rem; +.-right-9 { + right: -2.25rem; } -.left-0\.5 { - left: 0.125rem; +.-right-10 { + right: -2.5rem; } -.top-1\.5 { - top: 0.375rem; +.-right-11 { + right: -2.75rem; } -.right-1\.5 { - right: 0.375rem; +.-right-12 { + right: -3rem; } -.bottom-1\.5 { - bottom: 0.375rem; +.-right-14 { + right: -3.5rem; } -.left-1\.5 { - left: 0.375rem; +.-right-16 { + right: -4rem; } -.top-2\.5 { - top: 0.625rem; +.-right-20 { + right: -5rem; } -.right-2\.5 { - right: 0.625rem; +.-right-24 { + right: -6rem; } -.bottom-2\.5 { - bottom: 0.625rem; +.-right-28 { + right: -7rem; } -.left-2\.5 { - left: 0.625rem; +.-right-32 { + right: -8rem; } -.top-3\.5 { - top: 0.875rem; +.-right-36 { + right: -9rem; } -.right-3\.5 { - right: 0.875rem; +.-right-40 { + right: -10rem; } -.bottom-3\.5 { - bottom: 0.875rem; +.-right-44 { + right: -11rem; } -.left-3\.5 { - left: 0.875rem; +.-right-48 { + right: -12rem; } -.-top-0 { - top: 0px; +.-right-52 { + right: -13rem; } -.-right-0 { - right: 0px; +.-right-56 { + right: -14rem; } -.-bottom-0 { - bottom: 0px; +.-right-60 { + right: -15rem; } -.-left-0 { - left: 0px; +.-right-64 { + right: -16rem; } -.-top-1 { - top: -0.25rem; +.-right-72 { + right: -18rem; } -.-right-1 { - right: -0.25rem; +.-right-80 { + right: -20rem; } -.-bottom-1 { - bottom: -0.25rem; +.-right-96 { + right: -24rem; } -.-left-1 { - left: -0.25rem; +.-right-px { + right: -1px; } -.-top-2 { - top: -0.5rem; +.-right-0\.5 { + right: -0.125rem; } -.-right-2 { - right: -0.5rem; +.-right-1\.5 { + right: -0.375rem; } -.-bottom-2 { - bottom: -0.5rem; +.-right-2\.5 { + right: -0.625rem; } -.-left-2 { - left: -0.5rem; +.-right-3\.5 { + right: -0.875rem; } -.-top-3 { - top: -0.75rem; +.right-1\/2 { + right: 50%; } -.-right-3 { - right: -0.75rem; +.right-1\/3 { + right: 33.333333%; } -.-bottom-3 { - bottom: -0.75rem; +.right-2\/3 { + right: 66.666667%; } -.-left-3 { - left: -0.75rem; +.right-1\/4 { + right: 25%; } -.-top-4 { - top: -1rem; +.right-2\/4 { + right: 50%; } -.-right-4 { - right: -1rem; +.right-3\/4 { + right: 75%; } -.-bottom-4 { - bottom: -1rem; +.right-full { + right: 100%; } -.-left-4 { - left: -1rem; +.-right-1\/2 { + right: -50%; } -.-top-5 { - top: -1.25rem; +.-right-1\/3 { + right: -33.333333%; } -.-right-5 { - right: -1.25rem; +.-right-2\/3 { + right: -66.666667%; } -.-bottom-5 { - bottom: -1.25rem; +.-right-1\/4 { + right: -25%; } -.-left-5 { - left: -1.25rem; +.-right-2\/4 { + right: -50%; } -.-top-6 { - top: -1.5rem; +.-right-3\/4 { + right: -75%; } -.-right-6 { - right: -1.5rem; +.-right-full { + right: -100%; } -.-bottom-6 { - bottom: -1.5rem; +.bottom-0 { + bottom: 0px; } -.-left-6 { - left: -1.5rem; +.bottom-1 { + bottom: 0.25rem; } -.-top-7 { - top: -1.75rem; +.bottom-2 { + bottom: 0.5rem; } -.-right-7 { - right: -1.75rem; +.bottom-3 { + bottom: 0.75rem; } -.-bottom-7 { - bottom: -1.75rem; +.bottom-4 { + bottom: 1rem; } -.-left-7 { - left: -1.75rem; +.bottom-5 { + bottom: 1.25rem; } -.-top-8 { - top: -2rem; +.bottom-6 { + bottom: 1.5rem; } -.-right-8 { - right: -2rem; +.bottom-7 { + bottom: 1.75rem; } -.-bottom-8 { - bottom: -2rem; +.bottom-8 { + bottom: 2rem; } -.-left-8 { - left: -2rem; +.bottom-9 { + bottom: 2.25rem; } -.-top-9 { - top: -2.25rem; +.bottom-10 { + bottom: 2.5rem; } -.-right-9 { - right: -2.25rem; +.bottom-11 { + bottom: 2.75rem; } -.-bottom-9 { - bottom: -2.25rem; +.bottom-12 { + bottom: 3rem; } -.-left-9 { - left: -2.25rem; +.bottom-14 { + bottom: 3.5rem; } -.-top-10 { - top: -2.5rem; +.bottom-16 { + bottom: 4rem; } -.-right-10 { - right: -2.5rem; +.bottom-20 { + bottom: 5rem; } -.-bottom-10 { - bottom: -2.5rem; +.bottom-24 { + bottom: 6rem; } -.-left-10 { - left: -2.5rem; +.bottom-28 { + bottom: 7rem; } -.-top-11 { - top: -2.75rem; +.bottom-32 { + bottom: 8rem; } -.-right-11 { - right: -2.75rem; +.bottom-36 { + bottom: 9rem; } -.-bottom-11 { - bottom: -2.75rem; +.bottom-40 { + bottom: 10rem; } -.-left-11 { - left: -2.75rem; +.bottom-44 { + bottom: 11rem; } -.-top-12 { - top: -3rem; +.bottom-48 { + bottom: 12rem; } -.-right-12 { - right: -3rem; +.bottom-52 { + bottom: 13rem; } -.-bottom-12 { - bottom: -3rem; +.bottom-56 { + bottom: 14rem; } -.-left-12 { - left: -3rem; +.bottom-60 { + bottom: 15rem; } -.-top-14 { - top: -3.5rem; +.bottom-64 { + bottom: 16rem; } -.-right-14 { - right: -3.5rem; +.bottom-72 { + bottom: 18rem; } -.-bottom-14 { - bottom: -3.5rem; +.bottom-80 { + bottom: 20rem; } -.-left-14 { - left: -3.5rem; +.bottom-96 { + bottom: 24rem; } -.-top-16 { - top: -4rem; +.bottom-auto { + bottom: auto; } -.-right-16 { - right: -4rem; +.bottom-px { + bottom: 1px; } -.-bottom-16 { - bottom: -4rem; +.bottom-0\.5 { + bottom: 0.125rem; } -.-left-16 { - left: -4rem; +.bottom-1\.5 { + bottom: 0.375rem; } -.-top-20 { - top: -5rem; +.bottom-2\.5 { + bottom: 0.625rem; } -.-right-20 { - right: -5rem; +.bottom-3\.5 { + bottom: 0.875rem; } -.-bottom-20 { - bottom: -5rem; +.-bottom-0 { + bottom: 0px; } -.-left-20 { - left: -5rem; +.-bottom-1 { + bottom: -0.25rem; } -.-top-24 { - top: -6rem; +.-bottom-2 { + bottom: -0.5rem; } -.-right-24 { - right: -6rem; +.-bottom-3 { + bottom: -0.75rem; } -.-bottom-24 { - bottom: -6rem; +.-bottom-4 { + bottom: -1rem; } -.-left-24 { - left: -6rem; +.-bottom-5 { + bottom: -1.25rem; } -.-top-28 { - top: -7rem; +.-bottom-6 { + bottom: -1.5rem; } -.-right-28 { - right: -7rem; +.-bottom-7 { + bottom: -1.75rem; } -.-bottom-28 { - bottom: -7rem; +.-bottom-8 { + bottom: -2rem; } -.-left-28 { - left: -7rem; +.-bottom-9 { + bottom: -2.25rem; } -.-top-32 { - top: -8rem; +.-bottom-10 { + bottom: -2.5rem; } -.-right-32 { - right: -8rem; +.-bottom-11 { + bottom: -2.75rem; } -.-bottom-32 { - bottom: -8rem; +.-bottom-12 { + bottom: -3rem; } -.-left-32 { - left: -8rem; +.-bottom-14 { + bottom: -3.5rem; } -.-top-36 { - top: -9rem; +.-bottom-16 { + bottom: -4rem; } -.-right-36 { - right: -9rem; +.-bottom-20 { + bottom: -5rem; } -.-bottom-36 { - bottom: -9rem; +.-bottom-24 { + bottom: -6rem; } -.-left-36 { - left: -9rem; +.-bottom-28 { + bottom: -7rem; } -.-top-40 { - top: -10rem; +.-bottom-32 { + bottom: -8rem; } -.-right-40 { - right: -10rem; +.-bottom-36 { + bottom: -9rem; } .-bottom-40 { bottom: -10rem; } -.-left-40 { - left: -10rem; +.-bottom-44 { + bottom: -11rem; } -.-top-44 { - top: -11rem; +.-bottom-48 { + bottom: -12rem; } -.-right-44 { - right: -11rem; +.-bottom-52 { + bottom: -13rem; } -.-bottom-44 { - bottom: -11rem; +.-bottom-56 { + bottom: -14rem; } -.-left-44 { - left: -11rem; +.-bottom-60 { + bottom: -15rem; } -.-top-48 { - top: -12rem; +.-bottom-64 { + bottom: -16rem; } -.-right-48 { - right: -12rem; +.-bottom-72 { + bottom: -18rem; } -.-bottom-48 { - bottom: -12rem; +.-bottom-80 { + bottom: -20rem; } -.-left-48 { - left: -12rem; +.-bottom-96 { + bottom: -24rem; } -.-top-52 { - top: -13rem; +.-bottom-px { + bottom: -1px; } -.-right-52 { - right: -13rem; +.-bottom-0\.5 { + bottom: -0.125rem; } -.-bottom-52 { - bottom: -13rem; +.-bottom-1\.5 { + bottom: -0.375rem; } -.-left-52 { - left: -13rem; +.-bottom-2\.5 { + bottom: -0.625rem; } -.-top-56 { - top: -14rem; +.-bottom-3\.5 { + bottom: -0.875rem; } -.-right-56 { - right: -14rem; +.bottom-1\/2 { + bottom: 50%; } -.-bottom-56 { - bottom: -14rem; +.bottom-1\/3 { + bottom: 33.333333%; } -.-left-56 { - left: -14rem; +.bottom-2\/3 { + bottom: 66.666667%; } -.-top-60 { - top: -15rem; +.bottom-1\/4 { + bottom: 25%; } -.-right-60 { - right: -15rem; +.bottom-2\/4 { + bottom: 50%; } -.-bottom-60 { - bottom: -15rem; +.bottom-3\/4 { + bottom: 75%; } -.-left-60 { - left: -15rem; +.bottom-full { + bottom: 100%; } -.-top-64 { - top: -16rem; +.-bottom-1\/2 { + bottom: -50%; } -.-right-64 { - right: -16rem; +.-bottom-1\/3 { + bottom: -33.333333%; } -.-bottom-64 { - bottom: -16rem; +.-bottom-2\/3 { + bottom: -66.666667%; } -.-left-64 { - left: -16rem; +.-bottom-1\/4 { + bottom: -25%; } -.-top-72 { - top: -18rem; +.-bottom-2\/4 { + bottom: -50%; } -.-right-72 { - right: -18rem; +.-bottom-3\/4 { + bottom: -75%; } -.-bottom-72 { - bottom: -18rem; +.-bottom-full { + bottom: -100%; } -.-left-72 { - left: -18rem; +.left-0 { + left: 0px; } -.-top-80 { - top: -20rem; +.left-1 { + left: 0.25rem; } -.-right-80 { - right: -20rem; +.left-2 { + left: 0.5rem; } -.-bottom-80 { - bottom: -20rem; +.left-3 { + left: 0.75rem; } -.-left-80 { - left: -20rem; +.left-4 { + left: 1rem; } -.-top-96 { - top: -24rem; +.left-5 { + left: 1.25rem; } -.-right-96 { - right: -24rem; +.left-6 { + left: 1.5rem; } -.-bottom-96 { - bottom: -24rem; +.left-7 { + left: 1.75rem; } -.-left-96 { - left: -24rem; +.left-8 { + left: 2rem; } -.-top-px { - top: -1px; +.left-9 { + left: 2.25rem; } -.-right-px { - right: -1px; +.left-10 { + left: 2.5rem; } -.-bottom-px { - bottom: -1px; +.left-11 { + left: 2.75rem; } -.-left-px { - left: -1px; +.left-12 { + left: 3rem; } -.-top-0\.5 { - top: -0.125rem; +.left-14 { + left: 3.5rem; } -.-right-0\.5 { - right: -0.125rem; +.left-16 { + left: 4rem; } -.-bottom-0\.5 { - bottom: -0.125rem; +.left-20 { + left: 5rem; } -.-left-0\.5 { - left: -0.125rem; +.left-24 { + left: 6rem; } -.-top-1\.5 { - top: -0.375rem; +.left-28 { + left: 7rem; } -.-right-1\.5 { - right: -0.375rem; +.left-32 { + left: 8rem; } -.-bottom-1\.5 { - bottom: -0.375rem; +.left-36 { + left: 9rem; } -.-left-1\.5 { - left: -0.375rem; +.left-40 { + left: 10rem; } -.-top-2\.5 { - top: -0.625rem; +.left-44 { + left: 11rem; } -.-right-2\.5 { - right: -0.625rem; +.left-48 { + left: 12rem; } -.-bottom-2\.5 { - bottom: -0.625rem; +.left-52 { + left: 13rem; } -.-left-2\.5 { - left: -0.625rem; +.left-56 { + left: 14rem; } -.-top-3\.5 { - top: -0.875rem; +.left-60 { + left: 15rem; } -.-right-3\.5 { - right: -0.875rem; +.left-64 { + left: 16rem; } -.-bottom-3\.5 { - bottom: -0.875rem; +.left-72 { + left: 18rem; } -.-left-3\.5 { - left: -0.875rem; +.left-80 { + left: 20rem; } -.top-1\/2 { - top: 50%; +.left-96 { + left: 24rem; } -.right-1\/2 { - right: 50%; +.left-auto { + left: auto; } -.bottom-1\/2 { - bottom: 50%; +.left-px { + left: 1px; } -.left-1\/2 { - left: 50%; +.left-0\.5 { + left: 0.125rem; } -.top-1\/3 { - top: 33.333333%; +.left-1\.5 { + left: 0.375rem; } -.right-1\/3 { - right: 33.333333%; +.left-2\.5 { + left: 0.625rem; } -.bottom-1\/3 { - bottom: 33.333333%; +.left-3\.5 { + left: 0.875rem; } -.left-1\/3 { - left: 33.333333%; +.-left-0 { + left: 0px; } -.top-2\/3 { - top: 66.666667%; +.-left-1 { + left: -0.25rem; } -.right-2\/3 { - right: 66.666667%; +.-left-2 { + left: -0.5rem; } -.bottom-2\/3 { - bottom: 66.666667%; +.-left-3 { + left: -0.75rem; } -.left-2\/3 { - left: 66.666667%; +.-left-4 { + left: -1rem; } -.top-1\/4 { - top: 25%; +.-left-5 { + left: -1.25rem; } -.right-1\/4 { - right: 25%; +.-left-6 { + left: -1.5rem; } -.bottom-1\/4 { - bottom: 25%; +.-left-7 { + left: -1.75rem; } -.left-1\/4 { - left: 25%; +.-left-8 { + left: -2rem; } -.top-2\/4 { - top: 50%; +.-left-9 { + left: -2.25rem; } -.right-2\/4 { - right: 50%; +.-left-10 { + left: -2.5rem; } -.bottom-2\/4 { - bottom: 50%; +.-left-11 { + left: -2.75rem; } -.left-2\/4 { - left: 50%; +.-left-12 { + left: -3rem; } -.top-3\/4 { - top: 75%; +.-left-14 { + left: -3.5rem; } -.right-3\/4 { - right: 75%; +.-left-16 { + left: -4rem; } -.bottom-3\/4 { - bottom: 75%; +.-left-20 { + left: -5rem; } -.left-3\/4 { - left: 75%; +.-left-24 { + left: -6rem; } -.top-full { - top: 100%; +.-left-28 { + left: -7rem; } -.right-full { - right: 100%; +.-left-32 { + left: -8rem; } -.bottom-full { - bottom: 100%; +.-left-36 { + left: -9rem; } -.left-full { - left: 100%; +.-left-40 { + left: -10rem; } -.-top-1\/2 { - top: -50%; +.-left-44 { + left: -11rem; } -.-right-1\/2 { - right: -50%; +.-left-48 { + left: -12rem; } -.-bottom-1\/2 { - bottom: -50%; +.-left-52 { + left: -13rem; } -.-left-1\/2 { - left: -50%; +.-left-56 { + left: -14rem; } -.-top-1\/3 { - top: -33.333333%; +.-left-60 { + left: -15rem; } -.-right-1\/3 { - right: -33.333333%; +.-left-64 { + left: -16rem; } -.-bottom-1\/3 { - bottom: -33.333333%; +.-left-72 { + left: -18rem; } -.-left-1\/3 { - left: -33.333333%; +.-left-80 { + left: -20rem; } -.-top-2\/3 { - top: -66.666667%; +.-left-96 { + left: -24rem; } -.-right-2\/3 { - right: -66.666667%; +.-left-px { + left: -1px; } -.-bottom-2\/3 { - bottom: -66.666667%; +.-left-0\.5 { + left: -0.125rem; } -.-left-2\/3 { - left: -66.666667%; +.-left-1\.5 { + left: -0.375rem; } -.-top-1\/4 { - top: -25%; +.-left-2\.5 { + left: -0.625rem; } -.-right-1\/4 { - right: -25%; +.-left-3\.5 { + left: -0.875rem; } -.-bottom-1\/4 { - bottom: -25%; +.left-1\/2 { + left: 50%; } -.-left-1\/4 { - left: -25%; +.left-1\/3 { + left: 33.333333%; } -.-top-2\/4 { - top: -50%; +.left-2\/3 { + left: 66.666667%; } -.-right-2\/4 { - right: -50%; +.left-1\/4 { + left: 25%; } -.-bottom-2\/4 { - bottom: -50%; +.left-2\/4 { + left: 50%; } -.-left-2\/4 { - left: -50%; +.left-3\/4 { + left: 75%; } -.-top-3\/4 { - top: -75%; +.left-full { + left: 100%; } -.-right-3\/4 { - right: -75%; +.-left-1\/2 { + left: -50%; } -.-bottom-3\/4 { - bottom: -75%; +.-left-1\/3 { + left: -33.333333%; } -.-left-3\/4 { - left: -75%; +.-left-2\/3 { + left: -66.666667%; } -.-top-full { - top: -100%; +.-left-1\/4 { + left: -25%; } -.-right-full { - right: -100%; +.-left-2\/4 { + left: -50%; } -.-bottom-full { - bottom: -100%; +.-left-3\/4 { + left: -75%; } .-left-full { @@ -9533,133 +9533,183 @@ video { --tw-scale-y: 1.5; } -.scale-x-0 { +.hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } -.scale-x-50 { +.hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } -.scale-x-75 { +.hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } -.scale-x-90 { +.hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } -.scale-x-95 { +.hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } -.scale-x-100 { +.hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } -.scale-x-105 { +.hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } -.scale-x-110 { +.hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } -.scale-x-125 { +.hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } -.scale-x-150 { +.hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } -.scale-y-0 { +.focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } -.scale-y-50 { +.focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } -.scale-y-75 { +.focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } -.scale-y-90 { +.focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } -.scale-y-95 { +.focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } -.scale-y-100 { +.focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } -.scale-y-105 { +.focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } -.scale-y-110 { +.focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } -.scale-y-125 { +.focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } -.scale-y-150 { +.focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } -.hover\:scale-0:hover { +.scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } -.hover\:scale-50:hover { +.scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } -.hover\:scale-75:hover { +.scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } -.hover\:scale-90:hover { +.scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } -.hover\:scale-95:hover { +.scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } -.hover\:scale-100:hover { +.scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } -.hover\:scale-105:hover { +.scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } -.hover\:scale-110:hover { +.scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } -.hover\:scale-125:hover { +.scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } -.hover\:scale-150:hover { +.scale-x-150 { --tw-scale-x: 1.5; +} + +.scale-y-0 { + --tw-scale-y: 0; +} + +.scale-y-50 { + --tw-scale-y: .5; +} + +.scale-y-75 { + --tw-scale-y: .75; +} + +.scale-y-90 { + --tw-scale-y: .9; +} + +.scale-y-95 { + --tw-scale-y: .95; +} + +.scale-y-100 { + --tw-scale-y: 1; +} + +.scale-y-105 { + --tw-scale-y: 1.05; +} + +.scale-y-110 { + --tw-scale-y: 1.1; +} + +.scale-y-125 { + --tw-scale-y: 1.25; +} + +.scale-y-150 { --tw-scale-y: 1.5; } @@ -9743,56 +9793,6 @@ video { --tw-scale-y: 1.5; } -.focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; -} - -.focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; -} - -.focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; -} - -.focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; -} - -.focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; -} - -.focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; -} - -.focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; -} - -.focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; -} - -.focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; -} - -.focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; -} - .focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -10716,436 +10716,640 @@ video { row-gap: 0.875rem; } -.space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); -} - .space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } -.space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); -} - .space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); -} - .space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); -} - .space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); -} - .space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); -} - .space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); -} - .space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); -} - .space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); -} - .space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); -} - .space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); -} - .space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); -} - .space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); -} - .space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); -} - .space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); -} - .space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); -} - .space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); -} - .space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); -} - .space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); -} - .space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); -} - .space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); -} - .space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); -} - .space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); -} - .space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); -} - .space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); -} - .space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); -} - .space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); -} - .space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); -} - .space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); -} - .space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); -} - .space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); -} - .space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } -.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); -} - .space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); -} - .space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); -} - .space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); -} - .space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } -.-space-y-0 > :not([hidden]) ~ :not([hidden]) { +.-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); +} + +.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); +} + +.space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } -.-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); +.space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); +} + +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} + +.space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); +} + +.space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); +} + +.space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); +} + +.space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); +} + +.space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); +} + +.space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); +} + +.space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); +} + +.space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); +} + +.space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); +} + +.space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); +} + +.space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); +} + +.space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); +} + +.space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); +} + +.space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); +} + +.space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); +} + +.space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); +} + +.space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); +} + +.space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); +} + +.space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); +} + +.space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); +} + +.space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); +} + +.space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); +} + +.space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); +} + +.space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); +} + +.space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); +} + +.space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); +} + +.space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); +} + +.space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); +} + +.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); +} + +.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); +} + +.space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); +} + +.space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); +} + +.-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -11154,408 +11358,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } -.-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } -.-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } -.-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } -.-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } -.-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } -.-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } -.-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } -.-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } -.-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } -.-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } -.-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } -.-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } -.-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } -.-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } -.-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } -.-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } -.-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } -.-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } -.-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } -.-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } -.-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } -.-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } -.-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } -.-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } -.-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } -.-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } -.-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } -.-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } -.-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } -.-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } -.-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } -.-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } -.-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); -} - .-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } -.-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); -} - .space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -11564,66 +11564,66 @@ video { --tw-space-x-reverse: 1; } -.divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); -} - .divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); -} - .divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); -} - .divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); -} - .divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } -.divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); -} - .divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } +.divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); +} + +.divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); +} + +.divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); +} + +.divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); +} + +.divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); +} + .divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -18037,2188 +18037,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); -} - -.via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); -} - -.via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); -} - -.via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); -} - -.via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); -} - -.via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); -} - -.via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); -} - -.via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); -} - -.via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); -} - -.via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); -} - -.via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); -} - -.via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); -} - -.via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); -} - -.via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); -} - -.via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); -} - -.via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); -} - -.via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); -} - -.via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); -} - -.via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); -} - -.via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); -} - -.via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); -} - -.via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); -} - -.via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); -} - -.via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); -} - -.via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); -} - -.via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); -} - -.via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); -} - -.via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); -} - -.via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); -} - -.via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); -} - -.via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); -} - -.via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); -} - -.via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); -} - -.via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); -} - -.via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); -} - -.via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); -} - -.via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); -} - -.via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); -} - -.via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); -} - -.via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); -} - -.via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); -} - -.via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); -} - -.via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); -} - -.via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); -} - -.via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); -} - -.via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); -} - -.via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); -} - -.via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); -} - -.via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); -} - -.via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); -} - -.via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); -} - -.via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); -} - -.via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); -} - -.via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); -} - -.via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); -} - -.via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); -} - -.via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); -} - -.via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); -} - -.via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); -} - -.via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); -} - -.via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); -} - -.via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); -} - -.via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); -} - -.via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); -} - -.via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); -} - -.via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); -} - -.via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); -} - -.via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); -} - -.via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); -} - -.via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); -} - -.via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); -} - -.via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); -} - -.via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); -} - -.via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); -} - -.via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); -} - -.via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); -} - -.via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); -} - -.via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); -} - -.via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); -} - -.via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); -} - -.via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); -} - -.via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); -} - -.via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); -} - -.via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); -} - -.to-transparent { - --tw-gradient-to: transparent; +.hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.to-current { - --tw-gradient-to: currentColor; +.hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.to-black { - --tw-gradient-to: #000; +.hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.to-white { - --tw-gradient-to: #fff; +.hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.to-gray-50 { - --tw-gradient-to: #f9fafb; +.hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.to-gray-100 { - --tw-gradient-to: #f3f4f6; +.hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.to-gray-200 { - --tw-gradient-to: #e5e7eb; +.hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.to-gray-300 { - --tw-gradient-to: #d1d5db; +.hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.to-gray-400 { - --tw-gradient-to: #9ca3af; +.hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.to-gray-500 { - --tw-gradient-to: #6b7280; +.hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.to-gray-600 { - --tw-gradient-to: #4b5563; +.hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.to-gray-700 { - --tw-gradient-to: #374151; +.hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.to-gray-800 { - --tw-gradient-to: #1f2937; +.hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.to-gray-900 { - --tw-gradient-to: #111827; +.hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.to-red-50 { - --tw-gradient-to: #fef2f2; +.hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.to-red-100 { - --tw-gradient-to: #fee2e2; +.hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.to-red-200 { - --tw-gradient-to: #fecaca; +.hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.to-red-300 { - --tw-gradient-to: #fca5a5; +.hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.to-red-400 { - --tw-gradient-to: #f87171; +.hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.to-red-500 { - --tw-gradient-to: #ef4444; +.hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.to-red-600 { - --tw-gradient-to: #dc2626; +.hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.to-red-700 { - --tw-gradient-to: #b91c1c; +.hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.to-red-800 { - --tw-gradient-to: #991b1b; +.hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.to-red-900 { - --tw-gradient-to: #7f1d1d; +.hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.to-yellow-50 { - --tw-gradient-to: #fffbeb; +.hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.to-yellow-100 { - --tw-gradient-to: #fef3c7; +.hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.to-yellow-200 { - --tw-gradient-to: #fde68a; +.hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.to-yellow-300 { - --tw-gradient-to: #fcd34d; +.hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.to-yellow-400 { - --tw-gradient-to: #fbbf24; +.hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.to-yellow-500 { - --tw-gradient-to: #f59e0b; +.hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.to-yellow-600 { - --tw-gradient-to: #d97706; +.hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.to-yellow-700 { - --tw-gradient-to: #b45309; +.hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.to-yellow-800 { - --tw-gradient-to: #92400e; +.hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.to-yellow-900 { - --tw-gradient-to: #78350f; +.hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.to-green-50 { - --tw-gradient-to: #ecfdf5; +.hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.to-green-100 { - --tw-gradient-to: #d1fae5; +.hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.to-green-200 { - --tw-gradient-to: #a7f3d0; +.hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.to-green-300 { - --tw-gradient-to: #6ee7b7; +.hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.to-green-400 { - --tw-gradient-to: #34d399; +.hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.to-green-500 { - --tw-gradient-to: #10b981; +.hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.to-green-600 { - --tw-gradient-to: #059669; +.hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.to-green-700 { - --tw-gradient-to: #047857; +.hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.to-green-800 { - --tw-gradient-to: #065f46; +.hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.to-green-900 { - --tw-gradient-to: #064e3b; +.hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.to-blue-50 { - --tw-gradient-to: #eff6ff; +.hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.to-blue-100 { - --tw-gradient-to: #dbeafe; +.hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.to-blue-200 { - --tw-gradient-to: #bfdbfe; +.hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.to-blue-300 { - --tw-gradient-to: #93c5fd; +.hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.to-blue-400 { - --tw-gradient-to: #60a5fa; +.hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.to-blue-500 { - --tw-gradient-to: #3b82f6; +.hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.to-blue-600 { - --tw-gradient-to: #2563eb; +.hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.to-blue-700 { - --tw-gradient-to: #1d4ed8; +.hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.to-blue-800 { - --tw-gradient-to: #1e40af; +.hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.to-blue-900 { - --tw-gradient-to: #1e3a8a; +.hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.to-indigo-50 { - --tw-gradient-to: #eef2ff; +.hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.to-indigo-100 { - --tw-gradient-to: #e0e7ff; +.hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.to-indigo-200 { - --tw-gradient-to: #c7d2fe; +.hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.to-indigo-300 { - --tw-gradient-to: #a5b4fc; +.hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.to-indigo-400 { - --tw-gradient-to: #818cf8; +.hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.to-indigo-500 { - --tw-gradient-to: #6366f1; +.hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.to-indigo-600 { - --tw-gradient-to: #4f46e5; +.hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.to-indigo-700 { - --tw-gradient-to: #4338ca; +.hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.to-indigo-800 { - --tw-gradient-to: #3730a3; +.hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.to-indigo-900 { - --tw-gradient-to: #312e81; +.hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.to-purple-50 { - --tw-gradient-to: #f5f3ff; +.hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.to-purple-100 { - --tw-gradient-to: #ede9fe; +.hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.to-purple-200 { - --tw-gradient-to: #ddd6fe; +.hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.to-purple-300 { - --tw-gradient-to: #c4b5fd; +.hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.to-purple-400 { - --tw-gradient-to: #a78bfa; +.hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.to-purple-500 { - --tw-gradient-to: #8b5cf6; +.hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.to-purple-600 { - --tw-gradient-to: #7c3aed; +.hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.to-purple-700 { - --tw-gradient-to: #6d28d9; +.hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.to-purple-800 { - --tw-gradient-to: #5b21b6; +.hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.to-purple-900 { - --tw-gradient-to: #4c1d95; +.hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.to-pink-50 { - --tw-gradient-to: #fdf2f8; +.hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.to-pink-100 { - --tw-gradient-to: #fce7f3; +.hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.to-pink-200 { - --tw-gradient-to: #fbcfe8; +.hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.to-pink-300 { - --tw-gradient-to: #f9a8d4; +.hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.to-pink-400 { - --tw-gradient-to: #f472b6; +.hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.to-pink-500 { - --tw-gradient-to: #ec4899; +.hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.to-pink-600 { - --tw-gradient-to: #db2777; +.hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.to-pink-700 { - --tw-gradient-to: #be185d; +.hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.to-pink-800 { - --tw-gradient-to: #9d174d; +.hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.to-pink-900 { - --tw-gradient-to: #831843; +.hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.hover\:from-transparent:hover { +.focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:from-current:hover { +.focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:from-black:hover { +.focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:from-white:hover { +.focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:from-gray-50:hover { +.focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.hover\:from-gray-100:hover { +.focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.hover\:from-gray-200:hover { +.focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.hover\:from-gray-300:hover { +.focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.hover\:from-gray-400:hover { +.focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.hover\:from-gray-500:hover { +.focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.hover\:from-gray-600:hover { +.focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.hover\:from-gray-700:hover { +.focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.hover\:from-gray-800:hover { +.focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.hover\:from-gray-900:hover { +.focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.hover\:from-red-50:hover { +.focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.hover\:from-red-100:hover { +.focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.hover\:from-red-200:hover { +.focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.hover\:from-red-300:hover { +.focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.hover\:from-red-400:hover { +.focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.hover\:from-red-500:hover { +.focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.hover\:from-red-600:hover { +.focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.hover\:from-red-700:hover { +.focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.hover\:from-red-800:hover { +.focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.hover\:from-red-900:hover { +.focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.hover\:from-yellow-50:hover { +.focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.hover\:from-yellow-100:hover { +.focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.hover\:from-yellow-200:hover { +.focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.hover\:from-yellow-300:hover { +.focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.hover\:from-yellow-400:hover { +.focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.hover\:from-yellow-500:hover { +.focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.hover\:from-yellow-600:hover { +.focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.hover\:from-yellow-700:hover { +.focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.hover\:from-yellow-800:hover { +.focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.hover\:from-yellow-900:hover { +.focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.hover\:from-green-50:hover { +.focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.hover\:from-green-100:hover { +.focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.hover\:from-green-200:hover { +.focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.hover\:from-green-300:hover { +.focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.hover\:from-green-400:hover { +.focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.hover\:from-green-500:hover { +.focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.hover\:from-green-600:hover { +.focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.hover\:from-green-700:hover { +.focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.hover\:from-green-800:hover { +.focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.hover\:from-green-900:hover { +.focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.hover\:from-blue-50:hover { +.focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.hover\:from-blue-100:hover { +.focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.hover\:from-blue-200:hover { +.focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.hover\:from-blue-300:hover { +.focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.hover\:from-blue-400:hover { +.focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.hover\:from-blue-500:hover { +.focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.hover\:from-blue-600:hover { +.focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.hover\:from-blue-700:hover { +.focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.hover\:from-blue-800:hover { +.focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.hover\:from-blue-900:hover { +.focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.hover\:from-indigo-50:hover { +.focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.hover\:from-indigo-100:hover { +.focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.hover\:from-indigo-200:hover { +.focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.hover\:from-indigo-300:hover { +.focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.hover\:from-indigo-400:hover { +.focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.hover\:from-indigo-500:hover { +.focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.hover\:from-indigo-600:hover { +.focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.hover\:from-indigo-700:hover { +.focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.hover\:from-indigo-800:hover { +.focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.hover\:from-indigo-900:hover { +.focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.hover\:from-purple-50:hover { +.focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.hover\:from-purple-100:hover { +.focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.hover\:from-purple-200:hover { +.focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.hover\:from-purple-300:hover { +.focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.hover\:from-purple-400:hover { +.focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.hover\:from-purple-500:hover { +.focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.hover\:from-purple-600:hover { +.focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.hover\:from-purple-700:hover { +.focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.hover\:from-purple-800:hover { +.focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.hover\:from-purple-900:hover { +.focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.hover\:from-pink-50:hover { +.focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.hover\:from-pink-100:hover { +.focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.hover\:from-pink-200:hover { +.focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.hover\:from-pink-300:hover { +.focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.hover\:from-pink-400:hover { +.focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.hover\:from-pink-500:hover { +.focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.hover\:from-pink-600:hover { +.focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.hover\:from-pink-700:hover { +.focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.hover\:from-pink-800:hover { +.focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.hover\:from-pink-900:hover { +.focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.hover\:via-transparent:hover { +.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:via-current:hover { +.via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:via-black:hover { +.via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.hover\:via-white:hover { +.via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.hover\:via-gray-50:hover { +.via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.hover\:via-gray-100:hover { +.via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.hover\:via-gray-200:hover { +.via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.hover\:via-gray-300:hover { +.via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.hover\:via-gray-400:hover { +.via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.hover\:via-gray-500:hover { +.via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.hover\:via-gray-600:hover { +.via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.hover\:via-gray-700:hover { +.via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.hover\:via-gray-800:hover { +.via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.hover\:via-gray-900:hover { +.via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.hover\:via-red-50:hover { +.via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.hover\:via-red-100:hover { +.via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.hover\:via-red-200:hover { +.via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.hover\:via-red-300:hover { +.via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.hover\:via-red-400:hover { +.via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.hover\:via-red-500:hover { +.via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.hover\:via-red-600:hover { +.via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.hover\:via-red-700:hover { +.via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.hover\:via-red-800:hover { +.via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.hover\:via-red-900:hover { +.via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.hover\:via-yellow-50:hover { +.via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.hover\:via-yellow-100:hover { +.via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.hover\:via-yellow-200:hover { +.via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.hover\:via-yellow-300:hover { +.via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.hover\:via-yellow-400:hover { +.via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.hover\:via-yellow-500:hover { +.via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.hover\:via-yellow-600:hover { +.via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.hover\:via-yellow-700:hover { +.via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.hover\:via-yellow-800:hover { +.via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.hover\:via-yellow-900:hover { +.via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.hover\:via-green-50:hover { +.via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.hover\:via-green-100:hover { +.via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.hover\:via-green-200:hover { +.via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.hover\:via-green-300:hover { +.via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.hover\:via-green-400:hover { +.via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.hover\:via-green-500:hover { +.via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.hover\:via-green-600:hover { +.via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.hover\:via-green-700:hover { +.via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.hover\:via-green-800:hover { +.via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.hover\:via-green-900:hover { +.via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.hover\:via-blue-50:hover { +.via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.hover\:via-blue-100:hover { +.via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.hover\:via-blue-200:hover { +.via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.hover\:via-blue-300:hover { +.via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.hover\:via-blue-400:hover { +.via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.hover\:via-blue-500:hover { +.via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.hover\:via-blue-600:hover { +.via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.hover\:via-blue-700:hover { +.via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.hover\:via-blue-800:hover { +.via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.hover\:via-blue-900:hover { +.via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.hover\:via-indigo-50:hover { +.via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.hover\:via-indigo-100:hover { +.via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.hover\:via-indigo-200:hover { +.via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.hover\:via-indigo-300:hover { +.via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.hover\:via-indigo-400:hover { +.via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.hover\:via-indigo-500:hover { +.via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.hover\:via-indigo-600:hover { +.via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.hover\:via-indigo-700:hover { +.via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.hover\:via-indigo-800:hover { +.via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.hover\:via-indigo-900:hover { +.via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.hover\:via-purple-50:hover { +.via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.hover\:via-purple-100:hover { +.via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.hover\:via-purple-200:hover { +.via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.hover\:via-purple-300:hover { +.via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.hover\:via-purple-400:hover { +.via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.hover\:via-purple-500:hover { +.via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.hover\:via-purple-600:hover { +.via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.hover\:via-purple-700:hover { +.via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.hover\:via-purple-800:hover { +.via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.hover\:via-purple-900:hover { +.via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.hover\:via-pink-50:hover { +.via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.hover\:via-pink-100:hover { +.via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.hover\:via-pink-200:hover { +.via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.hover\:via-pink-300:hover { +.via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.hover\:via-pink-400:hover { +.via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.hover\:via-pink-500:hover { +.via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.hover\:via-pink-600:hover { +.via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.hover\:via-pink-700:hover { +.via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.hover\:via-pink-800:hover { +.via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.hover\:via-pink-900:hover { +.via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } -.hover\:to-transparent:hover { - --tw-gradient-to: transparent; -} - -.hover\:to-current:hover { - --tw-gradient-to: currentColor; -} - -.hover\:to-black:hover { - --tw-gradient-to: #000; -} - -.hover\:to-white:hover { - --tw-gradient-to: #fff; -} - -.hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; -} - -.hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; -} - -.hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; -} - -.hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; -} - -.hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; -} - -.hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; -} - -.hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; -} - -.hover\:to-gray-700:hover { - --tw-gradient-to: #374151; -} - -.hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; -} - -.hover\:to-gray-900:hover { - --tw-gradient-to: #111827; -} - -.hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; -} - -.hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; -} - -.hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; -} - -.hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; -} - -.hover\:to-red-400:hover { - --tw-gradient-to: #f87171; -} - -.hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; -} - -.hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; -} - -.hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; -} - -.hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; -} - -.hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; -} - -.hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; -} - -.hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; -} - -.hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; -} - -.hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; -} - -.hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; -} - -.hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; -} - -.hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; -} - -.hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; -} - -.hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; -} - -.hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; -} - -.hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; -} - -.hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; -} - -.hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; -} - -.hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; -} - -.hover\:to-green-400:hover { - --tw-gradient-to: #34d399; -} - -.hover\:to-green-500:hover { - --tw-gradient-to: #10b981; -} - -.hover\:to-green-600:hover { - --tw-gradient-to: #059669; -} - -.hover\:to-green-700:hover { - --tw-gradient-to: #047857; -} - -.hover\:to-green-800:hover { - --tw-gradient-to: #065f46; -} - -.hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; -} - -.hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; -} - -.hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; -} - -.hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; -} - -.hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; -} - -.hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; -} - -.hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; -} - -.hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; -} - -.hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; -} - -.hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; -} - -.hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; -} - -.hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; -} - -.hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; -} - -.hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; -} - -.hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; -} - -.hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; -} - -.hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; -} - -.hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; -} - -.hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; -} - -.hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; -} - -.hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; -} - -.hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; -} - -.hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; -} - -.hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; -} - -.hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; -} - -.hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; -} - -.hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; -} - -.hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; -} - -.hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; -} - -.hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; -} - -.hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; -} - -.hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; -} - -.hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; -} - -.hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; -} - -.hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; -} - -.hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; -} - -.hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; -} - -.hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; -} - -.hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; -} - -.hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; -} - -.hover\:to-pink-900:hover { - --tw-gradient-to: #831843; -} - -.focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); +.hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } -.focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); +.hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } -.focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); +.hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } -.focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); +.hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } -.focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); +.hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } -.focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); +.hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } -.focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); +.hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } -.focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); +.hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } -.focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); +.hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } -.focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); +.hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } -.focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); +.hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } -.focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); +.hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } -.focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); +.hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } -.focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); +.hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } -.focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); +.hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } -.focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); +.hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } -.focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); +.hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } -.focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); +.hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } -.focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); +.hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } -.focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); +.hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } -.focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); +.hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } -.focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); +.hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } -.focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); +.hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } -.focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); +.hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } -.focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); +.hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } -.focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); +.hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } -.focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); +.hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } -.focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); +.hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } -.focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); +.hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } -.focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); +.hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } -.focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); +.hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } -.focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); +.hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } -.focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); +.hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } -.focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); +.hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } -.focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); +.hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } -.focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); +.hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } -.focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); +.hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } -.focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); +.hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } -.focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); +.hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } -.focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); +.hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } -.focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); +.hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } -.focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); +.hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } -.focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); +.hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } -.focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); +.hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } -.focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); +.hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } -.focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); +.hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } -.focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); +.hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } -.focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); +.hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } -.focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); +.hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } -.focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); +.hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } -.focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); +.hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } -.focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); +.hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } -.focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); +.hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } -.focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); +.hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } -.focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); +.hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } -.focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); +.hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } -.focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); +.hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } -.focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); +.hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } -.focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); +.hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } -.focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); +.hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } -.focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); +.hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } -.focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); +.hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } -.focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); +.hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } -.focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); +.hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } -.focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); +.hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } -.focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); +.hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } -.focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); +.hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } -.focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); +.hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } -.focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); +.hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } -.focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); +.hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } -.focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); +.hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } -.focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); +.hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } -.focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); +.hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } -.focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); +.hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } -.focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); +.hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } -.focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); +.hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } -.focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); +.hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } -.focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); +.hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } -.focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); +.hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } -.focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); +.hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } -.focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); +.hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } -.focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); +.hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .focus\:via-transparent:focus { @@ -20557,6 +19885,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } +.to-transparent { + --tw-gradient-to: transparent; +} + +.to-current { + --tw-gradient-to: currentColor; +} + +.to-black { + --tw-gradient-to: #000; +} + +.to-white { + --tw-gradient-to: #fff; +} + +.to-gray-50 { + --tw-gradient-to: #f9fafb; +} + +.to-gray-100 { + --tw-gradient-to: #f3f4f6; +} + +.to-gray-200 { + --tw-gradient-to: #e5e7eb; +} + +.to-gray-300 { + --tw-gradient-to: #d1d5db; +} + +.to-gray-400 { + --tw-gradient-to: #9ca3af; +} + +.to-gray-500 { + --tw-gradient-to: #6b7280; +} + +.to-gray-600 { + --tw-gradient-to: #4b5563; +} + +.to-gray-700 { + --tw-gradient-to: #374151; +} + +.to-gray-800 { + --tw-gradient-to: #1f2937; +} + +.to-gray-900 { + --tw-gradient-to: #111827; +} + +.to-red-50 { + --tw-gradient-to: #fef2f2; +} + +.to-red-100 { + --tw-gradient-to: #fee2e2; +} + +.to-red-200 { + --tw-gradient-to: #fecaca; +} + +.to-red-300 { + --tw-gradient-to: #fca5a5; +} + +.to-red-400 { + --tw-gradient-to: #f87171; +} + +.to-red-500 { + --tw-gradient-to: #ef4444; +} + +.to-red-600 { + --tw-gradient-to: #dc2626; +} + +.to-red-700 { + --tw-gradient-to: #b91c1c; +} + +.to-red-800 { + --tw-gradient-to: #991b1b; +} + +.to-red-900 { + --tw-gradient-to: #7f1d1d; +} + +.to-yellow-50 { + --tw-gradient-to: #fffbeb; +} + +.to-yellow-100 { + --tw-gradient-to: #fef3c7; +} + +.to-yellow-200 { + --tw-gradient-to: #fde68a; +} + +.to-yellow-300 { + --tw-gradient-to: #fcd34d; +} + +.to-yellow-400 { + --tw-gradient-to: #fbbf24; +} + +.to-yellow-500 { + --tw-gradient-to: #f59e0b; +} + +.to-yellow-600 { + --tw-gradient-to: #d97706; +} + +.to-yellow-700 { + --tw-gradient-to: #b45309; +} + +.to-yellow-800 { + --tw-gradient-to: #92400e; +} + +.to-yellow-900 { + --tw-gradient-to: #78350f; +} + +.to-green-50 { + --tw-gradient-to: #ecfdf5; +} + +.to-green-100 { + --tw-gradient-to: #d1fae5; +} + +.to-green-200 { + --tw-gradient-to: #a7f3d0; +} + +.to-green-300 { + --tw-gradient-to: #6ee7b7; +} + +.to-green-400 { + --tw-gradient-to: #34d399; +} + +.to-green-500 { + --tw-gradient-to: #10b981; +} + +.to-green-600 { + --tw-gradient-to: #059669; +} + +.to-green-700 { + --tw-gradient-to: #047857; +} + +.to-green-800 { + --tw-gradient-to: #065f46; +} + +.to-green-900 { + --tw-gradient-to: #064e3b; +} + +.to-blue-50 { + --tw-gradient-to: #eff6ff; +} + +.to-blue-100 { + --tw-gradient-to: #dbeafe; +} + +.to-blue-200 { + --tw-gradient-to: #bfdbfe; +} + +.to-blue-300 { + --tw-gradient-to: #93c5fd; +} + +.to-blue-400 { + --tw-gradient-to: #60a5fa; +} + +.to-blue-500 { + --tw-gradient-to: #3b82f6; +} + +.to-blue-600 { + --tw-gradient-to: #2563eb; +} + +.to-blue-700 { + --tw-gradient-to: #1d4ed8; +} + +.to-blue-800 { + --tw-gradient-to: #1e40af; +} + +.to-blue-900 { + --tw-gradient-to: #1e3a8a; +} + +.to-indigo-50 { + --tw-gradient-to: #eef2ff; +} + +.to-indigo-100 { + --tw-gradient-to: #e0e7ff; +} + +.to-indigo-200 { + --tw-gradient-to: #c7d2fe; +} + +.to-indigo-300 { + --tw-gradient-to: #a5b4fc; +} + +.to-indigo-400 { + --tw-gradient-to: #818cf8; +} + +.to-indigo-500 { + --tw-gradient-to: #6366f1; +} + +.to-indigo-600 { + --tw-gradient-to: #4f46e5; +} + +.to-indigo-700 { + --tw-gradient-to: #4338ca; +} + +.to-indigo-800 { + --tw-gradient-to: #3730a3; +} + +.to-indigo-900 { + --tw-gradient-to: #312e81; +} + +.to-purple-50 { + --tw-gradient-to: #f5f3ff; +} + +.to-purple-100 { + --tw-gradient-to: #ede9fe; +} + +.to-purple-200 { + --tw-gradient-to: #ddd6fe; +} + +.to-purple-300 { + --tw-gradient-to: #c4b5fd; +} + +.to-purple-400 { + --tw-gradient-to: #a78bfa; +} + +.to-purple-500 { + --tw-gradient-to: #8b5cf6; +} + +.to-purple-600 { + --tw-gradient-to: #7c3aed; +} + +.to-purple-700 { + --tw-gradient-to: #6d28d9; +} + +.to-purple-800 { + --tw-gradient-to: #5b21b6; +} + +.to-purple-900 { + --tw-gradient-to: #4c1d95; +} + +.to-pink-50 { + --tw-gradient-to: #fdf2f8; +} + +.to-pink-100 { + --tw-gradient-to: #fce7f3; +} + +.to-pink-200 { + --tw-gradient-to: #fbcfe8; +} + +.to-pink-300 { + --tw-gradient-to: #f9a8d4; +} + +.to-pink-400 { + --tw-gradient-to: #f472b6; +} + +.to-pink-500 { + --tw-gradient-to: #ec4899; +} + +.to-pink-600 { + --tw-gradient-to: #db2777; +} + +.to-pink-700 { + --tw-gradient-to: #be185d; +} + +.to-pink-800 { + --tw-gradient-to: #9d174d; +} + +.to-pink-900 { + --tw-gradient-to: #831843; +} + +.hover\:to-transparent:hover { + --tw-gradient-to: transparent; +} + +.hover\:to-current:hover { + --tw-gradient-to: currentColor; +} + +.hover\:to-black:hover { + --tw-gradient-to: #000; +} + +.hover\:to-white:hover { + --tw-gradient-to: #fff; +} + +.hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; +} + +.hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; +} + +.hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; +} + +.hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; +} + +.hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; +} + +.hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; +} + +.hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; +} + +.hover\:to-gray-700:hover { + --tw-gradient-to: #374151; +} + +.hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; +} + +.hover\:to-gray-900:hover { + --tw-gradient-to: #111827; +} + +.hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; +} + +.hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; +} + +.hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; +} + +.hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; +} + +.hover\:to-red-400:hover { + --tw-gradient-to: #f87171; +} + +.hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; +} + +.hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; +} + +.hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; +} + +.hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; +} + +.hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; +} + +.hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; +} + +.hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; +} + +.hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; +} + +.hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; +} + +.hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; +} + +.hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; +} + +.hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; +} + +.hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; +} + +.hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; +} + +.hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; +} + +.hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; +} + +.hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; +} + +.hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; +} + +.hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; +} + +.hover\:to-green-400:hover { + --tw-gradient-to: #34d399; +} + +.hover\:to-green-500:hover { + --tw-gradient-to: #10b981; +} + +.hover\:to-green-600:hover { + --tw-gradient-to: #059669; +} + +.hover\:to-green-700:hover { + --tw-gradient-to: #047857; +} + +.hover\:to-green-800:hover { + --tw-gradient-to: #065f46; +} + +.hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; +} + +.hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; +} + +.hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; +} + +.hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; +} + +.hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; +} + +.hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; +} + +.hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; +} + +.hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; +} + +.hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; +} + +.hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; +} + +.hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; +} + +.hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; +} + +.hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; +} + +.hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; +} + +.hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; +} + +.hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; +} + +.hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; +} + +.hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; +} + +.hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; +} + +.hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; +} + +.hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; +} + +.hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; +} + +.hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; +} + +.hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; +} + +.hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; +} + +.hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; +} + +.hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; +} + +.hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; +} + +.hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; +} + +.hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; +} + +.hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; +} + +.hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; +} + +.hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; +} + +.hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; +} + +.hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; +} + +.hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; +} + +.hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; +} + +.hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; +} + +.hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; +} + +.hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; +} + +.hover\:to-pink-900:hover { + --tw-gradient-to: #831843; +} + .focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -26579,10 +26579,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.ring-inset { - --tw-ring-inset: inset; -} - .focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -26619,10 +26615,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } -.focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; -} - .focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -26659,6 +26651,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } +.ring-inset { + --tw-ring-inset: inset; +} + +.focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; +} + .focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -30419,116 +30419,541 @@ video { left: -0.375rem; } - .sm\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .sm\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .sm\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .sm\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .sm\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .sm\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .sm\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .sm\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .sm\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .sm\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .sm\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .sm\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .sm\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .sm\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .sm\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .sm\:inset-x-0 { + left: 0px; + right: 0px; + } + + .sm\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .sm\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .sm\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .sm\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .sm\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .sm\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .sm\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .sm\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .sm\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .sm\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .sm\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .sm\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .sm\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .sm\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .sm\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .sm\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .sm\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .sm\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .sm\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .sm\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .sm\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .sm\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .sm\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .sm\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .sm\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .sm\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .sm\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .sm\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .sm\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .sm\:inset-x-auto { + left: auto; + right: auto; + } + + .sm\:inset-x-px { + left: 1px; + right: 1px; + } + + .sm\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .sm\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .sm\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .sm\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .sm\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .sm\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .sm\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .sm\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .sm\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .sm\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .sm\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .sm\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .sm\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .sm\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .sm\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .sm\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .sm\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .sm\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .sm\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .sm\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .sm\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .sm\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .sm\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .sm\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .sm\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .sm\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .sm\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .sm\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .sm\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .sm\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .sm\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .sm\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .sm\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .sm\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .sm\:-inset-x-px { + left: -1px; + right: -1px; + } + + .sm\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .sm\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .sm\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .sm\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .sm\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .sm\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .sm\:inset-x-1\/2 { left: 50%; + right: 50%; } - .sm\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .sm\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .sm\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .sm\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .sm\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .sm\:inset-x-1\/4 { left: 25%; + right: 25%; } - .sm\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .sm\:inset-x-2\/4 { left: 50%; + right: 50%; } - .sm\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .sm\:inset-x-3\/4 { left: 75%; + right: 75%; } - .sm\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .sm\:inset-x-full { left: 100%; + right: 100%; } - .sm\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .sm\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .sm\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .sm\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .sm\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .sm\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .sm\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .sm\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .sm\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .sm\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .sm\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .sm\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .sm\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .sm\:-inset-x-full { left: -100%; + right: -100%; } .sm\:inset-y-0 { @@ -30536,2205 +30961,1780 @@ video { bottom: 0px; } - .sm\:inset-x-0 { - right: 0px; - left: 0px; - } - .sm\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .sm\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .sm\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .sm\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .sm\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .sm\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .sm\:inset-y-4 { top: 1rem; bottom: 1rem; } - .sm\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .sm\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .sm\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .sm\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .sm\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .sm\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .sm\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .sm\:inset-y-8 { top: 2rem; bottom: 2rem; } - .sm\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .sm\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .sm\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .sm\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .sm\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .sm\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .sm\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .sm\:inset-y-12 { top: 3rem; bottom: 3rem; } - .sm\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .sm\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .sm\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .sm\:inset-y-16 { top: 4rem; bottom: 4rem; } - .sm\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .sm\:inset-y-20 { top: 5rem; bottom: 5rem; } - .sm\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .sm\:inset-y-24 { top: 6rem; bottom: 6rem; } - .sm\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .sm\:inset-y-28 { top: 7rem; bottom: 7rem; } - .sm\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .sm\:inset-y-32 { top: 8rem; bottom: 8rem; } - .sm\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .sm\:inset-y-36 { top: 9rem; bottom: 9rem; } - .sm\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .sm\:inset-y-40 { top: 10rem; bottom: 10rem; } - .sm\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .sm\:inset-y-44 { top: 11rem; bottom: 11rem; } - .sm\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .sm\:inset-y-48 { top: 12rem; bottom: 12rem; } - .sm\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .sm\:inset-y-52 { top: 13rem; bottom: 13rem; } - .sm\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .sm\:inset-y-56 { top: 14rem; bottom: 14rem; } - .sm\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .sm\:inset-y-60 { top: 15rem; bottom: 15rem; } - .sm\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .sm\:inset-y-64 { top: 16rem; bottom: 16rem; } - .sm\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .sm\:inset-y-72 { top: 18rem; bottom: 18rem; } - .sm\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .sm\:inset-y-80 { top: 20rem; bottom: 20rem; } - .sm\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .sm\:inset-y-96 { top: 24rem; bottom: 24rem; } - .sm\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .sm\:inset-y-auto { top: auto; bottom: auto; } - .sm\:inset-x-auto { - right: auto; - left: auto; - } - .sm\:inset-y-px { top: 1px; bottom: 1px; } - .sm\:inset-x-px { - right: 1px; - left: 1px; - } - .sm\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .sm\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .sm\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .sm\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .sm\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .sm\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .sm\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .sm\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .sm\:-inset-y-0 { top: 0px; bottom: 0px; } - .sm\:-inset-x-0 { - right: 0px; - left: 0px; - } - .sm\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .sm\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .sm\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .sm\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .sm\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .sm\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .sm\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .sm\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .sm\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .sm\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .sm\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .sm\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .sm\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .sm\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .sm\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .sm\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .sm\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .sm\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .sm\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .sm\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .sm\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .sm\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .sm\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .sm\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .sm\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .sm\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .sm\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .sm\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .sm\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .sm\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .sm\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .sm\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .sm\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .sm\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .sm\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .sm\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .sm\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .sm\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .sm\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .sm\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .sm\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .sm\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .sm\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .sm\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .sm\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .sm\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .sm\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .sm\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .sm\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .sm\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .sm\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .sm\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .sm\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .sm\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .sm\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .sm\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .sm\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .sm\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .sm\:-inset-y-px { top: -1px; bottom: -1px; } - .sm\:-inset-x-px { - right: -1px; - left: -1px; - } - .sm\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .sm\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .sm\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .sm\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .sm\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .sm\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .sm\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .sm\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .sm\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .sm\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .sm\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .sm\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .sm\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .sm\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .sm\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .sm\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .sm\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .sm\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .sm\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .sm\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .sm\:inset-y-full { top: 100%; bottom: 100%; } - .sm\:inset-x-full { - right: 100%; - left: 100%; - } - .sm\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .sm\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .sm\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .sm\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .sm\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .sm\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .sm\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .sm\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .sm\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .sm\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .sm\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .sm\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .sm\:-inset-y-full { top: -100%; bottom: -100%; } - .sm\:-inset-x-full { - right: -100%; - left: -100%; - } - .sm\:top-0 { top: 0px; } - .sm\:right-0 { - right: 0px; + .sm\:top-1 { + top: 0.25rem; } - .sm\:bottom-0 { - bottom: 0px; + .sm\:top-2 { + top: 0.5rem; } - .sm\:left-0 { - left: 0px; + .sm\:top-3 { + top: 0.75rem; } - .sm\:top-1 { - top: 0.25rem; + .sm\:top-4 { + top: 1rem; } - .sm\:right-1 { - right: 0.25rem; + .sm\:top-5 { + top: 1.25rem; } - .sm\:bottom-1 { - bottom: 0.25rem; + .sm\:top-6 { + top: 1.5rem; } - .sm\:left-1 { - left: 0.25rem; + .sm\:top-7 { + top: 1.75rem; } - .sm\:top-2 { - top: 0.5rem; + .sm\:top-8 { + top: 2rem; } - .sm\:right-2 { - right: 0.5rem; + .sm\:top-9 { + top: 2.25rem; } - .sm\:bottom-2 { - bottom: 0.5rem; + .sm\:top-10 { + top: 2.5rem; } - .sm\:left-2 { - left: 0.5rem; + .sm\:top-11 { + top: 2.75rem; } - .sm\:top-3 { - top: 0.75rem; + .sm\:top-12 { + top: 3rem; } - .sm\:right-3 { - right: 0.75rem; + .sm\:top-14 { + top: 3.5rem; } - .sm\:bottom-3 { - bottom: 0.75rem; + .sm\:top-16 { + top: 4rem; } - .sm\:left-3 { - left: 0.75rem; + .sm\:top-20 { + top: 5rem; } - .sm\:top-4 { - top: 1rem; + .sm\:top-24 { + top: 6rem; } - .sm\:right-4 { - right: 1rem; + .sm\:top-28 { + top: 7rem; } - .sm\:bottom-4 { - bottom: 1rem; + .sm\:top-32 { + top: 8rem; } - .sm\:left-4 { - left: 1rem; + .sm\:top-36 { + top: 9rem; } - .sm\:top-5 { - top: 1.25rem; + .sm\:top-40 { + top: 10rem; } - .sm\:right-5 { - right: 1.25rem; + .sm\:top-44 { + top: 11rem; } - .sm\:bottom-5 { - bottom: 1.25rem; + .sm\:top-48 { + top: 12rem; } - .sm\:left-5 { - left: 1.25rem; + .sm\:top-52 { + top: 13rem; } - .sm\:top-6 { - top: 1.5rem; + .sm\:top-56 { + top: 14rem; } - .sm\:right-6 { - right: 1.5rem; + .sm\:top-60 { + top: 15rem; } - .sm\:bottom-6 { - bottom: 1.5rem; + .sm\:top-64 { + top: 16rem; } - .sm\:left-6 { - left: 1.5rem; + .sm\:top-72 { + top: 18rem; } - .sm\:top-7 { - top: 1.75rem; + .sm\:top-80 { + top: 20rem; } - .sm\:right-7 { - right: 1.75rem; + .sm\:top-96 { + top: 24rem; } - .sm\:bottom-7 { - bottom: 1.75rem; + .sm\:top-auto { + top: auto; } - .sm\:left-7 { - left: 1.75rem; + .sm\:top-px { + top: 1px; } - .sm\:top-8 { - top: 2rem; + .sm\:top-0\.5 { + top: 0.125rem; } - .sm\:right-8 { - right: 2rem; + .sm\:top-1\.5 { + top: 0.375rem; } - .sm\:bottom-8 { - bottom: 2rem; + .sm\:top-2\.5 { + top: 0.625rem; } - .sm\:left-8 { - left: 2rem; + .sm\:top-3\.5 { + top: 0.875rem; } - .sm\:top-9 { - top: 2.25rem; + .sm\:-top-0 { + top: 0px; } - .sm\:right-9 { - right: 2.25rem; + .sm\:-top-1 { + top: -0.25rem; } - .sm\:bottom-9 { - bottom: 2.25rem; + .sm\:-top-2 { + top: -0.5rem; } - .sm\:left-9 { - left: 2.25rem; + .sm\:-top-3 { + top: -0.75rem; } - .sm\:top-10 { - top: 2.5rem; + .sm\:-top-4 { + top: -1rem; } - .sm\:right-10 { - right: 2.5rem; + .sm\:-top-5 { + top: -1.25rem; } - .sm\:bottom-10 { - bottom: 2.5rem; + .sm\:-top-6 { + top: -1.5rem; } - .sm\:left-10 { - left: 2.5rem; + .sm\:-top-7 { + top: -1.75rem; } - .sm\:top-11 { - top: 2.75rem; + .sm\:-top-8 { + top: -2rem; } - .sm\:right-11 { - right: 2.75rem; + .sm\:-top-9 { + top: -2.25rem; } - .sm\:bottom-11 { - bottom: 2.75rem; + .sm\:-top-10 { + top: -2.5rem; } - .sm\:left-11 { - left: 2.75rem; + .sm\:-top-11 { + top: -2.75rem; } - .sm\:top-12 { - top: 3rem; + .sm\:-top-12 { + top: -3rem; } - .sm\:right-12 { - right: 3rem; + .sm\:-top-14 { + top: -3.5rem; } - .sm\:bottom-12 { - bottom: 3rem; + .sm\:-top-16 { + top: -4rem; } - .sm\:left-12 { - left: 3rem; + .sm\:-top-20 { + top: -5rem; } - .sm\:top-14 { - top: 3.5rem; + .sm\:-top-24 { + top: -6rem; } - .sm\:right-14 { - right: 3.5rem; + .sm\:-top-28 { + top: -7rem; } - .sm\:bottom-14 { - bottom: 3.5rem; + .sm\:-top-32 { + top: -8rem; } - .sm\:left-14 { - left: 3.5rem; + .sm\:-top-36 { + top: -9rem; } - .sm\:top-16 { - top: 4rem; + .sm\:-top-40 { + top: -10rem; } - .sm\:right-16 { - right: 4rem; + .sm\:-top-44 { + top: -11rem; } - .sm\:bottom-16 { - bottom: 4rem; + .sm\:-top-48 { + top: -12rem; } - .sm\:left-16 { - left: 4rem; + .sm\:-top-52 { + top: -13rem; } - .sm\:top-20 { - top: 5rem; + .sm\:-top-56 { + top: -14rem; } - .sm\:right-20 { - right: 5rem; + .sm\:-top-60 { + top: -15rem; } - .sm\:bottom-20 { - bottom: 5rem; + .sm\:-top-64 { + top: -16rem; } - .sm\:left-20 { - left: 5rem; + .sm\:-top-72 { + top: -18rem; } - .sm\:top-24 { - top: 6rem; + .sm\:-top-80 { + top: -20rem; } - .sm\:right-24 { - right: 6rem; + .sm\:-top-96 { + top: -24rem; } - .sm\:bottom-24 { - bottom: 6rem; + .sm\:-top-px { + top: -1px; } - .sm\:left-24 { - left: 6rem; + .sm\:-top-0\.5 { + top: -0.125rem; } - .sm\:top-28 { - top: 7rem; + .sm\:-top-1\.5 { + top: -0.375rem; } - .sm\:right-28 { - right: 7rem; + .sm\:-top-2\.5 { + top: -0.625rem; } - .sm\:bottom-28 { - bottom: 7rem; + .sm\:-top-3\.5 { + top: -0.875rem; } - .sm\:left-28 { - left: 7rem; + .sm\:top-1\/2 { + top: 50%; } - .sm\:top-32 { - top: 8rem; + .sm\:top-1\/3 { + top: 33.333333%; } - .sm\:right-32 { - right: 8rem; + .sm\:top-2\/3 { + top: 66.666667%; } - .sm\:bottom-32 { - bottom: 8rem; + .sm\:top-1\/4 { + top: 25%; } - .sm\:left-32 { - left: 8rem; + .sm\:top-2\/4 { + top: 50%; } - .sm\:top-36 { - top: 9rem; + .sm\:top-3\/4 { + top: 75%; } - .sm\:right-36 { - right: 9rem; + .sm\:top-full { + top: 100%; } - .sm\:bottom-36 { - bottom: 9rem; + .sm\:-top-1\/2 { + top: -50%; } - .sm\:left-36 { - left: 9rem; + .sm\:-top-1\/3 { + top: -33.333333%; } - .sm\:top-40 { - top: 10rem; + .sm\:-top-2\/3 { + top: -66.666667%; } - .sm\:right-40 { - right: 10rem; + .sm\:-top-1\/4 { + top: -25%; } - .sm\:bottom-40 { - bottom: 10rem; + .sm\:-top-2\/4 { + top: -50%; } - .sm\:left-40 { - left: 10rem; + .sm\:-top-3\/4 { + top: -75%; } - .sm\:top-44 { - top: 11rem; + .sm\:-top-full { + top: -100%; } - .sm\:right-44 { - right: 11rem; + .sm\:right-0 { + right: 0px; } - .sm\:bottom-44 { - bottom: 11rem; + .sm\:right-1 { + right: 0.25rem; } - .sm\:left-44 { - left: 11rem; + .sm\:right-2 { + right: 0.5rem; } - .sm\:top-48 { - top: 12rem; + .sm\:right-3 { + right: 0.75rem; } - .sm\:right-48 { - right: 12rem; + .sm\:right-4 { + right: 1rem; } - .sm\:bottom-48 { - bottom: 12rem; + .sm\:right-5 { + right: 1.25rem; } - .sm\:left-48 { - left: 12rem; + .sm\:right-6 { + right: 1.5rem; } - .sm\:top-52 { - top: 13rem; + .sm\:right-7 { + right: 1.75rem; } - .sm\:right-52 { - right: 13rem; + .sm\:right-8 { + right: 2rem; } - .sm\:bottom-52 { - bottom: 13rem; + .sm\:right-9 { + right: 2.25rem; } - .sm\:left-52 { - left: 13rem; + .sm\:right-10 { + right: 2.5rem; } - .sm\:top-56 { - top: 14rem; + .sm\:right-11 { + right: 2.75rem; } - .sm\:right-56 { - right: 14rem; + .sm\:right-12 { + right: 3rem; } - .sm\:bottom-56 { - bottom: 14rem; + .sm\:right-14 { + right: 3.5rem; } - .sm\:left-56 { - left: 14rem; + .sm\:right-16 { + right: 4rem; } - .sm\:top-60 { - top: 15rem; + .sm\:right-20 { + right: 5rem; } - .sm\:right-60 { - right: 15rem; + .sm\:right-24 { + right: 6rem; } - .sm\:bottom-60 { - bottom: 15rem; + .sm\:right-28 { + right: 7rem; } - .sm\:left-60 { - left: 15rem; + .sm\:right-32 { + right: 8rem; } - .sm\:top-64 { - top: 16rem; + .sm\:right-36 { + right: 9rem; } - .sm\:right-64 { - right: 16rem; + .sm\:right-40 { + right: 10rem; } - .sm\:bottom-64 { - bottom: 16rem; + .sm\:right-44 { + right: 11rem; } - .sm\:left-64 { - left: 16rem; + .sm\:right-48 { + right: 12rem; } - .sm\:top-72 { - top: 18rem; + .sm\:right-52 { + right: 13rem; } - .sm\:right-72 { - right: 18rem; + .sm\:right-56 { + right: 14rem; } - .sm\:bottom-72 { - bottom: 18rem; + .sm\:right-60 { + right: 15rem; } - .sm\:left-72 { - left: 18rem; + .sm\:right-64 { + right: 16rem; } - .sm\:top-80 { - top: 20rem; + .sm\:right-72 { + right: 18rem; } .sm\:right-80 { right: 20rem; } - .sm\:bottom-80 { - bottom: 20rem; + .sm\:right-96 { + right: 24rem; } - .sm\:left-80 { - left: 20rem; + .sm\:right-auto { + right: auto; } - .sm\:top-96 { - top: 24rem; + .sm\:right-px { + right: 1px; } - .sm\:right-96 { - right: 24rem; + .sm\:right-0\.5 { + right: 0.125rem; } - .sm\:bottom-96 { - bottom: 24rem; + .sm\:right-1\.5 { + right: 0.375rem; } - .sm\:left-96 { - left: 24rem; + .sm\:right-2\.5 { + right: 0.625rem; } - .sm\:top-auto { - top: auto; + .sm\:right-3\.5 { + right: 0.875rem; } - .sm\:right-auto { - right: auto; + .sm\:-right-0 { + right: 0px; } - .sm\:bottom-auto { - bottom: auto; + .sm\:-right-1 { + right: -0.25rem; } - .sm\:left-auto { - left: auto; + .sm\:-right-2 { + right: -0.5rem; } - .sm\:top-px { - top: 1px; + .sm\:-right-3 { + right: -0.75rem; } - .sm\:right-px { - right: 1px; + .sm\:-right-4 { + right: -1rem; } - .sm\:bottom-px { - bottom: 1px; + .sm\:-right-5 { + right: -1.25rem; } - .sm\:left-px { - left: 1px; + .sm\:-right-6 { + right: -1.5rem; } - .sm\:top-0\.5 { - top: 0.125rem; + .sm\:-right-7 { + right: -1.75rem; } - .sm\:right-0\.5 { - right: 0.125rem; + .sm\:-right-8 { + right: -2rem; } - .sm\:bottom-0\.5 { - bottom: 0.125rem; + .sm\:-right-9 { + right: -2.25rem; } - .sm\:left-0\.5 { - left: 0.125rem; + .sm\:-right-10 { + right: -2.5rem; } - .sm\:top-1\.5 { - top: 0.375rem; + .sm\:-right-11 { + right: -2.75rem; } - .sm\:right-1\.5 { - right: 0.375rem; + .sm\:-right-12 { + right: -3rem; } - .sm\:bottom-1\.5 { - bottom: 0.375rem; + .sm\:-right-14 { + right: -3.5rem; } - .sm\:left-1\.5 { - left: 0.375rem; + .sm\:-right-16 { + right: -4rem; } - .sm\:top-2\.5 { - top: 0.625rem; + .sm\:-right-20 { + right: -5rem; } - .sm\:right-2\.5 { - right: 0.625rem; + .sm\:-right-24 { + right: -6rem; } - .sm\:bottom-2\.5 { - bottom: 0.625rem; + .sm\:-right-28 { + right: -7rem; } - .sm\:left-2\.5 { - left: 0.625rem; + .sm\:-right-32 { + right: -8rem; } - .sm\:top-3\.5 { - top: 0.875rem; + .sm\:-right-36 { + right: -9rem; } - .sm\:right-3\.5 { - right: 0.875rem; + .sm\:-right-40 { + right: -10rem; } - .sm\:bottom-3\.5 { - bottom: 0.875rem; + .sm\:-right-44 { + right: -11rem; } - .sm\:left-3\.5 { - left: 0.875rem; + .sm\:-right-48 { + right: -12rem; } - .sm\:-top-0 { - top: 0px; + .sm\:-right-52 { + right: -13rem; } - .sm\:-right-0 { - right: 0px; + .sm\:-right-56 { + right: -14rem; } - .sm\:-bottom-0 { - bottom: 0px; + .sm\:-right-60 { + right: -15rem; } - .sm\:-left-0 { - left: 0px; + .sm\:-right-64 { + right: -16rem; } - .sm\:-top-1 { - top: -0.25rem; + .sm\:-right-72 { + right: -18rem; } - .sm\:-right-1 { - right: -0.25rem; + .sm\:-right-80 { + right: -20rem; } - .sm\:-bottom-1 { - bottom: -0.25rem; + .sm\:-right-96 { + right: -24rem; } - .sm\:-left-1 { - left: -0.25rem; + .sm\:-right-px { + right: -1px; } - .sm\:-top-2 { - top: -0.5rem; + .sm\:-right-0\.5 { + right: -0.125rem; } - .sm\:-right-2 { - right: -0.5rem; + .sm\:-right-1\.5 { + right: -0.375rem; } - .sm\:-bottom-2 { - bottom: -0.5rem; + .sm\:-right-2\.5 { + right: -0.625rem; } - .sm\:-left-2 { - left: -0.5rem; + .sm\:-right-3\.5 { + right: -0.875rem; } - .sm\:-top-3 { - top: -0.75rem; + .sm\:right-1\/2 { + right: 50%; } - .sm\:-right-3 { - right: -0.75rem; + .sm\:right-1\/3 { + right: 33.333333%; } - .sm\:-bottom-3 { - bottom: -0.75rem; + .sm\:right-2\/3 { + right: 66.666667%; } - .sm\:-left-3 { - left: -0.75rem; + .sm\:right-1\/4 { + right: 25%; } - .sm\:-top-4 { - top: -1rem; + .sm\:right-2\/4 { + right: 50%; } - .sm\:-right-4 { - right: -1rem; + .sm\:right-3\/4 { + right: 75%; } - .sm\:-bottom-4 { - bottom: -1rem; + .sm\:right-full { + right: 100%; } - .sm\:-left-4 { - left: -1rem; + .sm\:-right-1\/2 { + right: -50%; } - .sm\:-top-5 { - top: -1.25rem; + .sm\:-right-1\/3 { + right: -33.333333%; } - .sm\:-right-5 { - right: -1.25rem; + .sm\:-right-2\/3 { + right: -66.666667%; } - .sm\:-bottom-5 { - bottom: -1.25rem; + .sm\:-right-1\/4 { + right: -25%; } - .sm\:-left-5 { - left: -1.25rem; + .sm\:-right-2\/4 { + right: -50%; } - .sm\:-top-6 { - top: -1.5rem; + .sm\:-right-3\/4 { + right: -75%; } - .sm\:-right-6 { - right: -1.5rem; + .sm\:-right-full { + right: -100%; } - .sm\:-bottom-6 { - bottom: -1.5rem; + .sm\:bottom-0 { + bottom: 0px; } - .sm\:-left-6 { - left: -1.5rem; + .sm\:bottom-1 { + bottom: 0.25rem; } - .sm\:-top-7 { - top: -1.75rem; + .sm\:bottom-2 { + bottom: 0.5rem; } - .sm\:-right-7 { - right: -1.75rem; + .sm\:bottom-3 { + bottom: 0.75rem; } - .sm\:-bottom-7 { - bottom: -1.75rem; + .sm\:bottom-4 { + bottom: 1rem; } - .sm\:-left-7 { - left: -1.75rem; + .sm\:bottom-5 { + bottom: 1.25rem; } - .sm\:-top-8 { - top: -2rem; + .sm\:bottom-6 { + bottom: 1.5rem; } - .sm\:-right-8 { - right: -2rem; + .sm\:bottom-7 { + bottom: 1.75rem; } - .sm\:-bottom-8 { - bottom: -2rem; + .sm\:bottom-8 { + bottom: 2rem; } - .sm\:-left-8 { - left: -2rem; + .sm\:bottom-9 { + bottom: 2.25rem; } - .sm\:-top-9 { - top: -2.25rem; + .sm\:bottom-10 { + bottom: 2.5rem; } - .sm\:-right-9 { - right: -2.25rem; + .sm\:bottom-11 { + bottom: 2.75rem; } - .sm\:-bottom-9 { - bottom: -2.25rem; + .sm\:bottom-12 { + bottom: 3rem; } - .sm\:-left-9 { - left: -2.25rem; + .sm\:bottom-14 { + bottom: 3.5rem; } - .sm\:-top-10 { - top: -2.5rem; + .sm\:bottom-16 { + bottom: 4rem; } - .sm\:-right-10 { - right: -2.5rem; + .sm\:bottom-20 { + bottom: 5rem; } - .sm\:-bottom-10 { - bottom: -2.5rem; + .sm\:bottom-24 { + bottom: 6rem; } - .sm\:-left-10 { - left: -2.5rem; + .sm\:bottom-28 { + bottom: 7rem; } - .sm\:-top-11 { - top: -2.75rem; + .sm\:bottom-32 { + bottom: 8rem; } - .sm\:-right-11 { - right: -2.75rem; + .sm\:bottom-36 { + bottom: 9rem; } - .sm\:-bottom-11 { - bottom: -2.75rem; + .sm\:bottom-40 { + bottom: 10rem; } - .sm\:-left-11 { - left: -2.75rem; + .sm\:bottom-44 { + bottom: 11rem; } - .sm\:-top-12 { - top: -3rem; + .sm\:bottom-48 { + bottom: 12rem; } - .sm\:-right-12 { - right: -3rem; + .sm\:bottom-52 { + bottom: 13rem; } - .sm\:-bottom-12 { - bottom: -3rem; + .sm\:bottom-56 { + bottom: 14rem; } - .sm\:-left-12 { - left: -3rem; + .sm\:bottom-60 { + bottom: 15rem; } - .sm\:-top-14 { - top: -3.5rem; + .sm\:bottom-64 { + bottom: 16rem; } - .sm\:-right-14 { - right: -3.5rem; + .sm\:bottom-72 { + bottom: 18rem; } - .sm\:-bottom-14 { - bottom: -3.5rem; + .sm\:bottom-80 { + bottom: 20rem; } - .sm\:-left-14 { - left: -3.5rem; + .sm\:bottom-96 { + bottom: 24rem; } - .sm\:-top-16 { - top: -4rem; + .sm\:bottom-auto { + bottom: auto; } - .sm\:-right-16 { - right: -4rem; + .sm\:bottom-px { + bottom: 1px; } - .sm\:-bottom-16 { - bottom: -4rem; + .sm\:bottom-0\.5 { + bottom: 0.125rem; } - .sm\:-left-16 { - left: -4rem; + .sm\:bottom-1\.5 { + bottom: 0.375rem; } - .sm\:-top-20 { - top: -5rem; + .sm\:bottom-2\.5 { + bottom: 0.625rem; } - .sm\:-right-20 { - right: -5rem; + .sm\:bottom-3\.5 { + bottom: 0.875rem; } - .sm\:-bottom-20 { - bottom: -5rem; + .sm\:-bottom-0 { + bottom: 0px; } - .sm\:-left-20 { - left: -5rem; + .sm\:-bottom-1 { + bottom: -0.25rem; } - .sm\:-top-24 { - top: -6rem; + .sm\:-bottom-2 { + bottom: -0.5rem; } - .sm\:-right-24 { - right: -6rem; + .sm\:-bottom-3 { + bottom: -0.75rem; } - .sm\:-bottom-24 { - bottom: -6rem; + .sm\:-bottom-4 { + bottom: -1rem; } - .sm\:-left-24 { - left: -6rem; + .sm\:-bottom-5 { + bottom: -1.25rem; } - .sm\:-top-28 { - top: -7rem; + .sm\:-bottom-6 { + bottom: -1.5rem; } - .sm\:-right-28 { - right: -7rem; + .sm\:-bottom-7 { + bottom: -1.75rem; } - .sm\:-bottom-28 { - bottom: -7rem; + .sm\:-bottom-8 { + bottom: -2rem; } - .sm\:-left-28 { - left: -7rem; + .sm\:-bottom-9 { + bottom: -2.25rem; } - .sm\:-top-32 { - top: -8rem; + .sm\:-bottom-10 { + bottom: -2.5rem; } - .sm\:-right-32 { - right: -8rem; + .sm\:-bottom-11 { + bottom: -2.75rem; } - .sm\:-bottom-32 { - bottom: -8rem; + .sm\:-bottom-12 { + bottom: -3rem; } - .sm\:-left-32 { - left: -8rem; + .sm\:-bottom-14 { + bottom: -3.5rem; } - .sm\:-top-36 { - top: -9rem; + .sm\:-bottom-16 { + bottom: -4rem; } - .sm\:-right-36 { - right: -9rem; + .sm\:-bottom-20 { + bottom: -5rem; } - .sm\:-bottom-36 { - bottom: -9rem; + .sm\:-bottom-24 { + bottom: -6rem; } - .sm\:-left-36 { - left: -9rem; + .sm\:-bottom-28 { + bottom: -7rem; } - .sm\:-top-40 { - top: -10rem; + .sm\:-bottom-32 { + bottom: -8rem; } - .sm\:-right-40 { - right: -10rem; + .sm\:-bottom-36 { + bottom: -9rem; } .sm\:-bottom-40 { bottom: -10rem; } - .sm\:-left-40 { - left: -10rem; + .sm\:-bottom-44 { + bottom: -11rem; } - .sm\:-top-44 { - top: -11rem; + .sm\:-bottom-48 { + bottom: -12rem; } - .sm\:-right-44 { - right: -11rem; + .sm\:-bottom-52 { + bottom: -13rem; } - .sm\:-bottom-44 { - bottom: -11rem; + .sm\:-bottom-56 { + bottom: -14rem; } - .sm\:-left-44 { - left: -11rem; + .sm\:-bottom-60 { + bottom: -15rem; } - .sm\:-top-48 { - top: -12rem; + .sm\:-bottom-64 { + bottom: -16rem; } - .sm\:-right-48 { - right: -12rem; + .sm\:-bottom-72 { + bottom: -18rem; } - .sm\:-bottom-48 { - bottom: -12rem; + .sm\:-bottom-80 { + bottom: -20rem; } - .sm\:-left-48 { - left: -12rem; + .sm\:-bottom-96 { + bottom: -24rem; } - .sm\:-top-52 { - top: -13rem; + .sm\:-bottom-px { + bottom: -1px; } - .sm\:-right-52 { - right: -13rem; + .sm\:-bottom-0\.5 { + bottom: -0.125rem; } - .sm\:-bottom-52 { - bottom: -13rem; + .sm\:-bottom-1\.5 { + bottom: -0.375rem; } - .sm\:-left-52 { - left: -13rem; + .sm\:-bottom-2\.5 { + bottom: -0.625rem; } - .sm\:-top-56 { - top: -14rem; + .sm\:-bottom-3\.5 { + bottom: -0.875rem; } - .sm\:-right-56 { - right: -14rem; + .sm\:bottom-1\/2 { + bottom: 50%; } - .sm\:-bottom-56 { - bottom: -14rem; + .sm\:bottom-1\/3 { + bottom: 33.333333%; } - .sm\:-left-56 { - left: -14rem; + .sm\:bottom-2\/3 { + bottom: 66.666667%; } - .sm\:-top-60 { - top: -15rem; + .sm\:bottom-1\/4 { + bottom: 25%; } - .sm\:-right-60 { - right: -15rem; + .sm\:bottom-2\/4 { + bottom: 50%; } - .sm\:-bottom-60 { - bottom: -15rem; + .sm\:bottom-3\/4 { + bottom: 75%; } - .sm\:-left-60 { - left: -15rem; + .sm\:bottom-full { + bottom: 100%; } - .sm\:-top-64 { - top: -16rem; + .sm\:-bottom-1\/2 { + bottom: -50%; } - .sm\:-right-64 { - right: -16rem; + .sm\:-bottom-1\/3 { + bottom: -33.333333%; } - .sm\:-bottom-64 { - bottom: -16rem; + .sm\:-bottom-2\/3 { + bottom: -66.666667%; } - .sm\:-left-64 { - left: -16rem; + .sm\:-bottom-1\/4 { + bottom: -25%; } - .sm\:-top-72 { - top: -18rem; + .sm\:-bottom-2\/4 { + bottom: -50%; } - .sm\:-right-72 { - right: -18rem; + .sm\:-bottom-3\/4 { + bottom: -75%; } - .sm\:-bottom-72 { - bottom: -18rem; + .sm\:-bottom-full { + bottom: -100%; } - .sm\:-left-72 { - left: -18rem; + .sm\:left-0 { + left: 0px; } - .sm\:-top-80 { - top: -20rem; + .sm\:left-1 { + left: 0.25rem; } - .sm\:-right-80 { - right: -20rem; + .sm\:left-2 { + left: 0.5rem; } - .sm\:-bottom-80 { - bottom: -20rem; + .sm\:left-3 { + left: 0.75rem; } - .sm\:-left-80 { - left: -20rem; + .sm\:left-4 { + left: 1rem; } - .sm\:-top-96 { - top: -24rem; + .sm\:left-5 { + left: 1.25rem; } - .sm\:-right-96 { - right: -24rem; + .sm\:left-6 { + left: 1.5rem; } - .sm\:-bottom-96 { - bottom: -24rem; + .sm\:left-7 { + left: 1.75rem; } - .sm\:-left-96 { - left: -24rem; + .sm\:left-8 { + left: 2rem; } - .sm\:-top-px { - top: -1px; + .sm\:left-9 { + left: 2.25rem; } - .sm\:-right-px { - right: -1px; + .sm\:left-10 { + left: 2.5rem; } - .sm\:-bottom-px { - bottom: -1px; + .sm\:left-11 { + left: 2.75rem; } - .sm\:-left-px { - left: -1px; + .sm\:left-12 { + left: 3rem; } - .sm\:-top-0\.5 { - top: -0.125rem; + .sm\:left-14 { + left: 3.5rem; } - .sm\:-right-0\.5 { - right: -0.125rem; + .sm\:left-16 { + left: 4rem; } - .sm\:-bottom-0\.5 { - bottom: -0.125rem; + .sm\:left-20 { + left: 5rem; } - .sm\:-left-0\.5 { - left: -0.125rem; + .sm\:left-24 { + left: 6rem; } - .sm\:-top-1\.5 { - top: -0.375rem; + .sm\:left-28 { + left: 7rem; } - .sm\:-right-1\.5 { - right: -0.375rem; + .sm\:left-32 { + left: 8rem; } - .sm\:-bottom-1\.5 { - bottom: -0.375rem; + .sm\:left-36 { + left: 9rem; } - .sm\:-left-1\.5 { - left: -0.375rem; + .sm\:left-40 { + left: 10rem; } - .sm\:-top-2\.5 { - top: -0.625rem; + .sm\:left-44 { + left: 11rem; } - .sm\:-right-2\.5 { - right: -0.625rem; + .sm\:left-48 { + left: 12rem; } - .sm\:-bottom-2\.5 { - bottom: -0.625rem; + .sm\:left-52 { + left: 13rem; } - .sm\:-left-2\.5 { - left: -0.625rem; + .sm\:left-56 { + left: 14rem; } - .sm\:-top-3\.5 { - top: -0.875rem; + .sm\:left-60 { + left: 15rem; } - .sm\:-right-3\.5 { - right: -0.875rem; + .sm\:left-64 { + left: 16rem; } - .sm\:-bottom-3\.5 { - bottom: -0.875rem; + .sm\:left-72 { + left: 18rem; } - .sm\:-left-3\.5 { - left: -0.875rem; + .sm\:left-80 { + left: 20rem; } - .sm\:top-1\/2 { - top: 50%; + .sm\:left-96 { + left: 24rem; } - .sm\:right-1\/2 { - right: 50%; + .sm\:left-auto { + left: auto; } - .sm\:bottom-1\/2 { - bottom: 50%; + .sm\:left-px { + left: 1px; } - .sm\:left-1\/2 { - left: 50%; + .sm\:left-0\.5 { + left: 0.125rem; } - .sm\:top-1\/3 { - top: 33.333333%; + .sm\:left-1\.5 { + left: 0.375rem; } - .sm\:right-1\/3 { - right: 33.333333%; + .sm\:left-2\.5 { + left: 0.625rem; } - .sm\:bottom-1\/3 { - bottom: 33.333333%; + .sm\:left-3\.5 { + left: 0.875rem; } - .sm\:left-1\/3 { - left: 33.333333%; + .sm\:-left-0 { + left: 0px; } - .sm\:top-2\/3 { - top: 66.666667%; + .sm\:-left-1 { + left: -0.25rem; } - .sm\:right-2\/3 { - right: 66.666667%; + .sm\:-left-2 { + left: -0.5rem; } - .sm\:bottom-2\/3 { - bottom: 66.666667%; + .sm\:-left-3 { + left: -0.75rem; } - .sm\:left-2\/3 { - left: 66.666667%; + .sm\:-left-4 { + left: -1rem; } - .sm\:top-1\/4 { - top: 25%; + .sm\:-left-5 { + left: -1.25rem; } - .sm\:right-1\/4 { - right: 25%; + .sm\:-left-6 { + left: -1.5rem; } - .sm\:bottom-1\/4 { - bottom: 25%; + .sm\:-left-7 { + left: -1.75rem; } - .sm\:left-1\/4 { - left: 25%; + .sm\:-left-8 { + left: -2rem; } - .sm\:top-2\/4 { - top: 50%; + .sm\:-left-9 { + left: -2.25rem; } - .sm\:right-2\/4 { - right: 50%; + .sm\:-left-10 { + left: -2.5rem; } - .sm\:bottom-2\/4 { - bottom: 50%; + .sm\:-left-11 { + left: -2.75rem; } - .sm\:left-2\/4 { - left: 50%; + .sm\:-left-12 { + left: -3rem; } - .sm\:top-3\/4 { - top: 75%; + .sm\:-left-14 { + left: -3.5rem; } - .sm\:right-3\/4 { - right: 75%; + .sm\:-left-16 { + left: -4rem; } - .sm\:bottom-3\/4 { - bottom: 75%; + .sm\:-left-20 { + left: -5rem; } - .sm\:left-3\/4 { - left: 75%; + .sm\:-left-24 { + left: -6rem; } - .sm\:top-full { - top: 100%; + .sm\:-left-28 { + left: -7rem; } - .sm\:right-full { - right: 100%; + .sm\:-left-32 { + left: -8rem; } - .sm\:bottom-full { - bottom: 100%; + .sm\:-left-36 { + left: -9rem; } - .sm\:left-full { - left: 100%; + .sm\:-left-40 { + left: -10rem; } - .sm\:-top-1\/2 { - top: -50%; + .sm\:-left-44 { + left: -11rem; } - .sm\:-right-1\/2 { - right: -50%; + .sm\:-left-48 { + left: -12rem; } - .sm\:-bottom-1\/2 { - bottom: -50%; + .sm\:-left-52 { + left: -13rem; } - .sm\:-left-1\/2 { - left: -50%; + .sm\:-left-56 { + left: -14rem; } - .sm\:-top-1\/3 { - top: -33.333333%; + .sm\:-left-60 { + left: -15rem; } - .sm\:-right-1\/3 { - right: -33.333333%; + .sm\:-left-64 { + left: -16rem; } - .sm\:-bottom-1\/3 { - bottom: -33.333333%; + .sm\:-left-72 { + left: -18rem; } - .sm\:-left-1\/3 { - left: -33.333333%; + .sm\:-left-80 { + left: -20rem; } - .sm\:-top-2\/3 { - top: -66.666667%; + .sm\:-left-96 { + left: -24rem; } - .sm\:-right-2\/3 { - right: -66.666667%; + .sm\:-left-px { + left: -1px; } - .sm\:-bottom-2\/3 { - bottom: -66.666667%; + .sm\:-left-0\.5 { + left: -0.125rem; } - .sm\:-left-2\/3 { - left: -66.666667%; + .sm\:-left-1\.5 { + left: -0.375rem; } - .sm\:-top-1\/4 { - top: -25%; + .sm\:-left-2\.5 { + left: -0.625rem; } - .sm\:-right-1\/4 { - right: -25%; + .sm\:-left-3\.5 { + left: -0.875rem; } - .sm\:-bottom-1\/4 { - bottom: -25%; + .sm\:left-1\/2 { + left: 50%; } - .sm\:-left-1\/4 { - left: -25%; + .sm\:left-1\/3 { + left: 33.333333%; } - .sm\:-top-2\/4 { - top: -50%; + .sm\:left-2\/3 { + left: 66.666667%; } - .sm\:-right-2\/4 { - right: -50%; + .sm\:left-1\/4 { + left: 25%; } - .sm\:-bottom-2\/4 { - bottom: -50%; + .sm\:left-2\/4 { + left: 50%; } - .sm\:-left-2\/4 { - left: -50%; + .sm\:left-3\/4 { + left: 75%; } - .sm\:-top-3\/4 { - top: -75%; + .sm\:left-full { + left: 100%; } - .sm\:-right-3\/4 { - right: -75%; + .sm\:-left-1\/2 { + left: -50%; } - .sm\:-bottom-3\/4 { - bottom: -75%; + .sm\:-left-1\/3 { + left: -33.333333%; } - .sm\:-left-3\/4 { - left: -75%; + .sm\:-left-2\/3 { + left: -66.666667%; } - .sm\:-top-full { - top: -100%; + .sm\:-left-1\/4 { + left: -25%; } - .sm\:-right-full { - right: -100%; + .sm\:-left-2\/4 { + left: -50%; } - .sm\:-bottom-full { - bottom: -100%; + .sm\:-left-3\/4 { + left: -75%; } .sm\:-left-full { @@ -38791,133 +38791,183 @@ video { --tw-scale-y: 1.5; } - .sm\:scale-x-0 { + .sm\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .sm\:scale-x-50 { + .sm\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .sm\:scale-x-75 { + .sm\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .sm\:scale-x-90 { + .sm\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .sm\:scale-x-95 { + .sm\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .sm\:scale-x-100 { + .sm\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .sm\:scale-x-105 { + .sm\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .sm\:scale-x-110 { + .sm\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .sm\:scale-x-125 { + .sm\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .sm\:scale-x-150 { + .sm\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .sm\:scale-y-0 { + .sm\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .sm\:scale-y-50 { + .sm\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .sm\:scale-y-75 { + .sm\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .sm\:scale-y-90 { + .sm\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .sm\:scale-y-95 { + .sm\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .sm\:scale-y-100 { + .sm\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .sm\:scale-y-105 { + .sm\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .sm\:scale-y-110 { + .sm\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .sm\:scale-y-125 { + .sm\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .sm\:scale-y-150 { + .sm\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .sm\:hover\:scale-0:hover { + .sm\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .sm\:hover\:scale-50:hover { + .sm\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .sm\:hover\:scale-75:hover { + .sm\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .sm\:hover\:scale-90:hover { + .sm\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .sm\:hover\:scale-95:hover { + .sm\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .sm\:hover\:scale-100:hover { + .sm\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .sm\:hover\:scale-105:hover { + .sm\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .sm\:hover\:scale-110:hover { + .sm\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .sm\:hover\:scale-125:hover { + .sm\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .sm\:hover\:scale-150:hover { + .sm\:scale-x-150 { --tw-scale-x: 1.5; + } + + .sm\:scale-y-0 { + --tw-scale-y: 0; + } + + .sm\:scale-y-50 { + --tw-scale-y: .5; + } + + .sm\:scale-y-75 { + --tw-scale-y: .75; + } + + .sm\:scale-y-90 { + --tw-scale-y: .9; + } + + .sm\:scale-y-95 { + --tw-scale-y: .95; + } + + .sm\:scale-y-100 { + --tw-scale-y: 1; + } + + .sm\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .sm\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .sm\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .sm\:scale-y-150 { --tw-scale-y: 1.5; } @@ -39001,56 +39051,6 @@ video { --tw-scale-y: 1.5; } - .sm\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .sm\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .sm\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .sm\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .sm\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .sm\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .sm\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .sm\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .sm\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .sm\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .sm\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -39943,436 +39943,640 @@ video { row-gap: 0.875rem; } - .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .sm\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .sm\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .sm\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .sm\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .sm\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .sm\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .sm\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .sm\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .sm\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -40381,408 +40585,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .sm\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .sm\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .sm\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -40791,66 +40791,66 @@ video { --tw-space-x-reverse: 1; } - .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .sm\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .sm\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .sm\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .sm\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -47264,2188 +47264,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .sm\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .sm\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .sm\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .sm\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .sm\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .sm\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .sm\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .sm\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .sm\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .sm\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .sm\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .sm\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .sm\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .sm\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .sm\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .sm\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .sm\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .sm\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .sm\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .sm\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .sm\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .sm\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .sm\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .sm\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .sm\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .sm\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .sm\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .sm\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .sm\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .sm\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .sm\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .sm\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .sm\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .sm\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .sm\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .sm\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .sm\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .sm\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .sm\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .sm\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .sm\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .sm\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .sm\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .sm\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .sm\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .sm\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .sm\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .sm\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .sm\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .sm\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .sm\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .sm\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .sm\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .sm\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .sm\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .sm\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .sm\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .sm\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .sm\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .sm\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .sm\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .sm\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .sm\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .sm\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .sm\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .sm\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .sm\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .sm\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .sm\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .sm\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .sm\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .sm\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .sm\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .sm\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .sm\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .sm\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .sm\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .sm\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .sm\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .sm\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .sm\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .sm\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .sm\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .sm\:to-transparent { - --tw-gradient-to: transparent; + .sm\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:to-current { - --tw-gradient-to: currentColor; + .sm\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:to-black { - --tw-gradient-to: #000; + .sm\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:to-white { - --tw-gradient-to: #fff; + .sm\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .sm\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .sm\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .sm\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .sm\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .sm\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:to-gray-500 { - --tw-gradient-to: #6b7280; + .sm\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:to-gray-600 { - --tw-gradient-to: #4b5563; + .sm\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:to-gray-700 { - --tw-gradient-to: #374151; + .sm\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:to-gray-800 { - --tw-gradient-to: #1f2937; + .sm\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:to-gray-900 { - --tw-gradient-to: #111827; + .sm\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:to-red-50 { - --tw-gradient-to: #fef2f2; + .sm\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:to-red-100 { - --tw-gradient-to: #fee2e2; + .sm\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:to-red-200 { - --tw-gradient-to: #fecaca; + .sm\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:to-red-300 { - --tw-gradient-to: #fca5a5; + .sm\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:to-red-400 { - --tw-gradient-to: #f87171; + .sm\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:to-red-500 { - --tw-gradient-to: #ef4444; + .sm\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:to-red-600 { - --tw-gradient-to: #dc2626; + .sm\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:to-red-700 { - --tw-gradient-to: #b91c1c; + .sm\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:to-red-800 { - --tw-gradient-to: #991b1b; + .sm\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .sm\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .sm\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .sm\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .sm\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .sm\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .sm\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .sm\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:to-yellow-600 { - --tw-gradient-to: #d97706; + .sm\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:to-yellow-700 { - --tw-gradient-to: #b45309; + .sm\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:to-yellow-800 { - --tw-gradient-to: #92400e; + .sm\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:to-yellow-900 { - --tw-gradient-to: #78350f; + .sm\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .sm\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:to-green-100 { - --tw-gradient-to: #d1fae5; + .sm\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .sm\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .sm\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:to-green-400 { - --tw-gradient-to: #34d399; + .sm\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:to-green-500 { - --tw-gradient-to: #10b981; + .sm\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:to-green-600 { - --tw-gradient-to: #059669; + .sm\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:to-green-700 { - --tw-gradient-to: #047857; + .sm\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:to-green-800 { - --tw-gradient-to: #065f46; + .sm\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:to-green-900 { - --tw-gradient-to: #064e3b; + .sm\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .sm\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .sm\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .sm\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .sm\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .sm\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .sm\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:to-blue-600 { - --tw-gradient-to: #2563eb; + .sm\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .sm\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:to-blue-800 { - --tw-gradient-to: #1e40af; + .sm\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .sm\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .sm\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .sm\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .sm\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .sm\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .sm\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .sm\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .sm\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .sm\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .sm\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:to-indigo-900 { - --tw-gradient-to: #312e81; + .sm\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .sm\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .sm\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .sm\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .sm\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .sm\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .sm\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .sm\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .sm\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .sm\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .sm\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .sm\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .sm\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .sm\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .sm\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:to-pink-400 { - --tw-gradient-to: #f472b6; + .sm\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:to-pink-500 { - --tw-gradient-to: #ec4899; + .sm\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:to-pink-600 { - --tw-gradient-to: #db2777; + .sm\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:to-pink-700 { - --tw-gradient-to: #be185d; + .sm\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:to-pink-800 { - --tw-gradient-to: #9d174d; + .sm\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:to-pink-900 { - --tw-gradient-to: #831843; + .sm\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:hover\:from-transparent:hover { + .sm\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:from-current:hover { + .sm\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:from-black:hover { + .sm\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:from-white:hover { + .sm\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:from-gray-50:hover { + .sm\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:hover\:from-gray-100:hover { + .sm\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:hover\:from-gray-200:hover { + .sm\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:hover\:from-gray-300:hover { + .sm\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:hover\:from-gray-400:hover { + .sm\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:hover\:from-gray-500:hover { + .sm\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:hover\:from-gray-600:hover { + .sm\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:hover\:from-gray-700:hover { + .sm\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:hover\:from-gray-800:hover { + .sm\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:hover\:from-gray-900:hover { + .sm\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:hover\:from-red-50:hover { + .sm\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:hover\:from-red-100:hover { + .sm\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:hover\:from-red-200:hover { + .sm\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:hover\:from-red-300:hover { + .sm\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:hover\:from-red-400:hover { + .sm\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:hover\:from-red-500:hover { + .sm\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:hover\:from-red-600:hover { + .sm\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:hover\:from-red-700:hover { + .sm\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:hover\:from-red-800:hover { + .sm\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:hover\:from-red-900:hover { + .sm\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:hover\:from-yellow-50:hover { + .sm\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:hover\:from-yellow-100:hover { + .sm\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:hover\:from-yellow-200:hover { + .sm\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:hover\:from-yellow-300:hover { + .sm\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:hover\:from-yellow-400:hover { + .sm\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:hover\:from-yellow-500:hover { + .sm\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:hover\:from-yellow-600:hover { + .sm\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:hover\:from-yellow-700:hover { + .sm\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:hover\:from-yellow-800:hover { + .sm\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:hover\:from-yellow-900:hover { + .sm\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:hover\:from-green-50:hover { + .sm\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:hover\:from-green-100:hover { + .sm\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:hover\:from-green-200:hover { + .sm\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:hover\:from-green-300:hover { + .sm\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:hover\:from-green-400:hover { + .sm\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:hover\:from-green-500:hover { + .sm\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:hover\:from-green-600:hover { + .sm\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:hover\:from-green-700:hover { + .sm\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:hover\:from-green-800:hover { + .sm\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:hover\:from-green-900:hover { + .sm\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:hover\:from-blue-50:hover { + .sm\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:hover\:from-blue-100:hover { + .sm\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:hover\:from-blue-200:hover { + .sm\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:hover\:from-blue-300:hover { + .sm\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:hover\:from-blue-400:hover { + .sm\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:hover\:from-blue-500:hover { + .sm\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:hover\:from-blue-600:hover { + .sm\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:hover\:from-blue-700:hover { + .sm\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:hover\:from-blue-800:hover { + .sm\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:hover\:from-blue-900:hover { + .sm\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:hover\:from-indigo-50:hover { + .sm\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:hover\:from-indigo-100:hover { + .sm\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:hover\:from-indigo-200:hover { + .sm\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:hover\:from-indigo-300:hover { + .sm\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:hover\:from-indigo-400:hover { + .sm\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:hover\:from-indigo-500:hover { + .sm\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:hover\:from-indigo-600:hover { + .sm\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:hover\:from-indigo-700:hover { + .sm\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:hover\:from-indigo-800:hover { + .sm\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:hover\:from-indigo-900:hover { + .sm\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:hover\:from-purple-50:hover { + .sm\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:hover\:from-purple-100:hover { + .sm\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:hover\:from-purple-200:hover { + .sm\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:hover\:from-purple-300:hover { + .sm\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:hover\:from-purple-400:hover { + .sm\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:hover\:from-purple-500:hover { + .sm\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:hover\:from-purple-600:hover { + .sm\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:hover\:from-purple-700:hover { + .sm\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:hover\:from-purple-800:hover { + .sm\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:hover\:from-purple-900:hover { + .sm\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:hover\:from-pink-50:hover { + .sm\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:hover\:from-pink-100:hover { + .sm\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:hover\:from-pink-200:hover { + .sm\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:hover\:from-pink-300:hover { + .sm\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:hover\:from-pink-400:hover { + .sm\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:hover\:from-pink-500:hover { + .sm\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:hover\:from-pink-600:hover { + .sm\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:hover\:from-pink-700:hover { + .sm\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:hover\:from-pink-800:hover { + .sm\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:hover\:from-pink-900:hover { + .sm\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:hover\:via-transparent:hover { + .sm\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:via-current:hover { + .sm\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:via-black:hover { + .sm\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:hover\:via-white:hover { + .sm\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:hover\:via-gray-50:hover { + .sm\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:hover\:via-gray-100:hover { + .sm\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:hover\:via-gray-200:hover { + .sm\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:hover\:via-gray-300:hover { + .sm\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:hover\:via-gray-400:hover { + .sm\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:hover\:via-gray-500:hover { + .sm\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:hover\:via-gray-600:hover { + .sm\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:hover\:via-gray-700:hover { + .sm\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:hover\:via-gray-800:hover { + .sm\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:hover\:via-gray-900:hover { + .sm\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:hover\:via-red-50:hover { + .sm\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:hover\:via-red-100:hover { + .sm\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:hover\:via-red-200:hover { + .sm\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:hover\:via-red-300:hover { + .sm\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:hover\:via-red-400:hover { + .sm\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:hover\:via-red-500:hover { + .sm\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:hover\:via-red-600:hover { + .sm\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:hover\:via-red-700:hover { + .sm\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:hover\:via-red-800:hover { + .sm\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:hover\:via-red-900:hover { + .sm\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:hover\:via-yellow-50:hover { + .sm\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:hover\:via-yellow-100:hover { + .sm\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:hover\:via-yellow-200:hover { + .sm\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:hover\:via-yellow-300:hover { + .sm\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:hover\:via-yellow-400:hover { + .sm\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:hover\:via-yellow-500:hover { + .sm\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:hover\:via-yellow-600:hover { + .sm\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:hover\:via-yellow-700:hover { + .sm\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:hover\:via-yellow-800:hover { + .sm\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:hover\:via-yellow-900:hover { + .sm\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:hover\:via-green-50:hover { + .sm\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:hover\:via-green-100:hover { + .sm\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:hover\:via-green-200:hover { + .sm\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:hover\:via-green-300:hover { + .sm\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:hover\:via-green-400:hover { + .sm\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:hover\:via-green-500:hover { + .sm\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:hover\:via-green-600:hover { + .sm\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:hover\:via-green-700:hover { + .sm\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:hover\:via-green-800:hover { + .sm\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:hover\:via-green-900:hover { + .sm\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:hover\:via-blue-50:hover { + .sm\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:hover\:via-blue-100:hover { + .sm\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:hover\:via-blue-200:hover { + .sm\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:hover\:via-blue-300:hover { + .sm\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:hover\:via-blue-400:hover { + .sm\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:hover\:via-blue-500:hover { + .sm\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:hover\:via-blue-600:hover { + .sm\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:hover\:via-blue-700:hover { + .sm\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:hover\:via-blue-800:hover { + .sm\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:hover\:via-blue-900:hover { + .sm\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:hover\:via-indigo-50:hover { + .sm\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:hover\:via-indigo-100:hover { + .sm\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:hover\:via-indigo-200:hover { + .sm\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:hover\:via-indigo-300:hover { + .sm\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:hover\:via-indigo-400:hover { + .sm\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:hover\:via-indigo-500:hover { + .sm\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:hover\:via-indigo-600:hover { + .sm\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:hover\:via-indigo-700:hover { + .sm\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:hover\:via-indigo-800:hover { + .sm\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:hover\:via-indigo-900:hover { + .sm\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:hover\:via-purple-50:hover { + .sm\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:hover\:via-purple-100:hover { + .sm\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:hover\:via-purple-200:hover { + .sm\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:hover\:via-purple-300:hover { + .sm\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:hover\:via-purple-400:hover { + .sm\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:hover\:via-purple-500:hover { + .sm\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:hover\:via-purple-600:hover { + .sm\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:hover\:via-purple-700:hover { + .sm\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:hover\:via-purple-800:hover { + .sm\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:hover\:via-purple-900:hover { + .sm\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:hover\:via-pink-50:hover { + .sm\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:hover\:via-pink-100:hover { + .sm\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:hover\:via-pink-200:hover { + .sm\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:hover\:via-pink-300:hover { + .sm\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:hover\:via-pink-400:hover { + .sm\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:hover\:via-pink-500:hover { + .sm\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:hover\:via-pink-600:hover { + .sm\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:hover\:via-pink-700:hover { + .sm\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:hover\:via-pink-800:hover { + .sm\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:hover\:via-pink-900:hover { + .sm\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .sm\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .sm\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .sm\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .sm\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .sm\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .sm\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .sm\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .sm\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .sm\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .sm\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .sm\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .sm\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .sm\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .sm\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .sm\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .sm\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .sm\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .sm\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .sm\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .sm\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .sm\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .sm\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .sm\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .sm\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .sm\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .sm\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .sm\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .sm\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .sm\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .sm\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .sm\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .sm\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .sm\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .sm\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .sm\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .sm\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .sm\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .sm\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .sm\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .sm\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .sm\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .sm\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .sm\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .sm\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .sm\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .sm\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .sm\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .sm\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .sm\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .sm\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .sm\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .sm\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .sm\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .sm\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .sm\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .sm\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .sm\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .sm\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .sm\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .sm\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .sm\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .sm\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .sm\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .sm\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .sm\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .sm\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .sm\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .sm\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .sm\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .sm\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .sm\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .sm\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .sm\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .sm\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .sm\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .sm\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .sm\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .sm\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .sm\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .sm\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .sm\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .sm\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .sm\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .sm\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .sm\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .sm\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .sm\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .sm\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .sm\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .sm\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .sm\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .sm\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .sm\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .sm\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .sm\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .sm\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .sm\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .sm\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .sm\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .sm\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .sm\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .sm\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .sm\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .sm\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .sm\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .sm\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .sm\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .sm\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .sm\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .sm\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .sm\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .sm\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .sm\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .sm\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .sm\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .sm\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .sm\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .sm\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .sm\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .sm\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .sm\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .sm\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .sm\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .sm\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .sm\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .sm\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .sm\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .sm\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .sm\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .sm\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .sm\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .sm\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .sm\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .sm\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .sm\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .sm\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .sm\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .sm\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .sm\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .sm\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .sm\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .sm\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .sm\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .sm\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .sm\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .sm\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .sm\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .sm\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .sm\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .sm\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .sm\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .sm\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .sm\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .sm\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .sm\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .sm\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .sm\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .sm\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .sm\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .sm\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .sm\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .sm\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .sm\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .sm\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .sm\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .sm\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .sm\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .sm\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .sm\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .sm\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .sm\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .sm\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .sm\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .sm\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .sm\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .sm\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .sm\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .sm\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .sm\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .sm\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .sm\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .sm\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .sm\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .sm\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .sm\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .sm\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .sm\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .sm\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .sm\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .sm\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .sm\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .sm\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .sm\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .sm\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .sm\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .sm\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .sm\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .sm\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .sm\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .sm\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .sm\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .sm\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .sm\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .sm\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .sm\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .sm\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .sm\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .sm\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .sm\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .sm\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .sm\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .sm\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .sm\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .sm\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .sm\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .sm\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .sm\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .sm\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .sm\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .sm\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .sm\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .sm\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .sm\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .sm\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .sm\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .sm\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .sm\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .sm\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .sm\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .sm\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .sm\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .sm\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .sm\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .sm\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .sm\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .sm\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .sm\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .sm\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .sm\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .sm\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .sm\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .sm\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .sm\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .sm\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .sm\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .sm\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .sm\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .sm\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .sm\:focus\:via-transparent:focus { @@ -49784,6 +49112,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .sm\:to-transparent { + --tw-gradient-to: transparent; + } + + .sm\:to-current { + --tw-gradient-to: currentColor; + } + + .sm\:to-black { + --tw-gradient-to: #000; + } + + .sm\:to-white { + --tw-gradient-to: #fff; + } + + .sm\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .sm\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .sm\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .sm\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .sm\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .sm\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .sm\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .sm\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .sm\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .sm\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .sm\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .sm\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .sm\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .sm\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .sm\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .sm\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .sm\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .sm\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .sm\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .sm\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .sm\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .sm\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .sm\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .sm\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .sm\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .sm\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .sm\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .sm\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .sm\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .sm\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .sm\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .sm\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .sm\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .sm\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .sm\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .sm\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .sm\:to-green-600 { + --tw-gradient-to: #059669; + } + + .sm\:to-green-700 { + --tw-gradient-to: #047857; + } + + .sm\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .sm\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .sm\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .sm\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .sm\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .sm\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .sm\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .sm\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .sm\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .sm\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .sm\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .sm\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .sm\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .sm\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .sm\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .sm\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .sm\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .sm\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .sm\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .sm\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .sm\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .sm\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .sm\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .sm\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .sm\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .sm\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .sm\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .sm\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .sm\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .sm\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .sm\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .sm\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .sm\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .sm\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .sm\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .sm\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .sm\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .sm\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .sm\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .sm\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .sm\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .sm\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .sm\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .sm\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .sm\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .sm\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .sm\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .sm\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .sm\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .sm\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .sm\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .sm\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .sm\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .sm\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .sm\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .sm\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .sm\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .sm\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .sm\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .sm\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .sm\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .sm\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .sm\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .sm\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .sm\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .sm\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .sm\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .sm\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .sm\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .sm\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .sm\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .sm\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .sm\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .sm\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .sm\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .sm\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .sm\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .sm\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .sm\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .sm\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .sm\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .sm\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .sm\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .sm\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .sm\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .sm\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .sm\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .sm\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .sm\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .sm\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .sm\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .sm\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .sm\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .sm\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .sm\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .sm\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .sm\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .sm\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .sm\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .sm\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .sm\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .sm\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .sm\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .sm\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .sm\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .sm\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .sm\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .sm\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .sm\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .sm\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .sm\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .sm\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .sm\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .sm\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .sm\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .sm\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .sm\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .sm\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .sm\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .sm\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .sm\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .sm\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .sm\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .sm\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .sm\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .sm\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .sm\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -55793,10 +55793,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:ring-inset { - --tw-ring-inset: inset; - } - .sm\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -55833,10 +55829,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .sm\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .sm\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -55873,6 +55865,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .sm\:ring-inset { + --tw-ring-inset: inset; + } + + .sm\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .sm\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -58633,6 +58633,38 @@ video { backdrop-filter: none; } + .sm\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .sm\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .sm\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .sm\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .sm\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .sm\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .sm\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .sm\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .sm\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -59542,116 +59574,541 @@ video { left: -0.375rem; } - .md\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .md\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .md\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .md\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .md\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .md\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .md\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .md\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .md\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .md\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .md\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .md\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .md\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .md\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .md\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .md\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .md\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .md\:inset-x-0 { + left: 0px; + right: 0px; + } + + .md\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .md\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .md\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .md\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .md\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .md\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .md\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .md\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .md\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .md\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .md\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .md\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .md\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .md\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .md\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .md\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .md\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .md\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .md\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .md\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .md\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .md\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .md\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .md\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .md\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .md\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .md\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .md\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .md\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .md\:inset-x-auto { + left: auto; + right: auto; + } + + .md\:inset-x-px { + left: 1px; + right: 1px; + } + + .md\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .md\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .md\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .md\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .md\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .md\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .md\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .md\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .md\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .md\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .md\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .md\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .md\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .md\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .md\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .md\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .md\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .md\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .md\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .md\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .md\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .md\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .md\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .md\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .md\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .md\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .md\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .md\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .md\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .md\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .md\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .md\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .md\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .md\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .md\:-inset-x-px { + left: -1px; + right: -1px; + } + + .md\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .md\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .md\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .md\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .md\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .md\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .md\:inset-x-1\/2 { left: 50%; + right: 50%; } - .md\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .md\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .md\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .md\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .md\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .md\:inset-x-1\/4 { left: 25%; + right: 25%; } - .md\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .md\:inset-x-2\/4 { left: 50%; + right: 50%; } - .md\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .md\:inset-x-3\/4 { left: 75%; + right: 75%; } - .md\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .md\:inset-x-full { left: 100%; + right: 100%; } - .md\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .md\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .md\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .md\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .md\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .md\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .md\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .md\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .md\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .md\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .md\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .md\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .md\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .md\:-inset-x-full { left: -100%; + right: -100%; } .md\:inset-y-0 { @@ -59659,2205 +60116,1780 @@ video { bottom: 0px; } - .md\:inset-x-0 { - right: 0px; - left: 0px; - } - .md\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .md\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .md\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .md\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .md\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .md\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .md\:inset-y-4 { top: 1rem; bottom: 1rem; } - .md\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .md\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .md\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .md\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .md\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .md\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .md\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .md\:inset-y-8 { top: 2rem; bottom: 2rem; } - .md\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .md\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .md\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .md\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .md\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .md\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .md\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .md\:inset-y-12 { top: 3rem; bottom: 3rem; } - .md\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .md\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .md\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .md\:inset-y-16 { top: 4rem; bottom: 4rem; } - .md\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .md\:inset-y-20 { top: 5rem; bottom: 5rem; } - .md\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .md\:inset-y-24 { top: 6rem; bottom: 6rem; } - .md\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .md\:inset-y-28 { top: 7rem; bottom: 7rem; } - .md\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .md\:inset-y-32 { top: 8rem; bottom: 8rem; } - .md\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .md\:inset-y-36 { top: 9rem; bottom: 9rem; } - .md\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .md\:inset-y-40 { top: 10rem; bottom: 10rem; } - .md\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .md\:inset-y-44 { top: 11rem; bottom: 11rem; } - .md\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .md\:inset-y-48 { top: 12rem; bottom: 12rem; } - .md\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .md\:inset-y-52 { top: 13rem; bottom: 13rem; } - .md\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .md\:inset-y-56 { top: 14rem; bottom: 14rem; } - .md\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .md\:inset-y-60 { top: 15rem; bottom: 15rem; } - .md\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .md\:inset-y-64 { top: 16rem; bottom: 16rem; } - .md\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .md\:inset-y-72 { top: 18rem; bottom: 18rem; } - .md\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .md\:inset-y-80 { top: 20rem; bottom: 20rem; } - .md\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .md\:inset-y-96 { top: 24rem; bottom: 24rem; } - .md\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .md\:inset-y-auto { top: auto; bottom: auto; } - .md\:inset-x-auto { - right: auto; - left: auto; - } - .md\:inset-y-px { top: 1px; bottom: 1px; } - .md\:inset-x-px { - right: 1px; - left: 1px; - } - .md\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .md\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .md\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .md\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .md\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .md\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .md\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .md\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .md\:-inset-y-0 { top: 0px; bottom: 0px; } - .md\:-inset-x-0 { - right: 0px; - left: 0px; - } - .md\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .md\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .md\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .md\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .md\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .md\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .md\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .md\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .md\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .md\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .md\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .md\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .md\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .md\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .md\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .md\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .md\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .md\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .md\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .md\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .md\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .md\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .md\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .md\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .md\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .md\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .md\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .md\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .md\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .md\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .md\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .md\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .md\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .md\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .md\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .md\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .md\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .md\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .md\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .md\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .md\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .md\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .md\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .md\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .md\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .md\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .md\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .md\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .md\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .md\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .md\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .md\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .md\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .md\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .md\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .md\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .md\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .md\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .md\:-inset-y-px { top: -1px; bottom: -1px; } - .md\:-inset-x-px { - right: -1px; - left: -1px; - } - .md\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .md\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .md\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .md\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .md\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .md\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .md\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .md\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .md\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .md\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .md\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .md\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .md\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .md\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .md\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .md\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .md\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .md\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .md\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .md\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .md\:inset-y-full { top: 100%; bottom: 100%; } - .md\:inset-x-full { - right: 100%; - left: 100%; - } - .md\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .md\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .md\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .md\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .md\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .md\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .md\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .md\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .md\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .md\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .md\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .md\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .md\:-inset-y-full { top: -100%; bottom: -100%; } - .md\:-inset-x-full { - right: -100%; - left: -100%; - } - .md\:top-0 { top: 0px; } - .md\:right-0 { - right: 0px; + .md\:top-1 { + top: 0.25rem; } - .md\:bottom-0 { - bottom: 0px; + .md\:top-2 { + top: 0.5rem; } - .md\:left-0 { - left: 0px; + .md\:top-3 { + top: 0.75rem; } - .md\:top-1 { - top: 0.25rem; + .md\:top-4 { + top: 1rem; } - .md\:right-1 { - right: 0.25rem; + .md\:top-5 { + top: 1.25rem; } - .md\:bottom-1 { - bottom: 0.25rem; + .md\:top-6 { + top: 1.5rem; } - .md\:left-1 { - left: 0.25rem; + .md\:top-7 { + top: 1.75rem; } - .md\:top-2 { - top: 0.5rem; + .md\:top-8 { + top: 2rem; } - .md\:right-2 { - right: 0.5rem; + .md\:top-9 { + top: 2.25rem; } - .md\:bottom-2 { - bottom: 0.5rem; + .md\:top-10 { + top: 2.5rem; } - .md\:left-2 { - left: 0.5rem; + .md\:top-11 { + top: 2.75rem; } - .md\:top-3 { - top: 0.75rem; + .md\:top-12 { + top: 3rem; } - .md\:right-3 { - right: 0.75rem; + .md\:top-14 { + top: 3.5rem; } - .md\:bottom-3 { - bottom: 0.75rem; + .md\:top-16 { + top: 4rem; } - .md\:left-3 { - left: 0.75rem; + .md\:top-20 { + top: 5rem; } - .md\:top-4 { - top: 1rem; + .md\:top-24 { + top: 6rem; } - .md\:right-4 { - right: 1rem; + .md\:top-28 { + top: 7rem; } - .md\:bottom-4 { - bottom: 1rem; + .md\:top-32 { + top: 8rem; } - .md\:left-4 { - left: 1rem; + .md\:top-36 { + top: 9rem; } - .md\:top-5 { - top: 1.25rem; + .md\:top-40 { + top: 10rem; } - .md\:right-5 { - right: 1.25rem; + .md\:top-44 { + top: 11rem; } - .md\:bottom-5 { - bottom: 1.25rem; + .md\:top-48 { + top: 12rem; } - .md\:left-5 { - left: 1.25rem; + .md\:top-52 { + top: 13rem; } - .md\:top-6 { - top: 1.5rem; + .md\:top-56 { + top: 14rem; } - .md\:right-6 { - right: 1.5rem; + .md\:top-60 { + top: 15rem; } - .md\:bottom-6 { - bottom: 1.5rem; + .md\:top-64 { + top: 16rem; } - .md\:left-6 { - left: 1.5rem; + .md\:top-72 { + top: 18rem; } - .md\:top-7 { - top: 1.75rem; + .md\:top-80 { + top: 20rem; } - .md\:right-7 { - right: 1.75rem; + .md\:top-96 { + top: 24rem; } - .md\:bottom-7 { - bottom: 1.75rem; + .md\:top-auto { + top: auto; } - .md\:left-7 { - left: 1.75rem; + .md\:top-px { + top: 1px; } - .md\:top-8 { - top: 2rem; + .md\:top-0\.5 { + top: 0.125rem; } - .md\:right-8 { - right: 2rem; + .md\:top-1\.5 { + top: 0.375rem; } - .md\:bottom-8 { - bottom: 2rem; + .md\:top-2\.5 { + top: 0.625rem; } - .md\:left-8 { - left: 2rem; + .md\:top-3\.5 { + top: 0.875rem; } - .md\:top-9 { - top: 2.25rem; + .md\:-top-0 { + top: 0px; } - .md\:right-9 { - right: 2.25rem; + .md\:-top-1 { + top: -0.25rem; } - .md\:bottom-9 { - bottom: 2.25rem; + .md\:-top-2 { + top: -0.5rem; } - .md\:left-9 { - left: 2.25rem; + .md\:-top-3 { + top: -0.75rem; } - .md\:top-10 { - top: 2.5rem; + .md\:-top-4 { + top: -1rem; } - .md\:right-10 { - right: 2.5rem; + .md\:-top-5 { + top: -1.25rem; } - .md\:bottom-10 { - bottom: 2.5rem; + .md\:-top-6 { + top: -1.5rem; } - .md\:left-10 { - left: 2.5rem; + .md\:-top-7 { + top: -1.75rem; } - .md\:top-11 { - top: 2.75rem; + .md\:-top-8 { + top: -2rem; } - .md\:right-11 { - right: 2.75rem; + .md\:-top-9 { + top: -2.25rem; } - .md\:bottom-11 { - bottom: 2.75rem; + .md\:-top-10 { + top: -2.5rem; } - .md\:left-11 { - left: 2.75rem; + .md\:-top-11 { + top: -2.75rem; } - .md\:top-12 { - top: 3rem; + .md\:-top-12 { + top: -3rem; } - .md\:right-12 { - right: 3rem; + .md\:-top-14 { + top: -3.5rem; } - .md\:bottom-12 { - bottom: 3rem; + .md\:-top-16 { + top: -4rem; } - .md\:left-12 { - left: 3rem; + .md\:-top-20 { + top: -5rem; } - .md\:top-14 { - top: 3.5rem; + .md\:-top-24 { + top: -6rem; } - .md\:right-14 { - right: 3.5rem; + .md\:-top-28 { + top: -7rem; } - .md\:bottom-14 { - bottom: 3.5rem; + .md\:-top-32 { + top: -8rem; } - .md\:left-14 { - left: 3.5rem; + .md\:-top-36 { + top: -9rem; } - .md\:top-16 { - top: 4rem; + .md\:-top-40 { + top: -10rem; } - .md\:right-16 { - right: 4rem; + .md\:-top-44 { + top: -11rem; } - .md\:bottom-16 { - bottom: 4rem; + .md\:-top-48 { + top: -12rem; } - .md\:left-16 { - left: 4rem; + .md\:-top-52 { + top: -13rem; } - .md\:top-20 { - top: 5rem; + .md\:-top-56 { + top: -14rem; } - .md\:right-20 { - right: 5rem; + .md\:-top-60 { + top: -15rem; } - .md\:bottom-20 { - bottom: 5rem; + .md\:-top-64 { + top: -16rem; } - .md\:left-20 { - left: 5rem; + .md\:-top-72 { + top: -18rem; } - .md\:top-24 { - top: 6rem; + .md\:-top-80 { + top: -20rem; } - .md\:right-24 { - right: 6rem; + .md\:-top-96 { + top: -24rem; } - .md\:bottom-24 { - bottom: 6rem; + .md\:-top-px { + top: -1px; } - .md\:left-24 { - left: 6rem; + .md\:-top-0\.5 { + top: -0.125rem; } - .md\:top-28 { - top: 7rem; + .md\:-top-1\.5 { + top: -0.375rem; } - .md\:right-28 { - right: 7rem; + .md\:-top-2\.5 { + top: -0.625rem; } - .md\:bottom-28 { - bottom: 7rem; + .md\:-top-3\.5 { + top: -0.875rem; } - .md\:left-28 { - left: 7rem; + .md\:top-1\/2 { + top: 50%; } - .md\:top-32 { - top: 8rem; + .md\:top-1\/3 { + top: 33.333333%; } - .md\:right-32 { - right: 8rem; + .md\:top-2\/3 { + top: 66.666667%; } - .md\:bottom-32 { - bottom: 8rem; + .md\:top-1\/4 { + top: 25%; } - .md\:left-32 { - left: 8rem; + .md\:top-2\/4 { + top: 50%; } - .md\:top-36 { - top: 9rem; + .md\:top-3\/4 { + top: 75%; } - .md\:right-36 { - right: 9rem; + .md\:top-full { + top: 100%; } - .md\:bottom-36 { - bottom: 9rem; + .md\:-top-1\/2 { + top: -50%; } - .md\:left-36 { - left: 9rem; + .md\:-top-1\/3 { + top: -33.333333%; } - .md\:top-40 { - top: 10rem; + .md\:-top-2\/3 { + top: -66.666667%; } - .md\:right-40 { - right: 10rem; + .md\:-top-1\/4 { + top: -25%; } - .md\:bottom-40 { - bottom: 10rem; + .md\:-top-2\/4 { + top: -50%; } - .md\:left-40 { - left: 10rem; + .md\:-top-3\/4 { + top: -75%; } - .md\:top-44 { - top: 11rem; + .md\:-top-full { + top: -100%; } - .md\:right-44 { - right: 11rem; + .md\:right-0 { + right: 0px; } - .md\:bottom-44 { - bottom: 11rem; + .md\:right-1 { + right: 0.25rem; } - .md\:left-44 { - left: 11rem; + .md\:right-2 { + right: 0.5rem; } - .md\:top-48 { - top: 12rem; + .md\:right-3 { + right: 0.75rem; } - .md\:right-48 { - right: 12rem; + .md\:right-4 { + right: 1rem; } - .md\:bottom-48 { - bottom: 12rem; + .md\:right-5 { + right: 1.25rem; } - .md\:left-48 { - left: 12rem; + .md\:right-6 { + right: 1.5rem; } - .md\:top-52 { - top: 13rem; + .md\:right-7 { + right: 1.75rem; } - .md\:right-52 { - right: 13rem; + .md\:right-8 { + right: 2rem; } - .md\:bottom-52 { - bottom: 13rem; + .md\:right-9 { + right: 2.25rem; } - .md\:left-52 { - left: 13rem; + .md\:right-10 { + right: 2.5rem; } - .md\:top-56 { - top: 14rem; + .md\:right-11 { + right: 2.75rem; } - .md\:right-56 { - right: 14rem; + .md\:right-12 { + right: 3rem; } - .md\:bottom-56 { - bottom: 14rem; + .md\:right-14 { + right: 3.5rem; } - .md\:left-56 { - left: 14rem; + .md\:right-16 { + right: 4rem; } - .md\:top-60 { - top: 15rem; + .md\:right-20 { + right: 5rem; } - .md\:right-60 { - right: 15rem; + .md\:right-24 { + right: 6rem; } - .md\:bottom-60 { - bottom: 15rem; + .md\:right-28 { + right: 7rem; } - .md\:left-60 { - left: 15rem; + .md\:right-32 { + right: 8rem; } - .md\:top-64 { - top: 16rem; + .md\:right-36 { + right: 9rem; } - .md\:right-64 { - right: 16rem; + .md\:right-40 { + right: 10rem; } - .md\:bottom-64 { - bottom: 16rem; + .md\:right-44 { + right: 11rem; } - .md\:left-64 { - left: 16rem; + .md\:right-48 { + right: 12rem; } - .md\:top-72 { - top: 18rem; + .md\:right-52 { + right: 13rem; } - .md\:right-72 { - right: 18rem; + .md\:right-56 { + right: 14rem; } - .md\:bottom-72 { - bottom: 18rem; + .md\:right-60 { + right: 15rem; } - .md\:left-72 { - left: 18rem; + .md\:right-64 { + right: 16rem; } - .md\:top-80 { - top: 20rem; + .md\:right-72 { + right: 18rem; } .md\:right-80 { right: 20rem; } - .md\:bottom-80 { - bottom: 20rem; + .md\:right-96 { + right: 24rem; } - .md\:left-80 { - left: 20rem; + .md\:right-auto { + right: auto; } - .md\:top-96 { - top: 24rem; + .md\:right-px { + right: 1px; } - .md\:right-96 { - right: 24rem; + .md\:right-0\.5 { + right: 0.125rem; } - .md\:bottom-96 { - bottom: 24rem; + .md\:right-1\.5 { + right: 0.375rem; } - .md\:left-96 { - left: 24rem; + .md\:right-2\.5 { + right: 0.625rem; } - .md\:top-auto { - top: auto; + .md\:right-3\.5 { + right: 0.875rem; } - .md\:right-auto { - right: auto; + .md\:-right-0 { + right: 0px; } - .md\:bottom-auto { - bottom: auto; + .md\:-right-1 { + right: -0.25rem; } - .md\:left-auto { - left: auto; + .md\:-right-2 { + right: -0.5rem; } - .md\:top-px { - top: 1px; + .md\:-right-3 { + right: -0.75rem; } - .md\:right-px { - right: 1px; + .md\:-right-4 { + right: -1rem; } - .md\:bottom-px { - bottom: 1px; + .md\:-right-5 { + right: -1.25rem; } - .md\:left-px { - left: 1px; + .md\:-right-6 { + right: -1.5rem; } - .md\:top-0\.5 { - top: 0.125rem; + .md\:-right-7 { + right: -1.75rem; } - .md\:right-0\.5 { - right: 0.125rem; + .md\:-right-8 { + right: -2rem; } - .md\:bottom-0\.5 { - bottom: 0.125rem; + .md\:-right-9 { + right: -2.25rem; } - .md\:left-0\.5 { - left: 0.125rem; + .md\:-right-10 { + right: -2.5rem; } - .md\:top-1\.5 { - top: 0.375rem; + .md\:-right-11 { + right: -2.75rem; } - .md\:right-1\.5 { - right: 0.375rem; + .md\:-right-12 { + right: -3rem; } - .md\:bottom-1\.5 { - bottom: 0.375rem; + .md\:-right-14 { + right: -3.5rem; } - .md\:left-1\.5 { - left: 0.375rem; + .md\:-right-16 { + right: -4rem; } - .md\:top-2\.5 { - top: 0.625rem; + .md\:-right-20 { + right: -5rem; } - .md\:right-2\.5 { - right: 0.625rem; + .md\:-right-24 { + right: -6rem; } - .md\:bottom-2\.5 { - bottom: 0.625rem; + .md\:-right-28 { + right: -7rem; } - .md\:left-2\.5 { - left: 0.625rem; + .md\:-right-32 { + right: -8rem; } - .md\:top-3\.5 { - top: 0.875rem; + .md\:-right-36 { + right: -9rem; } - .md\:right-3\.5 { - right: 0.875rem; + .md\:-right-40 { + right: -10rem; } - .md\:bottom-3\.5 { - bottom: 0.875rem; + .md\:-right-44 { + right: -11rem; } - .md\:left-3\.5 { - left: 0.875rem; + .md\:-right-48 { + right: -12rem; } - .md\:-top-0 { - top: 0px; + .md\:-right-52 { + right: -13rem; } - .md\:-right-0 { - right: 0px; + .md\:-right-56 { + right: -14rem; } - .md\:-bottom-0 { - bottom: 0px; + .md\:-right-60 { + right: -15rem; } - .md\:-left-0 { - left: 0px; + .md\:-right-64 { + right: -16rem; } - .md\:-top-1 { - top: -0.25rem; + .md\:-right-72 { + right: -18rem; } - .md\:-right-1 { - right: -0.25rem; + .md\:-right-80 { + right: -20rem; } - .md\:-bottom-1 { - bottom: -0.25rem; + .md\:-right-96 { + right: -24rem; } - .md\:-left-1 { - left: -0.25rem; + .md\:-right-px { + right: -1px; } - .md\:-top-2 { - top: -0.5rem; + .md\:-right-0\.5 { + right: -0.125rem; } - .md\:-right-2 { - right: -0.5rem; + .md\:-right-1\.5 { + right: -0.375rem; } - .md\:-bottom-2 { - bottom: -0.5rem; + .md\:-right-2\.5 { + right: -0.625rem; } - .md\:-left-2 { - left: -0.5rem; + .md\:-right-3\.5 { + right: -0.875rem; } - .md\:-top-3 { - top: -0.75rem; + .md\:right-1\/2 { + right: 50%; } - .md\:-right-3 { - right: -0.75rem; + .md\:right-1\/3 { + right: 33.333333%; } - .md\:-bottom-3 { - bottom: -0.75rem; + .md\:right-2\/3 { + right: 66.666667%; } - .md\:-left-3 { - left: -0.75rem; + .md\:right-1\/4 { + right: 25%; } - .md\:-top-4 { - top: -1rem; + .md\:right-2\/4 { + right: 50%; } - .md\:-right-4 { - right: -1rem; + .md\:right-3\/4 { + right: 75%; } - .md\:-bottom-4 { - bottom: -1rem; + .md\:right-full { + right: 100%; } - .md\:-left-4 { - left: -1rem; + .md\:-right-1\/2 { + right: -50%; } - .md\:-top-5 { - top: -1.25rem; + .md\:-right-1\/3 { + right: -33.333333%; } - .md\:-right-5 { - right: -1.25rem; + .md\:-right-2\/3 { + right: -66.666667%; } - .md\:-bottom-5 { - bottom: -1.25rem; + .md\:-right-1\/4 { + right: -25%; } - .md\:-left-5 { - left: -1.25rem; + .md\:-right-2\/4 { + right: -50%; } - .md\:-top-6 { - top: -1.5rem; + .md\:-right-3\/4 { + right: -75%; } - .md\:-right-6 { - right: -1.5rem; + .md\:-right-full { + right: -100%; } - .md\:-bottom-6 { - bottom: -1.5rem; + .md\:bottom-0 { + bottom: 0px; } - .md\:-left-6 { - left: -1.5rem; + .md\:bottom-1 { + bottom: 0.25rem; } - .md\:-top-7 { - top: -1.75rem; + .md\:bottom-2 { + bottom: 0.5rem; } - .md\:-right-7 { - right: -1.75rem; + .md\:bottom-3 { + bottom: 0.75rem; } - .md\:-bottom-7 { - bottom: -1.75rem; + .md\:bottom-4 { + bottom: 1rem; } - .md\:-left-7 { - left: -1.75rem; + .md\:bottom-5 { + bottom: 1.25rem; } - .md\:-top-8 { - top: -2rem; + .md\:bottom-6 { + bottom: 1.5rem; } - .md\:-right-8 { - right: -2rem; + .md\:bottom-7 { + bottom: 1.75rem; } - .md\:-bottom-8 { - bottom: -2rem; + .md\:bottom-8 { + bottom: 2rem; } - .md\:-left-8 { - left: -2rem; + .md\:bottom-9 { + bottom: 2.25rem; } - .md\:-top-9 { - top: -2.25rem; + .md\:bottom-10 { + bottom: 2.5rem; } - .md\:-right-9 { - right: -2.25rem; + .md\:bottom-11 { + bottom: 2.75rem; } - .md\:-bottom-9 { - bottom: -2.25rem; + .md\:bottom-12 { + bottom: 3rem; } - .md\:-left-9 { - left: -2.25rem; + .md\:bottom-14 { + bottom: 3.5rem; } - .md\:-top-10 { - top: -2.5rem; + .md\:bottom-16 { + bottom: 4rem; } - .md\:-right-10 { - right: -2.5rem; + .md\:bottom-20 { + bottom: 5rem; } - .md\:-bottom-10 { - bottom: -2.5rem; + .md\:bottom-24 { + bottom: 6rem; } - .md\:-left-10 { - left: -2.5rem; + .md\:bottom-28 { + bottom: 7rem; } - .md\:-top-11 { - top: -2.75rem; + .md\:bottom-32 { + bottom: 8rem; } - .md\:-right-11 { - right: -2.75rem; + .md\:bottom-36 { + bottom: 9rem; } - .md\:-bottom-11 { - bottom: -2.75rem; + .md\:bottom-40 { + bottom: 10rem; } - .md\:-left-11 { - left: -2.75rem; + .md\:bottom-44 { + bottom: 11rem; } - .md\:-top-12 { - top: -3rem; + .md\:bottom-48 { + bottom: 12rem; } - .md\:-right-12 { - right: -3rem; + .md\:bottom-52 { + bottom: 13rem; } - .md\:-bottom-12 { - bottom: -3rem; + .md\:bottom-56 { + bottom: 14rem; } - .md\:-left-12 { - left: -3rem; + .md\:bottom-60 { + bottom: 15rem; } - .md\:-top-14 { - top: -3.5rem; + .md\:bottom-64 { + bottom: 16rem; } - .md\:-right-14 { - right: -3.5rem; + .md\:bottom-72 { + bottom: 18rem; } - .md\:-bottom-14 { - bottom: -3.5rem; + .md\:bottom-80 { + bottom: 20rem; } - .md\:-left-14 { - left: -3.5rem; + .md\:bottom-96 { + bottom: 24rem; } - .md\:-top-16 { - top: -4rem; + .md\:bottom-auto { + bottom: auto; } - .md\:-right-16 { - right: -4rem; + .md\:bottom-px { + bottom: 1px; } - .md\:-bottom-16 { - bottom: -4rem; + .md\:bottom-0\.5 { + bottom: 0.125rem; } - .md\:-left-16 { - left: -4rem; + .md\:bottom-1\.5 { + bottom: 0.375rem; } - .md\:-top-20 { - top: -5rem; + .md\:bottom-2\.5 { + bottom: 0.625rem; } - .md\:-right-20 { - right: -5rem; + .md\:bottom-3\.5 { + bottom: 0.875rem; } - .md\:-bottom-20 { - bottom: -5rem; + .md\:-bottom-0 { + bottom: 0px; } - .md\:-left-20 { - left: -5rem; + .md\:-bottom-1 { + bottom: -0.25rem; } - .md\:-top-24 { - top: -6rem; + .md\:-bottom-2 { + bottom: -0.5rem; } - .md\:-right-24 { - right: -6rem; + .md\:-bottom-3 { + bottom: -0.75rem; } - .md\:-bottom-24 { - bottom: -6rem; + .md\:-bottom-4 { + bottom: -1rem; } - .md\:-left-24 { - left: -6rem; + .md\:-bottom-5 { + bottom: -1.25rem; } - .md\:-top-28 { - top: -7rem; + .md\:-bottom-6 { + bottom: -1.5rem; } - .md\:-right-28 { - right: -7rem; + .md\:-bottom-7 { + bottom: -1.75rem; } - .md\:-bottom-28 { - bottom: -7rem; + .md\:-bottom-8 { + bottom: -2rem; } - .md\:-left-28 { - left: -7rem; + .md\:-bottom-9 { + bottom: -2.25rem; } - .md\:-top-32 { - top: -8rem; + .md\:-bottom-10 { + bottom: -2.5rem; } - .md\:-right-32 { - right: -8rem; + .md\:-bottom-11 { + bottom: -2.75rem; } - .md\:-bottom-32 { - bottom: -8rem; + .md\:-bottom-12 { + bottom: -3rem; } - .md\:-left-32 { - left: -8rem; + .md\:-bottom-14 { + bottom: -3.5rem; } - .md\:-top-36 { - top: -9rem; + .md\:-bottom-16 { + bottom: -4rem; } - .md\:-right-36 { - right: -9rem; + .md\:-bottom-20 { + bottom: -5rem; } - .md\:-bottom-36 { - bottom: -9rem; + .md\:-bottom-24 { + bottom: -6rem; } - .md\:-left-36 { - left: -9rem; + .md\:-bottom-28 { + bottom: -7rem; } - .md\:-top-40 { - top: -10rem; + .md\:-bottom-32 { + bottom: -8rem; } - .md\:-right-40 { - right: -10rem; + .md\:-bottom-36 { + bottom: -9rem; } .md\:-bottom-40 { bottom: -10rem; } - .md\:-left-40 { - left: -10rem; + .md\:-bottom-44 { + bottom: -11rem; } - .md\:-top-44 { - top: -11rem; + .md\:-bottom-48 { + bottom: -12rem; } - .md\:-right-44 { - right: -11rem; + .md\:-bottom-52 { + bottom: -13rem; } - .md\:-bottom-44 { - bottom: -11rem; + .md\:-bottom-56 { + bottom: -14rem; } - .md\:-left-44 { - left: -11rem; + .md\:-bottom-60 { + bottom: -15rem; } - .md\:-top-48 { - top: -12rem; + .md\:-bottom-64 { + bottom: -16rem; } - .md\:-right-48 { - right: -12rem; + .md\:-bottom-72 { + bottom: -18rem; } - .md\:-bottom-48 { - bottom: -12rem; + .md\:-bottom-80 { + bottom: -20rem; } - .md\:-left-48 { - left: -12rem; + .md\:-bottom-96 { + bottom: -24rem; } - .md\:-top-52 { - top: -13rem; + .md\:-bottom-px { + bottom: -1px; } - .md\:-right-52 { - right: -13rem; + .md\:-bottom-0\.5 { + bottom: -0.125rem; } - .md\:-bottom-52 { - bottom: -13rem; + .md\:-bottom-1\.5 { + bottom: -0.375rem; } - .md\:-left-52 { - left: -13rem; + .md\:-bottom-2\.5 { + bottom: -0.625rem; } - .md\:-top-56 { - top: -14rem; + .md\:-bottom-3\.5 { + bottom: -0.875rem; } - .md\:-right-56 { - right: -14rem; + .md\:bottom-1\/2 { + bottom: 50%; } - .md\:-bottom-56 { - bottom: -14rem; + .md\:bottom-1\/3 { + bottom: 33.333333%; } - .md\:-left-56 { - left: -14rem; + .md\:bottom-2\/3 { + bottom: 66.666667%; } - .md\:-top-60 { - top: -15rem; + .md\:bottom-1\/4 { + bottom: 25%; } - .md\:-right-60 { - right: -15rem; + .md\:bottom-2\/4 { + bottom: 50%; } - .md\:-bottom-60 { - bottom: -15rem; + .md\:bottom-3\/4 { + bottom: 75%; } - .md\:-left-60 { - left: -15rem; + .md\:bottom-full { + bottom: 100%; } - .md\:-top-64 { - top: -16rem; + .md\:-bottom-1\/2 { + bottom: -50%; } - .md\:-right-64 { - right: -16rem; + .md\:-bottom-1\/3 { + bottom: -33.333333%; } - .md\:-bottom-64 { - bottom: -16rem; + .md\:-bottom-2\/3 { + bottom: -66.666667%; } - .md\:-left-64 { - left: -16rem; + .md\:-bottom-1\/4 { + bottom: -25%; } - .md\:-top-72 { - top: -18rem; + .md\:-bottom-2\/4 { + bottom: -50%; } - .md\:-right-72 { - right: -18rem; + .md\:-bottom-3\/4 { + bottom: -75%; } - .md\:-bottom-72 { - bottom: -18rem; + .md\:-bottom-full { + bottom: -100%; } - .md\:-left-72 { - left: -18rem; + .md\:left-0 { + left: 0px; } - .md\:-top-80 { - top: -20rem; + .md\:left-1 { + left: 0.25rem; } - .md\:-right-80 { - right: -20rem; + .md\:left-2 { + left: 0.5rem; } - .md\:-bottom-80 { - bottom: -20rem; + .md\:left-3 { + left: 0.75rem; } - .md\:-left-80 { - left: -20rem; + .md\:left-4 { + left: 1rem; } - .md\:-top-96 { - top: -24rem; + .md\:left-5 { + left: 1.25rem; } - .md\:-right-96 { - right: -24rem; + .md\:left-6 { + left: 1.5rem; } - .md\:-bottom-96 { - bottom: -24rem; + .md\:left-7 { + left: 1.75rem; } - .md\:-left-96 { - left: -24rem; + .md\:left-8 { + left: 2rem; } - .md\:-top-px { - top: -1px; + .md\:left-9 { + left: 2.25rem; } - .md\:-right-px { - right: -1px; + .md\:left-10 { + left: 2.5rem; } - .md\:-bottom-px { - bottom: -1px; + .md\:left-11 { + left: 2.75rem; } - .md\:-left-px { - left: -1px; + .md\:left-12 { + left: 3rem; } - .md\:-top-0\.5 { - top: -0.125rem; + .md\:left-14 { + left: 3.5rem; } - .md\:-right-0\.5 { - right: -0.125rem; + .md\:left-16 { + left: 4rem; } - .md\:-bottom-0\.5 { - bottom: -0.125rem; + .md\:left-20 { + left: 5rem; } - .md\:-left-0\.5 { - left: -0.125rem; + .md\:left-24 { + left: 6rem; } - .md\:-top-1\.5 { - top: -0.375rem; + .md\:left-28 { + left: 7rem; } - .md\:-right-1\.5 { - right: -0.375rem; + .md\:left-32 { + left: 8rem; } - .md\:-bottom-1\.5 { - bottom: -0.375rem; + .md\:left-36 { + left: 9rem; } - .md\:-left-1\.5 { - left: -0.375rem; + .md\:left-40 { + left: 10rem; } - .md\:-top-2\.5 { - top: -0.625rem; + .md\:left-44 { + left: 11rem; } - .md\:-right-2\.5 { - right: -0.625rem; + .md\:left-48 { + left: 12rem; } - .md\:-bottom-2\.5 { - bottom: -0.625rem; + .md\:left-52 { + left: 13rem; } - .md\:-left-2\.5 { - left: -0.625rem; + .md\:left-56 { + left: 14rem; } - .md\:-top-3\.5 { - top: -0.875rem; + .md\:left-60 { + left: 15rem; } - .md\:-right-3\.5 { - right: -0.875rem; + .md\:left-64 { + left: 16rem; } - .md\:-bottom-3\.5 { - bottom: -0.875rem; + .md\:left-72 { + left: 18rem; } - .md\:-left-3\.5 { - left: -0.875rem; + .md\:left-80 { + left: 20rem; } - .md\:top-1\/2 { - top: 50%; + .md\:left-96 { + left: 24rem; } - .md\:right-1\/2 { - right: 50%; + .md\:left-auto { + left: auto; } - .md\:bottom-1\/2 { - bottom: 50%; + .md\:left-px { + left: 1px; } - .md\:left-1\/2 { - left: 50%; + .md\:left-0\.5 { + left: 0.125rem; } - .md\:top-1\/3 { - top: 33.333333%; + .md\:left-1\.5 { + left: 0.375rem; } - .md\:right-1\/3 { - right: 33.333333%; + .md\:left-2\.5 { + left: 0.625rem; } - .md\:bottom-1\/3 { - bottom: 33.333333%; + .md\:left-3\.5 { + left: 0.875rem; } - .md\:left-1\/3 { - left: 33.333333%; + .md\:-left-0 { + left: 0px; } - .md\:top-2\/3 { - top: 66.666667%; + .md\:-left-1 { + left: -0.25rem; } - .md\:right-2\/3 { - right: 66.666667%; + .md\:-left-2 { + left: -0.5rem; } - .md\:bottom-2\/3 { - bottom: 66.666667%; + .md\:-left-3 { + left: -0.75rem; } - .md\:left-2\/3 { - left: 66.666667%; + .md\:-left-4 { + left: -1rem; } - .md\:top-1\/4 { - top: 25%; + .md\:-left-5 { + left: -1.25rem; } - .md\:right-1\/4 { - right: 25%; + .md\:-left-6 { + left: -1.5rem; } - .md\:bottom-1\/4 { - bottom: 25%; + .md\:-left-7 { + left: -1.75rem; } - .md\:left-1\/4 { - left: 25%; + .md\:-left-8 { + left: -2rem; } - .md\:top-2\/4 { - top: 50%; + .md\:-left-9 { + left: -2.25rem; } - .md\:right-2\/4 { - right: 50%; + .md\:-left-10 { + left: -2.5rem; } - .md\:bottom-2\/4 { - bottom: 50%; + .md\:-left-11 { + left: -2.75rem; } - .md\:left-2\/4 { - left: 50%; + .md\:-left-12 { + left: -3rem; } - .md\:top-3\/4 { - top: 75%; + .md\:-left-14 { + left: -3.5rem; } - .md\:right-3\/4 { - right: 75%; + .md\:-left-16 { + left: -4rem; } - .md\:bottom-3\/4 { - bottom: 75%; + .md\:-left-20 { + left: -5rem; } - .md\:left-3\/4 { - left: 75%; + .md\:-left-24 { + left: -6rem; } - .md\:top-full { - top: 100%; + .md\:-left-28 { + left: -7rem; } - .md\:right-full { - right: 100%; + .md\:-left-32 { + left: -8rem; } - .md\:bottom-full { - bottom: 100%; + .md\:-left-36 { + left: -9rem; } - .md\:left-full { - left: 100%; + .md\:-left-40 { + left: -10rem; } - .md\:-top-1\/2 { - top: -50%; + .md\:-left-44 { + left: -11rem; } - .md\:-right-1\/2 { - right: -50%; + .md\:-left-48 { + left: -12rem; } - .md\:-bottom-1\/2 { - bottom: -50%; + .md\:-left-52 { + left: -13rem; } - .md\:-left-1\/2 { - left: -50%; + .md\:-left-56 { + left: -14rem; } - .md\:-top-1\/3 { - top: -33.333333%; + .md\:-left-60 { + left: -15rem; } - .md\:-right-1\/3 { - right: -33.333333%; + .md\:-left-64 { + left: -16rem; } - .md\:-bottom-1\/3 { - bottom: -33.333333%; + .md\:-left-72 { + left: -18rem; } - .md\:-left-1\/3 { - left: -33.333333%; + .md\:-left-80 { + left: -20rem; } - .md\:-top-2\/3 { - top: -66.666667%; + .md\:-left-96 { + left: -24rem; } - .md\:-right-2\/3 { - right: -66.666667%; + .md\:-left-px { + left: -1px; } - .md\:-bottom-2\/3 { - bottom: -66.666667%; + .md\:-left-0\.5 { + left: -0.125rem; } - .md\:-left-2\/3 { - left: -66.666667%; + .md\:-left-1\.5 { + left: -0.375rem; } - .md\:-top-1\/4 { - top: -25%; + .md\:-left-2\.5 { + left: -0.625rem; } - .md\:-right-1\/4 { - right: -25%; + .md\:-left-3\.5 { + left: -0.875rem; } - .md\:-bottom-1\/4 { - bottom: -25%; + .md\:left-1\/2 { + left: 50%; } - .md\:-left-1\/4 { - left: -25%; + .md\:left-1\/3 { + left: 33.333333%; } - .md\:-top-2\/4 { - top: -50%; + .md\:left-2\/3 { + left: 66.666667%; } - .md\:-right-2\/4 { - right: -50%; + .md\:left-1\/4 { + left: 25%; } - .md\:-bottom-2\/4 { - bottom: -50%; + .md\:left-2\/4 { + left: 50%; } - .md\:-left-2\/4 { - left: -50%; + .md\:left-3\/4 { + left: 75%; } - .md\:-top-3\/4 { - top: -75%; + .md\:left-full { + left: 100%; } - .md\:-right-3\/4 { - right: -75%; + .md\:-left-1\/2 { + left: -50%; } - .md\:-bottom-3\/4 { - bottom: -75%; + .md\:-left-1\/3 { + left: -33.333333%; } - .md\:-left-3\/4 { - left: -75%; + .md\:-left-2\/3 { + left: -66.666667%; } - .md\:-top-full { - top: -100%; + .md\:-left-1\/4 { + left: -25%; } - .md\:-right-full { - right: -100%; + .md\:-left-2\/4 { + left: -50%; } - .md\:-bottom-full { - bottom: -100%; + .md\:-left-3\/4 { + left: -75%; } .md\:-left-full { @@ -67914,133 +67946,183 @@ video { --tw-scale-y: 1.5; } - .md\:scale-x-0 { + .md\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .md\:scale-x-50 { + .md\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .md\:scale-x-75 { + .md\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .md\:scale-x-90 { + .md\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .md\:scale-x-95 { + .md\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .md\:scale-x-100 { + .md\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .md\:scale-x-105 { + .md\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .md\:scale-x-110 { + .md\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .md\:scale-x-125 { + .md\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .md\:scale-x-150 { + .md\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .md\:scale-y-0 { + .md\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .md\:scale-y-50 { + .md\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .md\:scale-y-75 { + .md\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .md\:scale-y-90 { + .md\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .md\:scale-y-95 { + .md\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .md\:scale-y-100 { + .md\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .md\:scale-y-105 { + .md\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .md\:scale-y-110 { + .md\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .md\:scale-y-125 { + .md\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .md\:scale-y-150 { + .md\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .md\:hover\:scale-0:hover { + .md\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .md\:hover\:scale-50:hover { + .md\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .md\:hover\:scale-75:hover { + .md\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .md\:hover\:scale-90:hover { + .md\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .md\:hover\:scale-95:hover { + .md\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .md\:hover\:scale-100:hover { + .md\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .md\:hover\:scale-105:hover { + .md\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .md\:hover\:scale-110:hover { + .md\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .md\:hover\:scale-125:hover { + .md\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .md\:hover\:scale-150:hover { + .md\:scale-x-150 { --tw-scale-x: 1.5; + } + + .md\:scale-y-0 { + --tw-scale-y: 0; + } + + .md\:scale-y-50 { + --tw-scale-y: .5; + } + + .md\:scale-y-75 { + --tw-scale-y: .75; + } + + .md\:scale-y-90 { + --tw-scale-y: .9; + } + + .md\:scale-y-95 { + --tw-scale-y: .95; + } + + .md\:scale-y-100 { + --tw-scale-y: 1; + } + + .md\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .md\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .md\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .md\:scale-y-150 { --tw-scale-y: 1.5; } @@ -68124,56 +68206,6 @@ video { --tw-scale-y: 1.5; } - .md\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .md\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .md\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .md\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .md\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .md\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .md\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .md\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .md\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .md\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .md\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -69066,436 +69098,640 @@ video { row-gap: 0.875rem; } - .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .md\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .md\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .md\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .md\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .md\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .md\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .md\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .md\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .md\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .md\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .md\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .md\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .md\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .md\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .md\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .md\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .md\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .md\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .md\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .md\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .md\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .md\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .md\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .md\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .md\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .md\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .md\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .md\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .md\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .md\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .md\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .md\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .md\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .md\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .md\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -69504,408 +69740,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .md\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .md\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .md\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .md\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .md\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .md\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .md\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .md\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .md\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .md\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .md\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .md\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .md\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .md\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .md\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .md\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .md\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .md\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .md\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .md\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .md\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .md\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .md\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .md\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .md\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .md\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .md\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .md\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .md\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .md\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .md\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -69914,66 +69946,66 @@ video { --tw-space-x-reverse: 1; } - .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .md\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .md\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .md\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .md\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .md\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .md\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -76387,2188 +76419,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .md\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .md\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .md\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .md\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .md\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .md\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .md\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .md\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .md\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .md\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .md\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .md\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .md\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .md\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .md\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .md\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .md\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .md\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .md\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .md\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .md\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .md\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .md\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .md\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .md\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .md\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .md\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .md\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .md\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .md\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .md\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .md\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .md\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .md\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .md\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .md\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .md\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .md\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .md\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .md\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .md\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .md\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .md\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .md\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .md\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .md\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .md\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .md\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .md\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .md\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .md\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .md\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .md\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .md\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .md\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .md\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .md\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .md\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .md\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .md\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .md\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .md\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .md\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .md\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .md\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .md\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .md\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .md\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .md\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .md\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .md\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .md\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .md\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .md\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .md\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .md\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .md\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .md\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .md\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .md\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .md\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .md\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .md\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .md\:to-transparent { - --tw-gradient-to: transparent; + .md\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:to-current { - --tw-gradient-to: currentColor; + .md\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:to-black { - --tw-gradient-to: #000; + .md\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:to-white { - --tw-gradient-to: #fff; + .md\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .md\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .md\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .md\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .md\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .md\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:to-gray-500 { - --tw-gradient-to: #6b7280; + .md\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:to-gray-600 { - --tw-gradient-to: #4b5563; + .md\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:to-gray-700 { - --tw-gradient-to: #374151; + .md\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:to-gray-800 { - --tw-gradient-to: #1f2937; + .md\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:to-gray-900 { - --tw-gradient-to: #111827; + .md\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:to-red-50 { - --tw-gradient-to: #fef2f2; + .md\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:to-red-100 { - --tw-gradient-to: #fee2e2; + .md\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:to-red-200 { - --tw-gradient-to: #fecaca; + .md\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:to-red-300 { - --tw-gradient-to: #fca5a5; + .md\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:to-red-400 { - --tw-gradient-to: #f87171; + .md\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:to-red-500 { - --tw-gradient-to: #ef4444; + .md\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:to-red-600 { - --tw-gradient-to: #dc2626; + .md\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:to-red-700 { - --tw-gradient-to: #b91c1c; + .md\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:to-red-800 { - --tw-gradient-to: #991b1b; + .md\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .md\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .md\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .md\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .md\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .md\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .md\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .md\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:to-yellow-600 { - --tw-gradient-to: #d97706; + .md\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:to-yellow-700 { - --tw-gradient-to: #b45309; + .md\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:to-yellow-800 { - --tw-gradient-to: #92400e; + .md\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:to-yellow-900 { - --tw-gradient-to: #78350f; + .md\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .md\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:to-green-100 { - --tw-gradient-to: #d1fae5; + .md\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .md\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .md\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:to-green-400 { - --tw-gradient-to: #34d399; + .md\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:to-green-500 { - --tw-gradient-to: #10b981; + .md\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:to-green-600 { - --tw-gradient-to: #059669; + .md\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:to-green-700 { - --tw-gradient-to: #047857; + .md\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:to-green-800 { - --tw-gradient-to: #065f46; + .md\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:to-green-900 { - --tw-gradient-to: #064e3b; + .md\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .md\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .md\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .md\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .md\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .md\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .md\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:to-blue-600 { - --tw-gradient-to: #2563eb; + .md\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .md\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:to-blue-800 { - --tw-gradient-to: #1e40af; + .md\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .md\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .md\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .md\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .md\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .md\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .md\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .md\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .md\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .md\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .md\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:to-indigo-900 { - --tw-gradient-to: #312e81; + .md\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .md\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .md\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .md\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .md\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .md\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .md\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .md\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .md\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .md\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .md\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .md\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .md\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .md\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .md\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:to-pink-400 { - --tw-gradient-to: #f472b6; + .md\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:to-pink-500 { - --tw-gradient-to: #ec4899; + .md\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:to-pink-600 { - --tw-gradient-to: #db2777; + .md\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:to-pink-700 { - --tw-gradient-to: #be185d; + .md\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:to-pink-800 { - --tw-gradient-to: #9d174d; + .md\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:to-pink-900 { - --tw-gradient-to: #831843; + .md\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:hover\:from-transparent:hover { + .md\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:from-current:hover { + .md\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:from-black:hover { + .md\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:from-white:hover { + .md\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:from-gray-50:hover { + .md\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:hover\:from-gray-100:hover { + .md\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:hover\:from-gray-200:hover { + .md\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:hover\:from-gray-300:hover { + .md\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:hover\:from-gray-400:hover { + .md\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:hover\:from-gray-500:hover { + .md\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:hover\:from-gray-600:hover { + .md\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:hover\:from-gray-700:hover { + .md\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:hover\:from-gray-800:hover { + .md\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:hover\:from-gray-900:hover { + .md\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:hover\:from-red-50:hover { + .md\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:hover\:from-red-100:hover { + .md\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:hover\:from-red-200:hover { + .md\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:hover\:from-red-300:hover { + .md\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:hover\:from-red-400:hover { + .md\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:hover\:from-red-500:hover { + .md\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:hover\:from-red-600:hover { + .md\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:hover\:from-red-700:hover { + .md\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:hover\:from-red-800:hover { + .md\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:hover\:from-red-900:hover { + .md\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:hover\:from-yellow-50:hover { + .md\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:hover\:from-yellow-100:hover { + .md\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:hover\:from-yellow-200:hover { + .md\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:hover\:from-yellow-300:hover { + .md\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:hover\:from-yellow-400:hover { + .md\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:hover\:from-yellow-500:hover { + .md\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:hover\:from-yellow-600:hover { + .md\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:hover\:from-yellow-700:hover { + .md\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:hover\:from-yellow-800:hover { + .md\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:hover\:from-yellow-900:hover { + .md\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:hover\:from-green-50:hover { + .md\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:hover\:from-green-100:hover { + .md\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:hover\:from-green-200:hover { + .md\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:hover\:from-green-300:hover { + .md\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:hover\:from-green-400:hover { + .md\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:hover\:from-green-500:hover { + .md\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:hover\:from-green-600:hover { + .md\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:hover\:from-green-700:hover { + .md\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:hover\:from-green-800:hover { + .md\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:hover\:from-green-900:hover { + .md\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:hover\:from-blue-50:hover { + .md\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:hover\:from-blue-100:hover { + .md\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:hover\:from-blue-200:hover { + .md\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:hover\:from-blue-300:hover { + .md\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:hover\:from-blue-400:hover { + .md\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:hover\:from-blue-500:hover { + .md\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:hover\:from-blue-600:hover { + .md\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:hover\:from-blue-700:hover { + .md\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:hover\:from-blue-800:hover { + .md\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:hover\:from-blue-900:hover { + .md\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:hover\:from-indigo-50:hover { + .md\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:hover\:from-indigo-100:hover { + .md\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:hover\:from-indigo-200:hover { + .md\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:hover\:from-indigo-300:hover { + .md\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:hover\:from-indigo-400:hover { + .md\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:hover\:from-indigo-500:hover { + .md\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:hover\:from-indigo-600:hover { + .md\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:hover\:from-indigo-700:hover { + .md\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:hover\:from-indigo-800:hover { + .md\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:hover\:from-indigo-900:hover { + .md\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:hover\:from-purple-50:hover { + .md\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:hover\:from-purple-100:hover { + .md\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:hover\:from-purple-200:hover { + .md\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:hover\:from-purple-300:hover { + .md\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:hover\:from-purple-400:hover { + .md\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:hover\:from-purple-500:hover { + .md\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:hover\:from-purple-600:hover { + .md\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:hover\:from-purple-700:hover { + .md\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:hover\:from-purple-800:hover { + .md\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:hover\:from-purple-900:hover { + .md\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:hover\:from-pink-50:hover { + .md\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:hover\:from-pink-100:hover { + .md\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:hover\:from-pink-200:hover { + .md\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:hover\:from-pink-300:hover { + .md\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:hover\:from-pink-400:hover { + .md\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:hover\:from-pink-500:hover { + .md\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:hover\:from-pink-600:hover { + .md\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:hover\:from-pink-700:hover { + .md\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:hover\:from-pink-800:hover { + .md\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:hover\:from-pink-900:hover { + .md\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:hover\:via-transparent:hover { + .md\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:via-current:hover { + .md\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:via-black:hover { + .md\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:hover\:via-white:hover { + .md\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:hover\:via-gray-50:hover { + .md\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:hover\:via-gray-100:hover { + .md\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:hover\:via-gray-200:hover { + .md\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:hover\:via-gray-300:hover { + .md\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:hover\:via-gray-400:hover { + .md\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:hover\:via-gray-500:hover { + .md\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:hover\:via-gray-600:hover { + .md\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:hover\:via-gray-700:hover { + .md\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:hover\:via-gray-800:hover { + .md\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:hover\:via-gray-900:hover { + .md\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:hover\:via-red-50:hover { + .md\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:hover\:via-red-100:hover { + .md\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:hover\:via-red-200:hover { + .md\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:hover\:via-red-300:hover { + .md\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:hover\:via-red-400:hover { + .md\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:hover\:via-red-500:hover { + .md\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:hover\:via-red-600:hover { + .md\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:hover\:via-red-700:hover { + .md\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:hover\:via-red-800:hover { + .md\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:hover\:via-red-900:hover { + .md\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:hover\:via-yellow-50:hover { + .md\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:hover\:via-yellow-100:hover { + .md\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:hover\:via-yellow-200:hover { + .md\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:hover\:via-yellow-300:hover { + .md\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:hover\:via-yellow-400:hover { + .md\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:hover\:via-yellow-500:hover { + .md\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:hover\:via-yellow-600:hover { + .md\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:hover\:via-yellow-700:hover { + .md\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:hover\:via-yellow-800:hover { + .md\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:hover\:via-yellow-900:hover { + .md\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:hover\:via-green-50:hover { + .md\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:hover\:via-green-100:hover { + .md\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:hover\:via-green-200:hover { + .md\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:hover\:via-green-300:hover { + .md\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:hover\:via-green-400:hover { + .md\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:hover\:via-green-500:hover { + .md\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:hover\:via-green-600:hover { + .md\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:hover\:via-green-700:hover { + .md\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:hover\:via-green-800:hover { + .md\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:hover\:via-green-900:hover { + .md\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:hover\:via-blue-50:hover { + .md\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:hover\:via-blue-100:hover { + .md\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:hover\:via-blue-200:hover { + .md\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:hover\:via-blue-300:hover { + .md\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:hover\:via-blue-400:hover { + .md\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:hover\:via-blue-500:hover { + .md\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:hover\:via-blue-600:hover { + .md\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:hover\:via-blue-700:hover { + .md\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:hover\:via-blue-800:hover { + .md\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:hover\:via-blue-900:hover { + .md\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:hover\:via-indigo-50:hover { + .md\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:hover\:via-indigo-100:hover { + .md\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:hover\:via-indigo-200:hover { + .md\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:hover\:via-indigo-300:hover { + .md\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:hover\:via-indigo-400:hover { + .md\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:hover\:via-indigo-500:hover { + .md\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:hover\:via-indigo-600:hover { + .md\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:hover\:via-indigo-700:hover { + .md\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:hover\:via-indigo-800:hover { + .md\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:hover\:via-indigo-900:hover { + .md\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:hover\:via-purple-50:hover { + .md\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:hover\:via-purple-100:hover { + .md\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:hover\:via-purple-200:hover { + .md\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:hover\:via-purple-300:hover { + .md\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:hover\:via-purple-400:hover { + .md\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:hover\:via-purple-500:hover { + .md\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:hover\:via-purple-600:hover { + .md\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:hover\:via-purple-700:hover { + .md\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:hover\:via-purple-800:hover { + .md\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:hover\:via-purple-900:hover { + .md\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:hover\:via-pink-50:hover { + .md\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:hover\:via-pink-100:hover { + .md\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:hover\:via-pink-200:hover { + .md\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:hover\:via-pink-300:hover { + .md\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:hover\:via-pink-400:hover { + .md\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:hover\:via-pink-500:hover { + .md\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:hover\:via-pink-600:hover { + .md\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:hover\:via-pink-700:hover { + .md\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:hover\:via-pink-800:hover { + .md\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:hover\:via-pink-900:hover { + .md\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .md\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .md\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .md\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .md\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .md\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .md\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .md\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .md\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .md\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .md\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .md\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .md\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .md\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .md\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .md\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .md\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .md\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .md\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .md\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .md\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .md\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .md\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .md\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .md\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .md\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .md\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .md\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .md\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .md\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .md\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .md\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .md\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .md\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .md\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .md\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .md\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .md\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .md\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .md\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .md\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .md\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .md\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .md\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .md\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .md\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .md\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .md\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .md\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .md\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .md\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .md\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .md\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .md\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .md\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .md\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .md\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .md\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .md\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .md\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .md\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .md\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .md\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .md\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .md\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .md\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .md\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .md\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .md\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .md\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .md\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .md\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .md\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .md\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .md\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .md\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .md\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .md\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .md\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .md\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .md\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .md\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .md\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .md\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .md\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .md\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .md\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .md\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .md\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .md\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .md\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .md\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .md\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .md\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .md\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .md\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .md\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .md\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .md\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .md\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .md\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .md\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .md\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .md\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .md\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .md\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .md\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .md\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .md\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .md\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .md\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .md\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .md\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .md\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .md\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .md\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .md\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .md\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .md\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .md\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .md\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .md\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .md\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .md\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .md\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .md\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .md\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .md\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .md\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .md\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .md\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .md\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .md\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .md\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .md\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .md\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .md\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .md\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .md\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .md\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .md\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .md\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .md\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .md\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .md\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .md\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .md\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .md\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .md\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .md\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .md\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .md\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .md\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .md\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .md\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .md\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .md\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .md\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .md\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .md\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .md\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .md\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .md\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .md\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .md\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .md\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .md\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .md\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .md\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .md\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .md\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .md\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .md\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .md\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .md\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .md\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .md\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .md\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .md\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .md\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .md\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .md\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .md\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .md\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .md\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .md\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .md\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .md\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .md\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .md\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .md\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .md\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .md\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .md\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .md\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .md\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .md\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .md\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .md\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .md\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .md\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .md\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .md\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .md\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .md\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .md\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .md\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .md\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .md\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .md\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .md\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .md\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .md\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .md\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .md\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .md\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .md\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .md\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .md\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .md\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .md\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .md\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .md\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .md\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .md\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .md\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .md\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .md\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .md\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .md\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .md\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .md\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .md\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .md\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .md\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .md\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .md\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .md\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .md\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .md\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .md\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .md\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .md\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .md\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .md\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .md\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .md\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .md\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .md\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .md\:focus\:via-transparent:focus { @@ -78907,6 +78267,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .md\:to-transparent { + --tw-gradient-to: transparent; + } + + .md\:to-current { + --tw-gradient-to: currentColor; + } + + .md\:to-black { + --tw-gradient-to: #000; + } + + .md\:to-white { + --tw-gradient-to: #fff; + } + + .md\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .md\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .md\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .md\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .md\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .md\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .md\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .md\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .md\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .md\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .md\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .md\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .md\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .md\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .md\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .md\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .md\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .md\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .md\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .md\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .md\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .md\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .md\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .md\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .md\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .md\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .md\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .md\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .md\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .md\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .md\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .md\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .md\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .md\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .md\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .md\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .md\:to-green-600 { + --tw-gradient-to: #059669; + } + + .md\:to-green-700 { + --tw-gradient-to: #047857; + } + + .md\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .md\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .md\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .md\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .md\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .md\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .md\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .md\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .md\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .md\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .md\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .md\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .md\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .md\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .md\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .md\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .md\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .md\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .md\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .md\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .md\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .md\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .md\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .md\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .md\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .md\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .md\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .md\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .md\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .md\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .md\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .md\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .md\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .md\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .md\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .md\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .md\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .md\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .md\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .md\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .md\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .md\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .md\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .md\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .md\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .md\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .md\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .md\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .md\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .md\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .md\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .md\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .md\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .md\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .md\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .md\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .md\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .md\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .md\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .md\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .md\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .md\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .md\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .md\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .md\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .md\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .md\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .md\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .md\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .md\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .md\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .md\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .md\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .md\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .md\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .md\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .md\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .md\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .md\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .md\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .md\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .md\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .md\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .md\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .md\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .md\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .md\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .md\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .md\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .md\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .md\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .md\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .md\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .md\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .md\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .md\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .md\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .md\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .md\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .md\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .md\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .md\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .md\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .md\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .md\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .md\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .md\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .md\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .md\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .md\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .md\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .md\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .md\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .md\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .md\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .md\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .md\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .md\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .md\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .md\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .md\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .md\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .md\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .md\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .md\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .md\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .md\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -84916,10 +84948,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:ring-inset { - --tw-ring-inset: inset; - } - .md\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -84956,10 +84984,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .md\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .md\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -84996,6 +85020,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .md\:ring-inset { + --tw-ring-inset: inset; + } + + .md\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .md\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -87756,6 +87788,38 @@ video { backdrop-filter: none; } + .md\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .md\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .md\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .md\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .md\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .md\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .md\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .md\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .md\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -88665,116 +88729,541 @@ video { left: -0.375rem; } - .lg\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .lg\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .lg\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .lg\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .lg\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .lg\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .lg\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .lg\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .lg\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .lg\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .lg\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .lg\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .lg\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .lg\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .lg\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .lg\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .lg\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .lg\:inset-x-0 { + left: 0px; + right: 0px; + } + + .lg\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .lg\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .lg\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .lg\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .lg\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .lg\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .lg\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .lg\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .lg\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .lg\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .lg\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .lg\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .lg\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .lg\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .lg\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .lg\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .lg\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .lg\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .lg\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .lg\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .lg\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .lg\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .lg\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .lg\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .lg\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .lg\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .lg\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .lg\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .lg\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .lg\:inset-x-auto { + left: auto; + right: auto; + } + + .lg\:inset-x-px { + left: 1px; + right: 1px; + } + + .lg\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .lg\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .lg\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .lg\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .lg\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .lg\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .lg\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .lg\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .lg\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .lg\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .lg\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .lg\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .lg\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .lg\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .lg\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .lg\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .lg\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .lg\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .lg\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .lg\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .lg\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .lg\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .lg\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .lg\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .lg\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .lg\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .lg\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .lg\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .lg\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .lg\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .lg\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .lg\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .lg\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .lg\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .lg\:-inset-x-px { + left: -1px; + right: -1px; + } + + .lg\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .lg\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .lg\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .lg\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .lg\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .lg\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .lg\:inset-x-1\/2 { left: 50%; + right: 50%; } - .lg\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .lg\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .lg\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .lg\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .lg\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .lg\:inset-x-1\/4 { left: 25%; + right: 25%; } - .lg\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .lg\:inset-x-2\/4 { left: 50%; + right: 50%; } - .lg\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .lg\:inset-x-3\/4 { left: 75%; + right: 75%; } - .lg\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .lg\:inset-x-full { left: 100%; + right: 100%; } - .lg\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .lg\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .lg\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .lg\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .lg\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .lg\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .lg\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .lg\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .lg\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .lg\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .lg\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .lg\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .lg\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .lg\:-inset-x-full { left: -100%; + right: -100%; } .lg\:inset-y-0 { @@ -88782,2205 +89271,1780 @@ video { bottom: 0px; } - .lg\:inset-x-0 { - right: 0px; - left: 0px; - } - .lg\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .lg\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .lg\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .lg\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .lg\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .lg\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .lg\:inset-y-4 { top: 1rem; bottom: 1rem; } - .lg\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .lg\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .lg\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .lg\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .lg\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .lg\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .lg\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .lg\:inset-y-8 { top: 2rem; bottom: 2rem; } - .lg\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .lg\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .lg\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .lg\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .lg\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .lg\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .lg\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .lg\:inset-y-12 { top: 3rem; bottom: 3rem; } - .lg\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .lg\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .lg\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .lg\:inset-y-16 { top: 4rem; bottom: 4rem; } - .lg\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .lg\:inset-y-20 { top: 5rem; bottom: 5rem; } - .lg\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .lg\:inset-y-24 { top: 6rem; bottom: 6rem; } - .lg\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .lg\:inset-y-28 { top: 7rem; bottom: 7rem; } - .lg\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .lg\:inset-y-32 { top: 8rem; bottom: 8rem; } - .lg\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .lg\:inset-y-36 { top: 9rem; bottom: 9rem; } - .lg\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .lg\:inset-y-40 { top: 10rem; bottom: 10rem; } - .lg\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .lg\:inset-y-44 { top: 11rem; bottom: 11rem; } - .lg\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .lg\:inset-y-48 { top: 12rem; bottom: 12rem; } - .lg\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .lg\:inset-y-52 { top: 13rem; bottom: 13rem; } - .lg\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .lg\:inset-y-56 { top: 14rem; bottom: 14rem; } - .lg\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .lg\:inset-y-60 { top: 15rem; bottom: 15rem; } - .lg\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .lg\:inset-y-64 { top: 16rem; bottom: 16rem; } - .lg\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .lg\:inset-y-72 { top: 18rem; bottom: 18rem; } - .lg\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .lg\:inset-y-80 { top: 20rem; bottom: 20rem; } - .lg\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .lg\:inset-y-96 { top: 24rem; bottom: 24rem; } - .lg\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .lg\:inset-y-auto { top: auto; bottom: auto; } - .lg\:inset-x-auto { - right: auto; - left: auto; - } - .lg\:inset-y-px { top: 1px; bottom: 1px; } - .lg\:inset-x-px { - right: 1px; - left: 1px; - } - .lg\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .lg\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .lg\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .lg\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .lg\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .lg\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .lg\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .lg\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .lg\:-inset-y-0 { top: 0px; bottom: 0px; } - .lg\:-inset-x-0 { - right: 0px; - left: 0px; - } - .lg\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .lg\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .lg\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .lg\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .lg\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .lg\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .lg\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .lg\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .lg\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .lg\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .lg\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .lg\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .lg\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .lg\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .lg\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .lg\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .lg\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .lg\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .lg\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .lg\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .lg\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .lg\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .lg\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .lg\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .lg\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .lg\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .lg\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .lg\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .lg\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .lg\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .lg\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .lg\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .lg\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .lg\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .lg\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .lg\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .lg\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .lg\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .lg\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .lg\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .lg\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .lg\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .lg\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .lg\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .lg\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .lg\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .lg\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .lg\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .lg\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .lg\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .lg\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .lg\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .lg\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .lg\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .lg\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .lg\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .lg\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .lg\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .lg\:-inset-y-px { top: -1px; bottom: -1px; } - .lg\:-inset-x-px { - right: -1px; - left: -1px; - } - .lg\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .lg\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .lg\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .lg\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .lg\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .lg\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .lg\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .lg\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .lg\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .lg\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .lg\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .lg\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .lg\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .lg\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .lg\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .lg\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .lg\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .lg\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .lg\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .lg\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .lg\:inset-y-full { top: 100%; bottom: 100%; } - .lg\:inset-x-full { - right: 100%; - left: 100%; - } - .lg\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .lg\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .lg\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .lg\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .lg\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .lg\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .lg\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .lg\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .lg\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .lg\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .lg\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .lg\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .lg\:-inset-y-full { top: -100%; bottom: -100%; } - .lg\:-inset-x-full { - right: -100%; - left: -100%; - } - .lg\:top-0 { top: 0px; } - .lg\:right-0 { - right: 0px; + .lg\:top-1 { + top: 0.25rem; } - .lg\:bottom-0 { - bottom: 0px; + .lg\:top-2 { + top: 0.5rem; } - .lg\:left-0 { - left: 0px; + .lg\:top-3 { + top: 0.75rem; } - .lg\:top-1 { - top: 0.25rem; + .lg\:top-4 { + top: 1rem; } - .lg\:right-1 { - right: 0.25rem; + .lg\:top-5 { + top: 1.25rem; } - .lg\:bottom-1 { - bottom: 0.25rem; + .lg\:top-6 { + top: 1.5rem; } - .lg\:left-1 { - left: 0.25rem; + .lg\:top-7 { + top: 1.75rem; } - .lg\:top-2 { - top: 0.5rem; + .lg\:top-8 { + top: 2rem; } - .lg\:right-2 { - right: 0.5rem; + .lg\:top-9 { + top: 2.25rem; } - .lg\:bottom-2 { - bottom: 0.5rem; + .lg\:top-10 { + top: 2.5rem; } - .lg\:left-2 { - left: 0.5rem; + .lg\:top-11 { + top: 2.75rem; } - .lg\:top-3 { - top: 0.75rem; + .lg\:top-12 { + top: 3rem; } - .lg\:right-3 { - right: 0.75rem; + .lg\:top-14 { + top: 3.5rem; } - .lg\:bottom-3 { - bottom: 0.75rem; + .lg\:top-16 { + top: 4rem; } - .lg\:left-3 { - left: 0.75rem; + .lg\:top-20 { + top: 5rem; } - .lg\:top-4 { - top: 1rem; + .lg\:top-24 { + top: 6rem; } - .lg\:right-4 { - right: 1rem; + .lg\:top-28 { + top: 7rem; } - .lg\:bottom-4 { - bottom: 1rem; + .lg\:top-32 { + top: 8rem; } - .lg\:left-4 { - left: 1rem; + .lg\:top-36 { + top: 9rem; } - .lg\:top-5 { - top: 1.25rem; + .lg\:top-40 { + top: 10rem; } - .lg\:right-5 { - right: 1.25rem; + .lg\:top-44 { + top: 11rem; } - .lg\:bottom-5 { - bottom: 1.25rem; + .lg\:top-48 { + top: 12rem; } - .lg\:left-5 { - left: 1.25rem; + .lg\:top-52 { + top: 13rem; } - .lg\:top-6 { - top: 1.5rem; + .lg\:top-56 { + top: 14rem; } - .lg\:right-6 { - right: 1.5rem; + .lg\:top-60 { + top: 15rem; } - .lg\:bottom-6 { - bottom: 1.5rem; + .lg\:top-64 { + top: 16rem; } - .lg\:left-6 { - left: 1.5rem; + .lg\:top-72 { + top: 18rem; } - .lg\:top-7 { - top: 1.75rem; + .lg\:top-80 { + top: 20rem; } - .lg\:right-7 { - right: 1.75rem; + .lg\:top-96 { + top: 24rem; } - .lg\:bottom-7 { - bottom: 1.75rem; + .lg\:top-auto { + top: auto; } - .lg\:left-7 { - left: 1.75rem; + .lg\:top-px { + top: 1px; } - .lg\:top-8 { - top: 2rem; + .lg\:top-0\.5 { + top: 0.125rem; } - .lg\:right-8 { - right: 2rem; + .lg\:top-1\.5 { + top: 0.375rem; } - .lg\:bottom-8 { - bottom: 2rem; + .lg\:top-2\.5 { + top: 0.625rem; } - .lg\:left-8 { - left: 2rem; + .lg\:top-3\.5 { + top: 0.875rem; } - .lg\:top-9 { - top: 2.25rem; + .lg\:-top-0 { + top: 0px; } - .lg\:right-9 { - right: 2.25rem; + .lg\:-top-1 { + top: -0.25rem; } - .lg\:bottom-9 { - bottom: 2.25rem; + .lg\:-top-2 { + top: -0.5rem; } - .lg\:left-9 { - left: 2.25rem; + .lg\:-top-3 { + top: -0.75rem; } - .lg\:top-10 { - top: 2.5rem; + .lg\:-top-4 { + top: -1rem; } - .lg\:right-10 { - right: 2.5rem; + .lg\:-top-5 { + top: -1.25rem; } - .lg\:bottom-10 { - bottom: 2.5rem; + .lg\:-top-6 { + top: -1.5rem; } - .lg\:left-10 { - left: 2.5rem; + .lg\:-top-7 { + top: -1.75rem; } - .lg\:top-11 { - top: 2.75rem; + .lg\:-top-8 { + top: -2rem; } - .lg\:right-11 { - right: 2.75rem; + .lg\:-top-9 { + top: -2.25rem; } - .lg\:bottom-11 { - bottom: 2.75rem; + .lg\:-top-10 { + top: -2.5rem; } - .lg\:left-11 { - left: 2.75rem; + .lg\:-top-11 { + top: -2.75rem; } - .lg\:top-12 { - top: 3rem; + .lg\:-top-12 { + top: -3rem; } - .lg\:right-12 { - right: 3rem; + .lg\:-top-14 { + top: -3.5rem; } - .lg\:bottom-12 { - bottom: 3rem; + .lg\:-top-16 { + top: -4rem; } - .lg\:left-12 { - left: 3rem; + .lg\:-top-20 { + top: -5rem; } - .lg\:top-14 { - top: 3.5rem; + .lg\:-top-24 { + top: -6rem; } - .lg\:right-14 { - right: 3.5rem; + .lg\:-top-28 { + top: -7rem; } - .lg\:bottom-14 { - bottom: 3.5rem; + .lg\:-top-32 { + top: -8rem; } - .lg\:left-14 { - left: 3.5rem; + .lg\:-top-36 { + top: -9rem; } - .lg\:top-16 { - top: 4rem; + .lg\:-top-40 { + top: -10rem; } - .lg\:right-16 { - right: 4rem; + .lg\:-top-44 { + top: -11rem; } - .lg\:bottom-16 { - bottom: 4rem; + .lg\:-top-48 { + top: -12rem; } - .lg\:left-16 { - left: 4rem; + .lg\:-top-52 { + top: -13rem; } - .lg\:top-20 { - top: 5rem; + .lg\:-top-56 { + top: -14rem; } - .lg\:right-20 { - right: 5rem; + .lg\:-top-60 { + top: -15rem; } - .lg\:bottom-20 { - bottom: 5rem; + .lg\:-top-64 { + top: -16rem; } - .lg\:left-20 { - left: 5rem; + .lg\:-top-72 { + top: -18rem; } - .lg\:top-24 { - top: 6rem; + .lg\:-top-80 { + top: -20rem; } - .lg\:right-24 { - right: 6rem; + .lg\:-top-96 { + top: -24rem; } - .lg\:bottom-24 { - bottom: 6rem; + .lg\:-top-px { + top: -1px; } - .lg\:left-24 { - left: 6rem; + .lg\:-top-0\.5 { + top: -0.125rem; } - .lg\:top-28 { - top: 7rem; + .lg\:-top-1\.5 { + top: -0.375rem; } - .lg\:right-28 { - right: 7rem; + .lg\:-top-2\.5 { + top: -0.625rem; } - .lg\:bottom-28 { - bottom: 7rem; + .lg\:-top-3\.5 { + top: -0.875rem; } - .lg\:left-28 { - left: 7rem; + .lg\:top-1\/2 { + top: 50%; } - .lg\:top-32 { - top: 8rem; + .lg\:top-1\/3 { + top: 33.333333%; } - .lg\:right-32 { - right: 8rem; + .lg\:top-2\/3 { + top: 66.666667%; } - .lg\:bottom-32 { - bottom: 8rem; + .lg\:top-1\/4 { + top: 25%; } - .lg\:left-32 { - left: 8rem; + .lg\:top-2\/4 { + top: 50%; } - .lg\:top-36 { - top: 9rem; + .lg\:top-3\/4 { + top: 75%; } - .lg\:right-36 { - right: 9rem; + .lg\:top-full { + top: 100%; } - .lg\:bottom-36 { - bottom: 9rem; + .lg\:-top-1\/2 { + top: -50%; } - .lg\:left-36 { - left: 9rem; + .lg\:-top-1\/3 { + top: -33.333333%; } - .lg\:top-40 { - top: 10rem; + .lg\:-top-2\/3 { + top: -66.666667%; } - .lg\:right-40 { - right: 10rem; + .lg\:-top-1\/4 { + top: -25%; } - .lg\:bottom-40 { - bottom: 10rem; + .lg\:-top-2\/4 { + top: -50%; } - .lg\:left-40 { - left: 10rem; + .lg\:-top-3\/4 { + top: -75%; } - .lg\:top-44 { - top: 11rem; + .lg\:-top-full { + top: -100%; } - .lg\:right-44 { - right: 11rem; + .lg\:right-0 { + right: 0px; } - .lg\:bottom-44 { - bottom: 11rem; + .lg\:right-1 { + right: 0.25rem; } - .lg\:left-44 { - left: 11rem; + .lg\:right-2 { + right: 0.5rem; } - .lg\:top-48 { - top: 12rem; + .lg\:right-3 { + right: 0.75rem; } - .lg\:right-48 { - right: 12rem; + .lg\:right-4 { + right: 1rem; } - .lg\:bottom-48 { - bottom: 12rem; + .lg\:right-5 { + right: 1.25rem; } - .lg\:left-48 { - left: 12rem; + .lg\:right-6 { + right: 1.5rem; } - .lg\:top-52 { - top: 13rem; + .lg\:right-7 { + right: 1.75rem; } - .lg\:right-52 { - right: 13rem; + .lg\:right-8 { + right: 2rem; } - .lg\:bottom-52 { - bottom: 13rem; + .lg\:right-9 { + right: 2.25rem; } - .lg\:left-52 { - left: 13rem; + .lg\:right-10 { + right: 2.5rem; } - .lg\:top-56 { - top: 14rem; + .lg\:right-11 { + right: 2.75rem; } - .lg\:right-56 { - right: 14rem; + .lg\:right-12 { + right: 3rem; } - .lg\:bottom-56 { - bottom: 14rem; + .lg\:right-14 { + right: 3.5rem; } - .lg\:left-56 { - left: 14rem; + .lg\:right-16 { + right: 4rem; } - .lg\:top-60 { - top: 15rem; + .lg\:right-20 { + right: 5rem; } - .lg\:right-60 { - right: 15rem; + .lg\:right-24 { + right: 6rem; } - .lg\:bottom-60 { - bottom: 15rem; + .lg\:right-28 { + right: 7rem; } - .lg\:left-60 { - left: 15rem; + .lg\:right-32 { + right: 8rem; } - .lg\:top-64 { - top: 16rem; + .lg\:right-36 { + right: 9rem; } - .lg\:right-64 { - right: 16rem; + .lg\:right-40 { + right: 10rem; } - .lg\:bottom-64 { - bottom: 16rem; + .lg\:right-44 { + right: 11rem; } - .lg\:left-64 { - left: 16rem; + .lg\:right-48 { + right: 12rem; } - .lg\:top-72 { - top: 18rem; + .lg\:right-52 { + right: 13rem; } - .lg\:right-72 { - right: 18rem; + .lg\:right-56 { + right: 14rem; } - .lg\:bottom-72 { - bottom: 18rem; + .lg\:right-60 { + right: 15rem; } - .lg\:left-72 { - left: 18rem; + .lg\:right-64 { + right: 16rem; } - .lg\:top-80 { - top: 20rem; + .lg\:right-72 { + right: 18rem; } .lg\:right-80 { right: 20rem; } - .lg\:bottom-80 { - bottom: 20rem; + .lg\:right-96 { + right: 24rem; } - .lg\:left-80 { - left: 20rem; + .lg\:right-auto { + right: auto; } - .lg\:top-96 { - top: 24rem; + .lg\:right-px { + right: 1px; } - .lg\:right-96 { - right: 24rem; + .lg\:right-0\.5 { + right: 0.125rem; } - .lg\:bottom-96 { - bottom: 24rem; + .lg\:right-1\.5 { + right: 0.375rem; } - .lg\:left-96 { - left: 24rem; + .lg\:right-2\.5 { + right: 0.625rem; } - .lg\:top-auto { - top: auto; + .lg\:right-3\.5 { + right: 0.875rem; } - .lg\:right-auto { - right: auto; + .lg\:-right-0 { + right: 0px; } - .lg\:bottom-auto { - bottom: auto; + .lg\:-right-1 { + right: -0.25rem; } - .lg\:left-auto { - left: auto; + .lg\:-right-2 { + right: -0.5rem; } - .lg\:top-px { - top: 1px; + .lg\:-right-3 { + right: -0.75rem; } - .lg\:right-px { - right: 1px; + .lg\:-right-4 { + right: -1rem; } - .lg\:bottom-px { - bottom: 1px; + .lg\:-right-5 { + right: -1.25rem; } - .lg\:left-px { - left: 1px; + .lg\:-right-6 { + right: -1.5rem; } - .lg\:top-0\.5 { - top: 0.125rem; + .lg\:-right-7 { + right: -1.75rem; } - .lg\:right-0\.5 { - right: 0.125rem; + .lg\:-right-8 { + right: -2rem; } - .lg\:bottom-0\.5 { - bottom: 0.125rem; + .lg\:-right-9 { + right: -2.25rem; } - .lg\:left-0\.5 { - left: 0.125rem; + .lg\:-right-10 { + right: -2.5rem; } - .lg\:top-1\.5 { - top: 0.375rem; + .lg\:-right-11 { + right: -2.75rem; } - .lg\:right-1\.5 { - right: 0.375rem; + .lg\:-right-12 { + right: -3rem; } - .lg\:bottom-1\.5 { - bottom: 0.375rem; + .lg\:-right-14 { + right: -3.5rem; } - .lg\:left-1\.5 { - left: 0.375rem; + .lg\:-right-16 { + right: -4rem; } - .lg\:top-2\.5 { - top: 0.625rem; + .lg\:-right-20 { + right: -5rem; } - .lg\:right-2\.5 { - right: 0.625rem; + .lg\:-right-24 { + right: -6rem; } - .lg\:bottom-2\.5 { - bottom: 0.625rem; + .lg\:-right-28 { + right: -7rem; } - .lg\:left-2\.5 { - left: 0.625rem; + .lg\:-right-32 { + right: -8rem; } - .lg\:top-3\.5 { - top: 0.875rem; + .lg\:-right-36 { + right: -9rem; } - .lg\:right-3\.5 { - right: 0.875rem; + .lg\:-right-40 { + right: -10rem; } - .lg\:bottom-3\.5 { - bottom: 0.875rem; + .lg\:-right-44 { + right: -11rem; } - .lg\:left-3\.5 { - left: 0.875rem; + .lg\:-right-48 { + right: -12rem; } - .lg\:-top-0 { - top: 0px; + .lg\:-right-52 { + right: -13rem; } - .lg\:-right-0 { - right: 0px; + .lg\:-right-56 { + right: -14rem; } - .lg\:-bottom-0 { - bottom: 0px; + .lg\:-right-60 { + right: -15rem; } - .lg\:-left-0 { - left: 0px; + .lg\:-right-64 { + right: -16rem; } - .lg\:-top-1 { - top: -0.25rem; + .lg\:-right-72 { + right: -18rem; } - .lg\:-right-1 { - right: -0.25rem; + .lg\:-right-80 { + right: -20rem; } - .lg\:-bottom-1 { - bottom: -0.25rem; + .lg\:-right-96 { + right: -24rem; } - .lg\:-left-1 { - left: -0.25rem; + .lg\:-right-px { + right: -1px; } - .lg\:-top-2 { - top: -0.5rem; + .lg\:-right-0\.5 { + right: -0.125rem; } - .lg\:-right-2 { - right: -0.5rem; + .lg\:-right-1\.5 { + right: -0.375rem; } - .lg\:-bottom-2 { - bottom: -0.5rem; + .lg\:-right-2\.5 { + right: -0.625rem; } - .lg\:-left-2 { - left: -0.5rem; + .lg\:-right-3\.5 { + right: -0.875rem; } - .lg\:-top-3 { - top: -0.75rem; + .lg\:right-1\/2 { + right: 50%; } - .lg\:-right-3 { - right: -0.75rem; + .lg\:right-1\/3 { + right: 33.333333%; } - .lg\:-bottom-3 { - bottom: -0.75rem; + .lg\:right-2\/3 { + right: 66.666667%; } - .lg\:-left-3 { - left: -0.75rem; + .lg\:right-1\/4 { + right: 25%; } - .lg\:-top-4 { - top: -1rem; + .lg\:right-2\/4 { + right: 50%; } - .lg\:-right-4 { - right: -1rem; + .lg\:right-3\/4 { + right: 75%; } - .lg\:-bottom-4 { - bottom: -1rem; + .lg\:right-full { + right: 100%; } - .lg\:-left-4 { - left: -1rem; + .lg\:-right-1\/2 { + right: -50%; } - .lg\:-top-5 { - top: -1.25rem; + .lg\:-right-1\/3 { + right: -33.333333%; } - .lg\:-right-5 { - right: -1.25rem; + .lg\:-right-2\/3 { + right: -66.666667%; } - .lg\:-bottom-5 { - bottom: -1.25rem; + .lg\:-right-1\/4 { + right: -25%; } - .lg\:-left-5 { - left: -1.25rem; + .lg\:-right-2\/4 { + right: -50%; } - .lg\:-top-6 { - top: -1.5rem; + .lg\:-right-3\/4 { + right: -75%; } - .lg\:-right-6 { - right: -1.5rem; + .lg\:-right-full { + right: -100%; } - .lg\:-bottom-6 { - bottom: -1.5rem; + .lg\:bottom-0 { + bottom: 0px; } - .lg\:-left-6 { - left: -1.5rem; + .lg\:bottom-1 { + bottom: 0.25rem; } - .lg\:-top-7 { - top: -1.75rem; + .lg\:bottom-2 { + bottom: 0.5rem; } - .lg\:-right-7 { - right: -1.75rem; + .lg\:bottom-3 { + bottom: 0.75rem; } - .lg\:-bottom-7 { - bottom: -1.75rem; + .lg\:bottom-4 { + bottom: 1rem; } - .lg\:-left-7 { - left: -1.75rem; + .lg\:bottom-5 { + bottom: 1.25rem; } - .lg\:-top-8 { - top: -2rem; + .lg\:bottom-6 { + bottom: 1.5rem; } - .lg\:-right-8 { - right: -2rem; + .lg\:bottom-7 { + bottom: 1.75rem; } - .lg\:-bottom-8 { - bottom: -2rem; + .lg\:bottom-8 { + bottom: 2rem; } - .lg\:-left-8 { - left: -2rem; + .lg\:bottom-9 { + bottom: 2.25rem; } - .lg\:-top-9 { - top: -2.25rem; + .lg\:bottom-10 { + bottom: 2.5rem; } - .lg\:-right-9 { - right: -2.25rem; + .lg\:bottom-11 { + bottom: 2.75rem; } - .lg\:-bottom-9 { - bottom: -2.25rem; + .lg\:bottom-12 { + bottom: 3rem; } - .lg\:-left-9 { - left: -2.25rem; + .lg\:bottom-14 { + bottom: 3.5rem; } - .lg\:-top-10 { - top: -2.5rem; + .lg\:bottom-16 { + bottom: 4rem; } - .lg\:-right-10 { - right: -2.5rem; + .lg\:bottom-20 { + bottom: 5rem; } - .lg\:-bottom-10 { - bottom: -2.5rem; + .lg\:bottom-24 { + bottom: 6rem; } - .lg\:-left-10 { - left: -2.5rem; + .lg\:bottom-28 { + bottom: 7rem; } - .lg\:-top-11 { - top: -2.75rem; + .lg\:bottom-32 { + bottom: 8rem; } - .lg\:-right-11 { - right: -2.75rem; + .lg\:bottom-36 { + bottom: 9rem; } - .lg\:-bottom-11 { - bottom: -2.75rem; + .lg\:bottom-40 { + bottom: 10rem; } - .lg\:-left-11 { - left: -2.75rem; + .lg\:bottom-44 { + bottom: 11rem; } - .lg\:-top-12 { - top: -3rem; + .lg\:bottom-48 { + bottom: 12rem; } - .lg\:-right-12 { - right: -3rem; + .lg\:bottom-52 { + bottom: 13rem; } - .lg\:-bottom-12 { - bottom: -3rem; + .lg\:bottom-56 { + bottom: 14rem; } - .lg\:-left-12 { - left: -3rem; + .lg\:bottom-60 { + bottom: 15rem; } - .lg\:-top-14 { - top: -3.5rem; + .lg\:bottom-64 { + bottom: 16rem; } - .lg\:-right-14 { - right: -3.5rem; + .lg\:bottom-72 { + bottom: 18rem; } - .lg\:-bottom-14 { - bottom: -3.5rem; + .lg\:bottom-80 { + bottom: 20rem; } - .lg\:-left-14 { - left: -3.5rem; + .lg\:bottom-96 { + bottom: 24rem; } - .lg\:-top-16 { - top: -4rem; + .lg\:bottom-auto { + bottom: auto; } - .lg\:-right-16 { - right: -4rem; + .lg\:bottom-px { + bottom: 1px; } - .lg\:-bottom-16 { - bottom: -4rem; + .lg\:bottom-0\.5 { + bottom: 0.125rem; } - .lg\:-left-16 { - left: -4rem; + .lg\:bottom-1\.5 { + bottom: 0.375rem; } - .lg\:-top-20 { - top: -5rem; + .lg\:bottom-2\.5 { + bottom: 0.625rem; } - .lg\:-right-20 { - right: -5rem; + .lg\:bottom-3\.5 { + bottom: 0.875rem; } - .lg\:-bottom-20 { - bottom: -5rem; + .lg\:-bottom-0 { + bottom: 0px; } - .lg\:-left-20 { - left: -5rem; + .lg\:-bottom-1 { + bottom: -0.25rem; } - .lg\:-top-24 { - top: -6rem; + .lg\:-bottom-2 { + bottom: -0.5rem; } - .lg\:-right-24 { - right: -6rem; + .lg\:-bottom-3 { + bottom: -0.75rem; } - .lg\:-bottom-24 { - bottom: -6rem; + .lg\:-bottom-4 { + bottom: -1rem; } - .lg\:-left-24 { - left: -6rem; + .lg\:-bottom-5 { + bottom: -1.25rem; } - .lg\:-top-28 { - top: -7rem; + .lg\:-bottom-6 { + bottom: -1.5rem; } - .lg\:-right-28 { - right: -7rem; + .lg\:-bottom-7 { + bottom: -1.75rem; } - .lg\:-bottom-28 { - bottom: -7rem; + .lg\:-bottom-8 { + bottom: -2rem; } - .lg\:-left-28 { - left: -7rem; + .lg\:-bottom-9 { + bottom: -2.25rem; } - .lg\:-top-32 { - top: -8rem; + .lg\:-bottom-10 { + bottom: -2.5rem; } - .lg\:-right-32 { - right: -8rem; + .lg\:-bottom-11 { + bottom: -2.75rem; } - .lg\:-bottom-32 { - bottom: -8rem; + .lg\:-bottom-12 { + bottom: -3rem; } - .lg\:-left-32 { - left: -8rem; + .lg\:-bottom-14 { + bottom: -3.5rem; } - .lg\:-top-36 { - top: -9rem; + .lg\:-bottom-16 { + bottom: -4rem; } - .lg\:-right-36 { - right: -9rem; + .lg\:-bottom-20 { + bottom: -5rem; } - .lg\:-bottom-36 { - bottom: -9rem; + .lg\:-bottom-24 { + bottom: -6rem; } - .lg\:-left-36 { - left: -9rem; + .lg\:-bottom-28 { + bottom: -7rem; } - .lg\:-top-40 { - top: -10rem; + .lg\:-bottom-32 { + bottom: -8rem; } - .lg\:-right-40 { - right: -10rem; + .lg\:-bottom-36 { + bottom: -9rem; } .lg\:-bottom-40 { bottom: -10rem; } - .lg\:-left-40 { - left: -10rem; + .lg\:-bottom-44 { + bottom: -11rem; } - .lg\:-top-44 { - top: -11rem; + .lg\:-bottom-48 { + bottom: -12rem; } - .lg\:-right-44 { - right: -11rem; + .lg\:-bottom-52 { + bottom: -13rem; } - .lg\:-bottom-44 { - bottom: -11rem; + .lg\:-bottom-56 { + bottom: -14rem; } - .lg\:-left-44 { - left: -11rem; + .lg\:-bottom-60 { + bottom: -15rem; } - .lg\:-top-48 { - top: -12rem; + .lg\:-bottom-64 { + bottom: -16rem; } - .lg\:-right-48 { - right: -12rem; + .lg\:-bottom-72 { + bottom: -18rem; } - .lg\:-bottom-48 { - bottom: -12rem; + .lg\:-bottom-80 { + bottom: -20rem; } - .lg\:-left-48 { - left: -12rem; + .lg\:-bottom-96 { + bottom: -24rem; } - .lg\:-top-52 { - top: -13rem; + .lg\:-bottom-px { + bottom: -1px; } - .lg\:-right-52 { - right: -13rem; + .lg\:-bottom-0\.5 { + bottom: -0.125rem; } - .lg\:-bottom-52 { - bottom: -13rem; + .lg\:-bottom-1\.5 { + bottom: -0.375rem; } - .lg\:-left-52 { - left: -13rem; + .lg\:-bottom-2\.5 { + bottom: -0.625rem; } - .lg\:-top-56 { - top: -14rem; + .lg\:-bottom-3\.5 { + bottom: -0.875rem; } - .lg\:-right-56 { - right: -14rem; + .lg\:bottom-1\/2 { + bottom: 50%; } - .lg\:-bottom-56 { - bottom: -14rem; + .lg\:bottom-1\/3 { + bottom: 33.333333%; } - .lg\:-left-56 { - left: -14rem; + .lg\:bottom-2\/3 { + bottom: 66.666667%; } - .lg\:-top-60 { - top: -15rem; + .lg\:bottom-1\/4 { + bottom: 25%; } - .lg\:-right-60 { - right: -15rem; + .lg\:bottom-2\/4 { + bottom: 50%; } - .lg\:-bottom-60 { - bottom: -15rem; + .lg\:bottom-3\/4 { + bottom: 75%; } - .lg\:-left-60 { - left: -15rem; + .lg\:bottom-full { + bottom: 100%; } - .lg\:-top-64 { - top: -16rem; + .lg\:-bottom-1\/2 { + bottom: -50%; } - .lg\:-right-64 { - right: -16rem; + .lg\:-bottom-1\/3 { + bottom: -33.333333%; } - .lg\:-bottom-64 { - bottom: -16rem; + .lg\:-bottom-2\/3 { + bottom: -66.666667%; } - .lg\:-left-64 { - left: -16rem; + .lg\:-bottom-1\/4 { + bottom: -25%; } - .lg\:-top-72 { - top: -18rem; + .lg\:-bottom-2\/4 { + bottom: -50%; } - .lg\:-right-72 { - right: -18rem; + .lg\:-bottom-3\/4 { + bottom: -75%; } - .lg\:-bottom-72 { - bottom: -18rem; + .lg\:-bottom-full { + bottom: -100%; } - .lg\:-left-72 { - left: -18rem; + .lg\:left-0 { + left: 0px; } - .lg\:-top-80 { - top: -20rem; + .lg\:left-1 { + left: 0.25rem; } - .lg\:-right-80 { - right: -20rem; + .lg\:left-2 { + left: 0.5rem; } - .lg\:-bottom-80 { - bottom: -20rem; + .lg\:left-3 { + left: 0.75rem; } - .lg\:-left-80 { - left: -20rem; + .lg\:left-4 { + left: 1rem; } - .lg\:-top-96 { - top: -24rem; + .lg\:left-5 { + left: 1.25rem; } - .lg\:-right-96 { - right: -24rem; + .lg\:left-6 { + left: 1.5rem; } - .lg\:-bottom-96 { - bottom: -24rem; + .lg\:left-7 { + left: 1.75rem; } - .lg\:-left-96 { - left: -24rem; + .lg\:left-8 { + left: 2rem; } - .lg\:-top-px { - top: -1px; + .lg\:left-9 { + left: 2.25rem; } - .lg\:-right-px { - right: -1px; + .lg\:left-10 { + left: 2.5rem; } - .lg\:-bottom-px { - bottom: -1px; + .lg\:left-11 { + left: 2.75rem; } - .lg\:-left-px { - left: -1px; + .lg\:left-12 { + left: 3rem; } - .lg\:-top-0\.5 { - top: -0.125rem; + .lg\:left-14 { + left: 3.5rem; } - .lg\:-right-0\.5 { - right: -0.125rem; + .lg\:left-16 { + left: 4rem; } - .lg\:-bottom-0\.5 { - bottom: -0.125rem; + .lg\:left-20 { + left: 5rem; } - .lg\:-left-0\.5 { - left: -0.125rem; + .lg\:left-24 { + left: 6rem; } - .lg\:-top-1\.5 { - top: -0.375rem; + .lg\:left-28 { + left: 7rem; } - .lg\:-right-1\.5 { - right: -0.375rem; + .lg\:left-32 { + left: 8rem; } - .lg\:-bottom-1\.5 { - bottom: -0.375rem; + .lg\:left-36 { + left: 9rem; } - .lg\:-left-1\.5 { - left: -0.375rem; + .lg\:left-40 { + left: 10rem; } - .lg\:-top-2\.5 { - top: -0.625rem; + .lg\:left-44 { + left: 11rem; } - .lg\:-right-2\.5 { - right: -0.625rem; + .lg\:left-48 { + left: 12rem; } - .lg\:-bottom-2\.5 { - bottom: -0.625rem; + .lg\:left-52 { + left: 13rem; } - .lg\:-left-2\.5 { - left: -0.625rem; + .lg\:left-56 { + left: 14rem; } - .lg\:-top-3\.5 { - top: -0.875rem; + .lg\:left-60 { + left: 15rem; } - .lg\:-right-3\.5 { - right: -0.875rem; + .lg\:left-64 { + left: 16rem; } - .lg\:-bottom-3\.5 { - bottom: -0.875rem; + .lg\:left-72 { + left: 18rem; } - .lg\:-left-3\.5 { - left: -0.875rem; + .lg\:left-80 { + left: 20rem; } - .lg\:top-1\/2 { - top: 50%; + .lg\:left-96 { + left: 24rem; } - .lg\:right-1\/2 { - right: 50%; + .lg\:left-auto { + left: auto; } - .lg\:bottom-1\/2 { - bottom: 50%; + .lg\:left-px { + left: 1px; } - .lg\:left-1\/2 { - left: 50%; + .lg\:left-0\.5 { + left: 0.125rem; } - .lg\:top-1\/3 { - top: 33.333333%; + .lg\:left-1\.5 { + left: 0.375rem; } - .lg\:right-1\/3 { - right: 33.333333%; + .lg\:left-2\.5 { + left: 0.625rem; } - .lg\:bottom-1\/3 { - bottom: 33.333333%; + .lg\:left-3\.5 { + left: 0.875rem; } - .lg\:left-1\/3 { - left: 33.333333%; + .lg\:-left-0 { + left: 0px; } - .lg\:top-2\/3 { - top: 66.666667%; + .lg\:-left-1 { + left: -0.25rem; } - .lg\:right-2\/3 { - right: 66.666667%; + .lg\:-left-2 { + left: -0.5rem; } - .lg\:bottom-2\/3 { - bottom: 66.666667%; + .lg\:-left-3 { + left: -0.75rem; } - .lg\:left-2\/3 { - left: 66.666667%; + .lg\:-left-4 { + left: -1rem; } - .lg\:top-1\/4 { - top: 25%; + .lg\:-left-5 { + left: -1.25rem; } - .lg\:right-1\/4 { - right: 25%; + .lg\:-left-6 { + left: -1.5rem; } - .lg\:bottom-1\/4 { - bottom: 25%; + .lg\:-left-7 { + left: -1.75rem; } - .lg\:left-1\/4 { - left: 25%; + .lg\:-left-8 { + left: -2rem; } - .lg\:top-2\/4 { - top: 50%; + .lg\:-left-9 { + left: -2.25rem; } - .lg\:right-2\/4 { - right: 50%; + .lg\:-left-10 { + left: -2.5rem; } - .lg\:bottom-2\/4 { - bottom: 50%; + .lg\:-left-11 { + left: -2.75rem; } - .lg\:left-2\/4 { - left: 50%; + .lg\:-left-12 { + left: -3rem; } - .lg\:top-3\/4 { - top: 75%; + .lg\:-left-14 { + left: -3.5rem; } - .lg\:right-3\/4 { - right: 75%; + .lg\:-left-16 { + left: -4rem; } - .lg\:bottom-3\/4 { - bottom: 75%; + .lg\:-left-20 { + left: -5rem; } - .lg\:left-3\/4 { - left: 75%; + .lg\:-left-24 { + left: -6rem; } - .lg\:top-full { - top: 100%; + .lg\:-left-28 { + left: -7rem; } - .lg\:right-full { - right: 100%; + .lg\:-left-32 { + left: -8rem; } - .lg\:bottom-full { - bottom: 100%; + .lg\:-left-36 { + left: -9rem; } - .lg\:left-full { - left: 100%; + .lg\:-left-40 { + left: -10rem; } - .lg\:-top-1\/2 { - top: -50%; + .lg\:-left-44 { + left: -11rem; } - .lg\:-right-1\/2 { - right: -50%; + .lg\:-left-48 { + left: -12rem; } - .lg\:-bottom-1\/2 { - bottom: -50%; + .lg\:-left-52 { + left: -13rem; } - .lg\:-left-1\/2 { - left: -50%; + .lg\:-left-56 { + left: -14rem; } - .lg\:-top-1\/3 { - top: -33.333333%; + .lg\:-left-60 { + left: -15rem; } - .lg\:-right-1\/3 { - right: -33.333333%; + .lg\:-left-64 { + left: -16rem; } - .lg\:-bottom-1\/3 { - bottom: -33.333333%; + .lg\:-left-72 { + left: -18rem; } - .lg\:-left-1\/3 { - left: -33.333333%; + .lg\:-left-80 { + left: -20rem; } - .lg\:-top-2\/3 { - top: -66.666667%; + .lg\:-left-96 { + left: -24rem; } - .lg\:-right-2\/3 { - right: -66.666667%; + .lg\:-left-px { + left: -1px; } - .lg\:-bottom-2\/3 { - bottom: -66.666667%; + .lg\:-left-0\.5 { + left: -0.125rem; } - .lg\:-left-2\/3 { - left: -66.666667%; + .lg\:-left-1\.5 { + left: -0.375rem; } - .lg\:-top-1\/4 { - top: -25%; + .lg\:-left-2\.5 { + left: -0.625rem; } - .lg\:-right-1\/4 { - right: -25%; + .lg\:-left-3\.5 { + left: -0.875rem; } - .lg\:-bottom-1\/4 { - bottom: -25%; + .lg\:left-1\/2 { + left: 50%; } - .lg\:-left-1\/4 { - left: -25%; + .lg\:left-1\/3 { + left: 33.333333%; } - .lg\:-top-2\/4 { - top: -50%; + .lg\:left-2\/3 { + left: 66.666667%; } - .lg\:-right-2\/4 { - right: -50%; + .lg\:left-1\/4 { + left: 25%; } - .lg\:-bottom-2\/4 { - bottom: -50%; + .lg\:left-2\/4 { + left: 50%; } - .lg\:-left-2\/4 { - left: -50%; + .lg\:left-3\/4 { + left: 75%; } - .lg\:-top-3\/4 { - top: -75%; + .lg\:left-full { + left: 100%; } - .lg\:-right-3\/4 { - right: -75%; + .lg\:-left-1\/2 { + left: -50%; } - .lg\:-bottom-3\/4 { - bottom: -75%; + .lg\:-left-1\/3 { + left: -33.333333%; } - .lg\:-left-3\/4 { - left: -75%; + .lg\:-left-2\/3 { + left: -66.666667%; } - .lg\:-top-full { - top: -100%; + .lg\:-left-1\/4 { + left: -25%; } - .lg\:-right-full { - right: -100%; + .lg\:-left-2\/4 { + left: -50%; } - .lg\:-bottom-full { - bottom: -100%; + .lg\:-left-3\/4 { + left: -75%; } .lg\:-left-full { @@ -97037,133 +97101,183 @@ video { --tw-scale-y: 1.5; } - .lg\:scale-x-0 { + .lg\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .lg\:scale-x-50 { + .lg\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .lg\:scale-x-75 { + .lg\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .lg\:scale-x-90 { + .lg\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .lg\:scale-x-95 { + .lg\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .lg\:scale-x-100 { + .lg\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .lg\:scale-x-105 { + .lg\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .lg\:scale-x-110 { + .lg\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .lg\:scale-x-125 { + .lg\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .lg\:scale-x-150 { + .lg\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .lg\:scale-y-0 { + .lg\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .lg\:scale-y-50 { + .lg\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .lg\:scale-y-75 { + .lg\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .lg\:scale-y-90 { + .lg\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .lg\:scale-y-95 { + .lg\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .lg\:scale-y-100 { + .lg\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .lg\:scale-y-105 { + .lg\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .lg\:scale-y-110 { + .lg\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .lg\:scale-y-125 { + .lg\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .lg\:scale-y-150 { + .lg\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .lg\:hover\:scale-0:hover { + .lg\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .lg\:hover\:scale-50:hover { + .lg\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .lg\:hover\:scale-75:hover { + .lg\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .lg\:hover\:scale-90:hover { + .lg\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .lg\:hover\:scale-95:hover { + .lg\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .lg\:hover\:scale-100:hover { + .lg\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .lg\:hover\:scale-105:hover { + .lg\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .lg\:hover\:scale-110:hover { + .lg\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .lg\:hover\:scale-125:hover { + .lg\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .lg\:hover\:scale-150:hover { + .lg\:scale-x-150 { --tw-scale-x: 1.5; + } + + .lg\:scale-y-0 { + --tw-scale-y: 0; + } + + .lg\:scale-y-50 { + --tw-scale-y: .5; + } + + .lg\:scale-y-75 { + --tw-scale-y: .75; + } + + .lg\:scale-y-90 { + --tw-scale-y: .9; + } + + .lg\:scale-y-95 { + --tw-scale-y: .95; + } + + .lg\:scale-y-100 { + --tw-scale-y: 1; + } + + .lg\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .lg\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .lg\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .lg\:scale-y-150 { --tw-scale-y: 1.5; } @@ -97247,56 +97361,6 @@ video { --tw-scale-y: 1.5; } - .lg\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .lg\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .lg\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .lg\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .lg\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .lg\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .lg\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .lg\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .lg\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .lg\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .lg\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -98189,436 +98253,640 @@ video { row-gap: 0.875rem; } - .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .lg\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .lg\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .lg\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .lg\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .lg\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .lg\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .lg\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .lg\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .lg\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -98627,408 +98895,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .lg\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .lg\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .lg\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -99037,66 +99101,66 @@ video { --tw-space-x-reverse: 1; } - .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .lg\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .lg\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .lg\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .lg\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -105510,2188 +105574,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .lg\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .lg\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .lg\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .lg\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .lg\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .lg\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .lg\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .lg\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .lg\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .lg\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .lg\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .lg\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .lg\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .lg\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .lg\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .lg\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .lg\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .lg\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .lg\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .lg\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .lg\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .lg\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .lg\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .lg\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .lg\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .lg\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .lg\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .lg\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .lg\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .lg\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .lg\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .lg\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .lg\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .lg\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .lg\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .lg\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .lg\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .lg\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .lg\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .lg\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .lg\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .lg\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .lg\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .lg\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .lg\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .lg\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .lg\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .lg\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .lg\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .lg\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .lg\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .lg\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .lg\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .lg\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .lg\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .lg\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .lg\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .lg\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .lg\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .lg\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .lg\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .lg\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .lg\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .lg\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .lg\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .lg\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .lg\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .lg\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .lg\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .lg\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .lg\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .lg\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .lg\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .lg\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .lg\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .lg\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .lg\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .lg\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .lg\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .lg\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .lg\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .lg\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .lg\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .lg\:to-transparent { - --tw-gradient-to: transparent; + .lg\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:to-current { - --tw-gradient-to: currentColor; + .lg\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:to-black { - --tw-gradient-to: #000; + .lg\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:to-white { - --tw-gradient-to: #fff; + .lg\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .lg\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .lg\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .lg\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .lg\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .lg\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:to-gray-500 { - --tw-gradient-to: #6b7280; + .lg\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:to-gray-600 { - --tw-gradient-to: #4b5563; + .lg\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:to-gray-700 { - --tw-gradient-to: #374151; + .lg\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:to-gray-800 { - --tw-gradient-to: #1f2937; + .lg\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:to-gray-900 { - --tw-gradient-to: #111827; + .lg\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:to-red-50 { - --tw-gradient-to: #fef2f2; + .lg\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:to-red-100 { - --tw-gradient-to: #fee2e2; + .lg\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:to-red-200 { - --tw-gradient-to: #fecaca; + .lg\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:to-red-300 { - --tw-gradient-to: #fca5a5; + .lg\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:to-red-400 { - --tw-gradient-to: #f87171; + .lg\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:to-red-500 { - --tw-gradient-to: #ef4444; + .lg\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:to-red-600 { - --tw-gradient-to: #dc2626; + .lg\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:to-red-700 { - --tw-gradient-to: #b91c1c; + .lg\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:to-red-800 { - --tw-gradient-to: #991b1b; + .lg\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .lg\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .lg\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .lg\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .lg\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .lg\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .lg\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .lg\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:to-yellow-600 { - --tw-gradient-to: #d97706; + .lg\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:to-yellow-700 { - --tw-gradient-to: #b45309; + .lg\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:to-yellow-800 { - --tw-gradient-to: #92400e; + .lg\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:to-yellow-900 { - --tw-gradient-to: #78350f; + .lg\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .lg\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:to-green-100 { - --tw-gradient-to: #d1fae5; + .lg\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .lg\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .lg\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:to-green-400 { - --tw-gradient-to: #34d399; + .lg\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:to-green-500 { - --tw-gradient-to: #10b981; + .lg\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:to-green-600 { - --tw-gradient-to: #059669; + .lg\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:to-green-700 { - --tw-gradient-to: #047857; + .lg\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:to-green-800 { - --tw-gradient-to: #065f46; + .lg\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:to-green-900 { - --tw-gradient-to: #064e3b; + .lg\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .lg\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .lg\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .lg\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .lg\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .lg\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .lg\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:to-blue-600 { - --tw-gradient-to: #2563eb; + .lg\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .lg\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:to-blue-800 { - --tw-gradient-to: #1e40af; + .lg\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .lg\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .lg\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .lg\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .lg\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .lg\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .lg\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .lg\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .lg\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .lg\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .lg\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:to-indigo-900 { - --tw-gradient-to: #312e81; + .lg\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .lg\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .lg\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .lg\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .lg\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .lg\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .lg\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .lg\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .lg\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .lg\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .lg\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .lg\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .lg\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .lg\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .lg\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:to-pink-400 { - --tw-gradient-to: #f472b6; + .lg\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:to-pink-500 { - --tw-gradient-to: #ec4899; + .lg\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:to-pink-600 { - --tw-gradient-to: #db2777; + .lg\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:to-pink-700 { - --tw-gradient-to: #be185d; + .lg\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:to-pink-800 { - --tw-gradient-to: #9d174d; + .lg\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:to-pink-900 { - --tw-gradient-to: #831843; + .lg\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:hover\:from-transparent:hover { + .lg\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:from-current:hover { + .lg\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:from-black:hover { + .lg\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:from-white:hover { + .lg\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:from-gray-50:hover { + .lg\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:hover\:from-gray-100:hover { + .lg\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:hover\:from-gray-200:hover { + .lg\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:hover\:from-gray-300:hover { + .lg\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:hover\:from-gray-400:hover { + .lg\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:hover\:from-gray-500:hover { + .lg\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:hover\:from-gray-600:hover { + .lg\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:hover\:from-gray-700:hover { + .lg\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:hover\:from-gray-800:hover { + .lg\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:hover\:from-gray-900:hover { + .lg\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:hover\:from-red-50:hover { + .lg\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:hover\:from-red-100:hover { + .lg\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:hover\:from-red-200:hover { + .lg\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:hover\:from-red-300:hover { + .lg\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:hover\:from-red-400:hover { + .lg\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:hover\:from-red-500:hover { + .lg\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:hover\:from-red-600:hover { + .lg\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:hover\:from-red-700:hover { + .lg\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:hover\:from-red-800:hover { + .lg\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:hover\:from-red-900:hover { + .lg\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:hover\:from-yellow-50:hover { + .lg\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:hover\:from-yellow-100:hover { + .lg\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:hover\:from-yellow-200:hover { + .lg\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:hover\:from-yellow-300:hover { + .lg\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:hover\:from-yellow-400:hover { + .lg\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:hover\:from-yellow-500:hover { + .lg\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:hover\:from-yellow-600:hover { + .lg\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:hover\:from-yellow-700:hover { + .lg\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:hover\:from-yellow-800:hover { + .lg\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:hover\:from-yellow-900:hover { + .lg\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:hover\:from-green-50:hover { + .lg\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:hover\:from-green-100:hover { + .lg\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:hover\:from-green-200:hover { + .lg\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:hover\:from-green-300:hover { + .lg\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:hover\:from-green-400:hover { + .lg\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:hover\:from-green-500:hover { + .lg\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:hover\:from-green-600:hover { + .lg\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:hover\:from-green-700:hover { + .lg\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:hover\:from-green-800:hover { + .lg\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:hover\:from-green-900:hover { + .lg\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:hover\:from-blue-50:hover { + .lg\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:hover\:from-blue-100:hover { + .lg\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:hover\:from-blue-200:hover { + .lg\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:hover\:from-blue-300:hover { + .lg\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:hover\:from-blue-400:hover { + .lg\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:hover\:from-blue-500:hover { + .lg\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:hover\:from-blue-600:hover { + .lg\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:hover\:from-blue-700:hover { + .lg\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:hover\:from-blue-800:hover { + .lg\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:hover\:from-blue-900:hover { + .lg\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:hover\:from-indigo-50:hover { + .lg\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:hover\:from-indigo-100:hover { + .lg\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:hover\:from-indigo-200:hover { + .lg\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:hover\:from-indigo-300:hover { + .lg\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:hover\:from-indigo-400:hover { + .lg\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:hover\:from-indigo-500:hover { + .lg\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:hover\:from-indigo-600:hover { + .lg\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:hover\:from-indigo-700:hover { + .lg\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:hover\:from-indigo-800:hover { + .lg\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:hover\:from-indigo-900:hover { + .lg\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:hover\:from-purple-50:hover { + .lg\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:hover\:from-purple-100:hover { + .lg\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:hover\:from-purple-200:hover { + .lg\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:hover\:from-purple-300:hover { + .lg\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:hover\:from-purple-400:hover { + .lg\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:hover\:from-purple-500:hover { + .lg\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:hover\:from-purple-600:hover { + .lg\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:hover\:from-purple-700:hover { + .lg\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:hover\:from-purple-800:hover { + .lg\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:hover\:from-purple-900:hover { + .lg\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:hover\:from-pink-50:hover { + .lg\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:hover\:from-pink-100:hover { + .lg\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:hover\:from-pink-200:hover { + .lg\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:hover\:from-pink-300:hover { + .lg\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:hover\:from-pink-400:hover { + .lg\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:hover\:from-pink-500:hover { + .lg\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:hover\:from-pink-600:hover { + .lg\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:hover\:from-pink-700:hover { + .lg\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:hover\:from-pink-800:hover { + .lg\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:hover\:from-pink-900:hover { + .lg\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:hover\:via-transparent:hover { + .lg\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:via-current:hover { + .lg\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:via-black:hover { + .lg\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:hover\:via-white:hover { + .lg\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:hover\:via-gray-50:hover { + .lg\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:hover\:via-gray-100:hover { + .lg\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:hover\:via-gray-200:hover { + .lg\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:hover\:via-gray-300:hover { + .lg\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:hover\:via-gray-400:hover { + .lg\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:hover\:via-gray-500:hover { + .lg\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:hover\:via-gray-600:hover { + .lg\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:hover\:via-gray-700:hover { + .lg\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:hover\:via-gray-800:hover { + .lg\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:hover\:via-gray-900:hover { + .lg\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:hover\:via-red-50:hover { + .lg\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:hover\:via-red-100:hover { + .lg\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:hover\:via-red-200:hover { + .lg\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:hover\:via-red-300:hover { + .lg\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:hover\:via-red-400:hover { + .lg\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:hover\:via-red-500:hover { + .lg\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:hover\:via-red-600:hover { + .lg\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:hover\:via-red-700:hover { + .lg\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:hover\:via-red-800:hover { + .lg\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:hover\:via-red-900:hover { + .lg\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:hover\:via-yellow-50:hover { + .lg\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:hover\:via-yellow-100:hover { + .lg\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:hover\:via-yellow-200:hover { + .lg\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:hover\:via-yellow-300:hover { + .lg\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:hover\:via-yellow-400:hover { + .lg\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:hover\:via-yellow-500:hover { + .lg\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:hover\:via-yellow-600:hover { + .lg\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:hover\:via-yellow-700:hover { + .lg\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:hover\:via-yellow-800:hover { + .lg\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:hover\:via-yellow-900:hover { + .lg\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:hover\:via-green-50:hover { + .lg\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:hover\:via-green-100:hover { + .lg\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:hover\:via-green-200:hover { + .lg\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:hover\:via-green-300:hover { + .lg\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:hover\:via-green-400:hover { + .lg\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:hover\:via-green-500:hover { + .lg\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:hover\:via-green-600:hover { + .lg\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:hover\:via-green-700:hover { + .lg\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:hover\:via-green-800:hover { + .lg\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:hover\:via-green-900:hover { + .lg\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:hover\:via-blue-50:hover { + .lg\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:hover\:via-blue-100:hover { + .lg\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:hover\:via-blue-200:hover { + .lg\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:hover\:via-blue-300:hover { + .lg\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:hover\:via-blue-400:hover { + .lg\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:hover\:via-blue-500:hover { + .lg\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:hover\:via-blue-600:hover { + .lg\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:hover\:via-blue-700:hover { + .lg\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:hover\:via-blue-800:hover { + .lg\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:hover\:via-blue-900:hover { + .lg\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:hover\:via-indigo-50:hover { + .lg\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:hover\:via-indigo-100:hover { + .lg\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:hover\:via-indigo-200:hover { + .lg\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:hover\:via-indigo-300:hover { + .lg\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:hover\:via-indigo-400:hover { + .lg\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:hover\:via-indigo-500:hover { + .lg\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:hover\:via-indigo-600:hover { + .lg\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:hover\:via-indigo-700:hover { + .lg\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:hover\:via-indigo-800:hover { + .lg\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:hover\:via-indigo-900:hover { + .lg\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:hover\:via-purple-50:hover { + .lg\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:hover\:via-purple-100:hover { + .lg\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:hover\:via-purple-200:hover { + .lg\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:hover\:via-purple-300:hover { + .lg\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:hover\:via-purple-400:hover { + .lg\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:hover\:via-purple-500:hover { + .lg\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:hover\:via-purple-600:hover { + .lg\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:hover\:via-purple-700:hover { + .lg\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:hover\:via-purple-800:hover { + .lg\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:hover\:via-purple-900:hover { + .lg\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:hover\:via-pink-50:hover { + .lg\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:hover\:via-pink-100:hover { + .lg\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:hover\:via-pink-200:hover { + .lg\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:hover\:via-pink-300:hover { + .lg\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:hover\:via-pink-400:hover { + .lg\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:hover\:via-pink-500:hover { + .lg\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:hover\:via-pink-600:hover { + .lg\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:hover\:via-pink-700:hover { + .lg\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:hover\:via-pink-800:hover { + .lg\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:hover\:via-pink-900:hover { + .lg\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .lg\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .lg\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .lg\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .lg\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .lg\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .lg\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .lg\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .lg\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .lg\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .lg\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .lg\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .lg\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .lg\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .lg\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .lg\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .lg\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .lg\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .lg\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .lg\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .lg\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .lg\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .lg\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .lg\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .lg\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .lg\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .lg\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .lg\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .lg\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .lg\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .lg\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .lg\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .lg\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .lg\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .lg\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .lg\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .lg\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .lg\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .lg\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .lg\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .lg\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .lg\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .lg\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .lg\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .lg\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .lg\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .lg\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .lg\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .lg\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .lg\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .lg\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .lg\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .lg\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .lg\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .lg\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .lg\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .lg\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .lg\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .lg\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .lg\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .lg\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .lg\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .lg\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .lg\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .lg\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .lg\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .lg\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .lg\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .lg\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .lg\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .lg\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .lg\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .lg\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .lg\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .lg\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .lg\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .lg\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .lg\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .lg\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .lg\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .lg\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .lg\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .lg\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .lg\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .lg\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .lg\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .lg\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .lg\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .lg\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .lg\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .lg\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .lg\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .lg\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .lg\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .lg\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .lg\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .lg\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .lg\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .lg\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .lg\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .lg\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .lg\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .lg\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .lg\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .lg\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .lg\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .lg\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .lg\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .lg\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .lg\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .lg\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .lg\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .lg\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .lg\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .lg\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .lg\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .lg\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .lg\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .lg\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .lg\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .lg\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .lg\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .lg\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .lg\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .lg\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .lg\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .lg\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .lg\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .lg\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .lg\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .lg\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .lg\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .lg\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .lg\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .lg\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .lg\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .lg\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .lg\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .lg\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .lg\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .lg\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .lg\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .lg\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .lg\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .lg\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .lg\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .lg\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .lg\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .lg\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .lg\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .lg\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .lg\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .lg\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .lg\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .lg\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .lg\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .lg\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .lg\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .lg\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .lg\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .lg\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .lg\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .lg\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .lg\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .lg\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .lg\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .lg\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .lg\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .lg\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .lg\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .lg\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .lg\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .lg\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .lg\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .lg\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .lg\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .lg\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .lg\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .lg\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .lg\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .lg\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .lg\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .lg\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .lg\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .lg\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .lg\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .lg\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .lg\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .lg\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .lg\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .lg\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .lg\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .lg\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .lg\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .lg\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .lg\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .lg\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .lg\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .lg\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .lg\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .lg\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .lg\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .lg\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .lg\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .lg\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .lg\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .lg\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .lg\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .lg\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .lg\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .lg\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .lg\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .lg\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .lg\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .lg\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .lg\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .lg\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .lg\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .lg\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .lg\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .lg\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .lg\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .lg\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .lg\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .lg\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .lg\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .lg\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .lg\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .lg\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .lg\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .lg\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .lg\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .lg\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .lg\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .lg\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .lg\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .lg\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .lg\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .lg\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .lg\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .lg\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .lg\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .lg\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .lg\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .lg\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .lg\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .lg\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .lg\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .lg\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .lg\:focus\:via-transparent:focus { @@ -108030,6 +107422,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .lg\:to-transparent { + --tw-gradient-to: transparent; + } + + .lg\:to-current { + --tw-gradient-to: currentColor; + } + + .lg\:to-black { + --tw-gradient-to: #000; + } + + .lg\:to-white { + --tw-gradient-to: #fff; + } + + .lg\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .lg\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .lg\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .lg\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .lg\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .lg\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .lg\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .lg\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .lg\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .lg\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .lg\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .lg\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .lg\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .lg\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .lg\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .lg\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .lg\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .lg\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .lg\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .lg\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .lg\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .lg\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .lg\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .lg\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .lg\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .lg\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .lg\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .lg\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .lg\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .lg\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .lg\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .lg\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .lg\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .lg\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .lg\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .lg\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .lg\:to-green-600 { + --tw-gradient-to: #059669; + } + + .lg\:to-green-700 { + --tw-gradient-to: #047857; + } + + .lg\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .lg\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .lg\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .lg\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .lg\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .lg\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .lg\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .lg\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .lg\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .lg\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .lg\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .lg\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .lg\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .lg\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .lg\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .lg\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .lg\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .lg\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .lg\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .lg\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .lg\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .lg\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .lg\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .lg\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .lg\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .lg\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .lg\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .lg\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .lg\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .lg\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .lg\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .lg\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .lg\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .lg\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .lg\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .lg\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .lg\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .lg\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .lg\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .lg\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .lg\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .lg\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .lg\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .lg\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .lg\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .lg\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .lg\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .lg\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .lg\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .lg\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .lg\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .lg\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .lg\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .lg\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .lg\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .lg\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .lg\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .lg\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .lg\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .lg\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .lg\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .lg\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .lg\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .lg\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .lg\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .lg\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .lg\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .lg\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .lg\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .lg\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .lg\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .lg\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .lg\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .lg\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .lg\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .lg\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .lg\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .lg\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .lg\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .lg\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .lg\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .lg\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .lg\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .lg\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .lg\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .lg\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .lg\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .lg\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .lg\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .lg\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .lg\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .lg\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .lg\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .lg\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .lg\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .lg\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .lg\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .lg\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .lg\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .lg\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .lg\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .lg\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .lg\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .lg\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .lg\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .lg\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .lg\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .lg\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .lg\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .lg\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .lg\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .lg\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .lg\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .lg\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .lg\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .lg\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .lg\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .lg\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .lg\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .lg\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .lg\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .lg\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .lg\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .lg\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .lg\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .lg\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .lg\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -114039,10 +114103,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:ring-inset { - --tw-ring-inset: inset; - } - .lg\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -114079,10 +114139,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .lg\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .lg\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -114119,6 +114175,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .lg\:ring-inset { + --tw-ring-inset: inset; + } + + .lg\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .lg\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -116879,6 +116943,38 @@ video { backdrop-filter: none; } + .lg\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .lg\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .lg\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .lg\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .lg\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .lg\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .lg\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .lg\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .lg\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -117788,116 +117884,541 @@ video { left: -0.375rem; } - .xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .xl\:inset-x-0 { + left: 0px; + right: 0px; + } + + .xl\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .xl\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .xl\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .xl\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .xl\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .xl\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .xl\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .xl\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .xl\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .xl\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .xl\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .xl\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .xl\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .xl\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .xl\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .xl\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .xl\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .xl\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .xl\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .xl\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .xl\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .xl\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .xl\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .xl\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .xl\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .xl\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .xl\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .xl\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .xl\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .xl\:inset-x-auto { + left: auto; + right: auto; + } + + .xl\:inset-x-px { + left: 1px; + right: 1px; + } + + .xl\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .xl\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .xl\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .xl\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .xl\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .xl\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .xl\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .xl\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .xl\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .xl\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .xl\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .xl\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .xl\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .xl\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .xl\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .xl\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .xl\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .xl\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .xl\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .xl\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .xl\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .xl\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .xl\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .xl\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .xl\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .xl\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .xl\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .xl\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .xl\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .xl\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .xl\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .xl\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .xl\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .xl\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .xl\:-inset-x-px { + left: -1px; + right: -1px; + } + + .xl\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .xl\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .xl\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .xl\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .xl\:inset-x-1\/2 { left: 50%; + right: 50%; } - .xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .xl\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .xl\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .xl\:inset-x-1\/4 { left: 25%; + right: 25%; } - .xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .xl\:inset-x-2\/4 { left: 50%; + right: 50%; } - .xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .xl\:inset-x-3\/4 { left: 75%; + right: 75%; } - .xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .xl\:inset-x-full { left: 100%; + right: 100%; } - .xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .xl\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .xl\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .xl\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .xl\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .xl\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .xl\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .xl\:-inset-x-full { left: -100%; + right: -100%; } .xl\:inset-y-0 { @@ -117905,2205 +118426,1780 @@ video { bottom: 0px; } - .xl\:inset-x-0 { - right: 0px; - left: 0px; - } - .xl\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .xl\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .xl\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .xl\:inset-y-4 { top: 1rem; bottom: 1rem; } - .xl\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .xl\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .xl\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .xl\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .xl\:inset-y-8 { top: 2rem; bottom: 2rem; } - .xl\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .xl\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .xl\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .xl\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .xl\:inset-y-12 { top: 3rem; bottom: 3rem; } - .xl\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .xl\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .xl\:inset-y-16 { top: 4rem; bottom: 4rem; } - .xl\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .xl\:inset-y-20 { top: 5rem; bottom: 5rem; } - .xl\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .xl\:inset-y-24 { top: 6rem; bottom: 6rem; } - .xl\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .xl\:inset-y-28 { top: 7rem; bottom: 7rem; } - .xl\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .xl\:inset-y-32 { top: 8rem; bottom: 8rem; } - .xl\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .xl\:inset-y-36 { top: 9rem; bottom: 9rem; } - .xl\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .xl\:inset-y-40 { top: 10rem; bottom: 10rem; } - .xl\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .xl\:inset-y-44 { top: 11rem; bottom: 11rem; } - .xl\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .xl\:inset-y-48 { top: 12rem; bottom: 12rem; } - .xl\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .xl\:inset-y-52 { top: 13rem; bottom: 13rem; } - .xl\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .xl\:inset-y-56 { top: 14rem; bottom: 14rem; } - .xl\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .xl\:inset-y-60 { top: 15rem; bottom: 15rem; } - .xl\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .xl\:inset-y-64 { top: 16rem; bottom: 16rem; } - .xl\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .xl\:inset-y-72 { top: 18rem; bottom: 18rem; } - .xl\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .xl\:inset-y-80 { top: 20rem; bottom: 20rem; } - .xl\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .xl\:inset-y-96 { top: 24rem; bottom: 24rem; } - .xl\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .xl\:inset-y-auto { top: auto; bottom: auto; } - .xl\:inset-x-auto { - right: auto; - left: auto; - } - .xl\:inset-y-px { top: 1px; bottom: 1px; } - .xl\:inset-x-px { - right: 1px; - left: 1px; - } - .xl\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .xl\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .xl\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .xl\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .xl\:-inset-y-0 { top: 0px; bottom: 0px; } - .xl\:-inset-x-0 { - right: 0px; - left: 0px; - } - .xl\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .xl\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .xl\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .xl\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .xl\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .xl\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .xl\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .xl\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .xl\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .xl\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .xl\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .xl\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .xl\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .xl\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .xl\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .xl\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .xl\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .xl\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .xl\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .xl\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .xl\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .xl\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .xl\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .xl\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .xl\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .xl\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .xl\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .xl\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .xl\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .xl\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .xl\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .xl\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .xl\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .xl\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .xl\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .xl\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .xl\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .xl\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .xl\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .xl\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .xl\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .xl\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .xl\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .xl\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .xl\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .xl\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .xl\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .xl\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .xl\:-inset-y-px { top: -1px; bottom: -1px; } - .xl\:-inset-x-px { - right: -1px; - left: -1px; - } - .xl\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .xl\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .xl\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .xl\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .xl\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .xl\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .xl\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .xl\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .xl\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .xl\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .xl\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .xl\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .xl\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .xl\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .xl\:inset-y-full { top: 100%; bottom: 100%; } - .xl\:inset-x-full { - right: 100%; - left: 100%; - } - .xl\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .xl\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .xl\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .xl\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .xl\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .xl\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .xl\:-inset-y-full { top: -100%; bottom: -100%; } - .xl\:-inset-x-full { - right: -100%; - left: -100%; - } - .xl\:top-0 { top: 0px; } - .xl\:right-0 { - right: 0px; + .xl\:top-1 { + top: 0.25rem; } - .xl\:bottom-0 { - bottom: 0px; + .xl\:top-2 { + top: 0.5rem; } - .xl\:left-0 { - left: 0px; + .xl\:top-3 { + top: 0.75rem; } - .xl\:top-1 { - top: 0.25rem; + .xl\:top-4 { + top: 1rem; } - .xl\:right-1 { - right: 0.25rem; + .xl\:top-5 { + top: 1.25rem; } - .xl\:bottom-1 { - bottom: 0.25rem; + .xl\:top-6 { + top: 1.5rem; } - .xl\:left-1 { - left: 0.25rem; + .xl\:top-7 { + top: 1.75rem; } - .xl\:top-2 { - top: 0.5rem; + .xl\:top-8 { + top: 2rem; } - .xl\:right-2 { - right: 0.5rem; + .xl\:top-9 { + top: 2.25rem; } - .xl\:bottom-2 { - bottom: 0.5rem; + .xl\:top-10 { + top: 2.5rem; } - .xl\:left-2 { - left: 0.5rem; + .xl\:top-11 { + top: 2.75rem; } - .xl\:top-3 { - top: 0.75rem; + .xl\:top-12 { + top: 3rem; } - .xl\:right-3 { - right: 0.75rem; + .xl\:top-14 { + top: 3.5rem; } - .xl\:bottom-3 { - bottom: 0.75rem; + .xl\:top-16 { + top: 4rem; } - .xl\:left-3 { - left: 0.75rem; + .xl\:top-20 { + top: 5rem; } - .xl\:top-4 { - top: 1rem; + .xl\:top-24 { + top: 6rem; } - .xl\:right-4 { - right: 1rem; + .xl\:top-28 { + top: 7rem; } - .xl\:bottom-4 { - bottom: 1rem; + .xl\:top-32 { + top: 8rem; } - .xl\:left-4 { - left: 1rem; + .xl\:top-36 { + top: 9rem; } - .xl\:top-5 { - top: 1.25rem; + .xl\:top-40 { + top: 10rem; } - .xl\:right-5 { - right: 1.25rem; + .xl\:top-44 { + top: 11rem; } - .xl\:bottom-5 { - bottom: 1.25rem; + .xl\:top-48 { + top: 12rem; } - .xl\:left-5 { - left: 1.25rem; + .xl\:top-52 { + top: 13rem; } - .xl\:top-6 { - top: 1.5rem; + .xl\:top-56 { + top: 14rem; } - .xl\:right-6 { - right: 1.5rem; + .xl\:top-60 { + top: 15rem; } - .xl\:bottom-6 { - bottom: 1.5rem; + .xl\:top-64 { + top: 16rem; } - .xl\:left-6 { - left: 1.5rem; + .xl\:top-72 { + top: 18rem; } - .xl\:top-7 { - top: 1.75rem; + .xl\:top-80 { + top: 20rem; } - .xl\:right-7 { - right: 1.75rem; + .xl\:top-96 { + top: 24rem; } - .xl\:bottom-7 { - bottom: 1.75rem; + .xl\:top-auto { + top: auto; } - .xl\:left-7 { - left: 1.75rem; + .xl\:top-px { + top: 1px; } - .xl\:top-8 { - top: 2rem; + .xl\:top-0\.5 { + top: 0.125rem; } - .xl\:right-8 { - right: 2rem; + .xl\:top-1\.5 { + top: 0.375rem; } - .xl\:bottom-8 { - bottom: 2rem; + .xl\:top-2\.5 { + top: 0.625rem; } - .xl\:left-8 { - left: 2rem; + .xl\:top-3\.5 { + top: 0.875rem; } - .xl\:top-9 { - top: 2.25rem; + .xl\:-top-0 { + top: 0px; } - .xl\:right-9 { - right: 2.25rem; + .xl\:-top-1 { + top: -0.25rem; } - .xl\:bottom-9 { - bottom: 2.25rem; + .xl\:-top-2 { + top: -0.5rem; } - .xl\:left-9 { - left: 2.25rem; + .xl\:-top-3 { + top: -0.75rem; } - .xl\:top-10 { - top: 2.5rem; + .xl\:-top-4 { + top: -1rem; } - .xl\:right-10 { - right: 2.5rem; + .xl\:-top-5 { + top: -1.25rem; } - .xl\:bottom-10 { - bottom: 2.5rem; + .xl\:-top-6 { + top: -1.5rem; } - .xl\:left-10 { - left: 2.5rem; + .xl\:-top-7 { + top: -1.75rem; } - .xl\:top-11 { - top: 2.75rem; + .xl\:-top-8 { + top: -2rem; } - .xl\:right-11 { - right: 2.75rem; + .xl\:-top-9 { + top: -2.25rem; } - .xl\:bottom-11 { - bottom: 2.75rem; + .xl\:-top-10 { + top: -2.5rem; } - .xl\:left-11 { - left: 2.75rem; + .xl\:-top-11 { + top: -2.75rem; } - .xl\:top-12 { - top: 3rem; + .xl\:-top-12 { + top: -3rem; } - .xl\:right-12 { - right: 3rem; + .xl\:-top-14 { + top: -3.5rem; } - .xl\:bottom-12 { - bottom: 3rem; + .xl\:-top-16 { + top: -4rem; } - .xl\:left-12 { - left: 3rem; + .xl\:-top-20 { + top: -5rem; } - .xl\:top-14 { - top: 3.5rem; + .xl\:-top-24 { + top: -6rem; } - .xl\:right-14 { - right: 3.5rem; + .xl\:-top-28 { + top: -7rem; } - .xl\:bottom-14 { - bottom: 3.5rem; + .xl\:-top-32 { + top: -8rem; } - .xl\:left-14 { - left: 3.5rem; + .xl\:-top-36 { + top: -9rem; } - .xl\:top-16 { - top: 4rem; + .xl\:-top-40 { + top: -10rem; } - .xl\:right-16 { - right: 4rem; + .xl\:-top-44 { + top: -11rem; } - .xl\:bottom-16 { - bottom: 4rem; + .xl\:-top-48 { + top: -12rem; } - .xl\:left-16 { - left: 4rem; + .xl\:-top-52 { + top: -13rem; } - .xl\:top-20 { - top: 5rem; + .xl\:-top-56 { + top: -14rem; } - .xl\:right-20 { - right: 5rem; + .xl\:-top-60 { + top: -15rem; } - .xl\:bottom-20 { - bottom: 5rem; + .xl\:-top-64 { + top: -16rem; } - .xl\:left-20 { - left: 5rem; + .xl\:-top-72 { + top: -18rem; } - .xl\:top-24 { - top: 6rem; + .xl\:-top-80 { + top: -20rem; } - .xl\:right-24 { - right: 6rem; + .xl\:-top-96 { + top: -24rem; } - .xl\:bottom-24 { - bottom: 6rem; + .xl\:-top-px { + top: -1px; } - .xl\:left-24 { - left: 6rem; + .xl\:-top-0\.5 { + top: -0.125rem; } - .xl\:top-28 { - top: 7rem; + .xl\:-top-1\.5 { + top: -0.375rem; } - .xl\:right-28 { - right: 7rem; + .xl\:-top-2\.5 { + top: -0.625rem; } - .xl\:bottom-28 { - bottom: 7rem; + .xl\:-top-3\.5 { + top: -0.875rem; } - .xl\:left-28 { - left: 7rem; + .xl\:top-1\/2 { + top: 50%; } - .xl\:top-32 { - top: 8rem; + .xl\:top-1\/3 { + top: 33.333333%; } - .xl\:right-32 { - right: 8rem; + .xl\:top-2\/3 { + top: 66.666667%; } - .xl\:bottom-32 { - bottom: 8rem; + .xl\:top-1\/4 { + top: 25%; } - .xl\:left-32 { - left: 8rem; + .xl\:top-2\/4 { + top: 50%; } - .xl\:top-36 { - top: 9rem; + .xl\:top-3\/4 { + top: 75%; } - .xl\:right-36 { - right: 9rem; + .xl\:top-full { + top: 100%; } - .xl\:bottom-36 { - bottom: 9rem; + .xl\:-top-1\/2 { + top: -50%; } - .xl\:left-36 { - left: 9rem; + .xl\:-top-1\/3 { + top: -33.333333%; } - .xl\:top-40 { - top: 10rem; + .xl\:-top-2\/3 { + top: -66.666667%; } - .xl\:right-40 { - right: 10rem; + .xl\:-top-1\/4 { + top: -25%; } - .xl\:bottom-40 { - bottom: 10rem; + .xl\:-top-2\/4 { + top: -50%; } - .xl\:left-40 { - left: 10rem; + .xl\:-top-3\/4 { + top: -75%; } - .xl\:top-44 { - top: 11rem; + .xl\:-top-full { + top: -100%; } - .xl\:right-44 { - right: 11rem; + .xl\:right-0 { + right: 0px; } - .xl\:bottom-44 { - bottom: 11rem; + .xl\:right-1 { + right: 0.25rem; } - .xl\:left-44 { - left: 11rem; + .xl\:right-2 { + right: 0.5rem; } - .xl\:top-48 { - top: 12rem; + .xl\:right-3 { + right: 0.75rem; } - .xl\:right-48 { - right: 12rem; + .xl\:right-4 { + right: 1rem; } - .xl\:bottom-48 { - bottom: 12rem; + .xl\:right-5 { + right: 1.25rem; } - .xl\:left-48 { - left: 12rem; + .xl\:right-6 { + right: 1.5rem; } - .xl\:top-52 { - top: 13rem; + .xl\:right-7 { + right: 1.75rem; } - .xl\:right-52 { - right: 13rem; + .xl\:right-8 { + right: 2rem; } - .xl\:bottom-52 { - bottom: 13rem; + .xl\:right-9 { + right: 2.25rem; } - .xl\:left-52 { - left: 13rem; + .xl\:right-10 { + right: 2.5rem; } - .xl\:top-56 { - top: 14rem; + .xl\:right-11 { + right: 2.75rem; } - .xl\:right-56 { - right: 14rem; + .xl\:right-12 { + right: 3rem; } - .xl\:bottom-56 { - bottom: 14rem; + .xl\:right-14 { + right: 3.5rem; } - .xl\:left-56 { - left: 14rem; + .xl\:right-16 { + right: 4rem; } - .xl\:top-60 { - top: 15rem; + .xl\:right-20 { + right: 5rem; } - .xl\:right-60 { - right: 15rem; + .xl\:right-24 { + right: 6rem; } - .xl\:bottom-60 { - bottom: 15rem; + .xl\:right-28 { + right: 7rem; } - .xl\:left-60 { - left: 15rem; + .xl\:right-32 { + right: 8rem; } - .xl\:top-64 { - top: 16rem; + .xl\:right-36 { + right: 9rem; } - .xl\:right-64 { - right: 16rem; + .xl\:right-40 { + right: 10rem; } - .xl\:bottom-64 { - bottom: 16rem; + .xl\:right-44 { + right: 11rem; } - .xl\:left-64 { - left: 16rem; + .xl\:right-48 { + right: 12rem; } - .xl\:top-72 { - top: 18rem; + .xl\:right-52 { + right: 13rem; } - .xl\:right-72 { - right: 18rem; + .xl\:right-56 { + right: 14rem; } - .xl\:bottom-72 { - bottom: 18rem; + .xl\:right-60 { + right: 15rem; } - .xl\:left-72 { - left: 18rem; + .xl\:right-64 { + right: 16rem; } - .xl\:top-80 { - top: 20rem; + .xl\:right-72 { + right: 18rem; } .xl\:right-80 { right: 20rem; } - .xl\:bottom-80 { - bottom: 20rem; + .xl\:right-96 { + right: 24rem; } - .xl\:left-80 { - left: 20rem; + .xl\:right-auto { + right: auto; } - .xl\:top-96 { - top: 24rem; + .xl\:right-px { + right: 1px; } - .xl\:right-96 { - right: 24rem; + .xl\:right-0\.5 { + right: 0.125rem; } - .xl\:bottom-96 { - bottom: 24rem; + .xl\:right-1\.5 { + right: 0.375rem; } - .xl\:left-96 { - left: 24rem; + .xl\:right-2\.5 { + right: 0.625rem; } - .xl\:top-auto { - top: auto; + .xl\:right-3\.5 { + right: 0.875rem; } - .xl\:right-auto { - right: auto; + .xl\:-right-0 { + right: 0px; } - .xl\:bottom-auto { - bottom: auto; + .xl\:-right-1 { + right: -0.25rem; } - .xl\:left-auto { - left: auto; + .xl\:-right-2 { + right: -0.5rem; } - .xl\:top-px { - top: 1px; + .xl\:-right-3 { + right: -0.75rem; } - .xl\:right-px { - right: 1px; + .xl\:-right-4 { + right: -1rem; } - .xl\:bottom-px { - bottom: 1px; + .xl\:-right-5 { + right: -1.25rem; } - .xl\:left-px { - left: 1px; + .xl\:-right-6 { + right: -1.5rem; } - .xl\:top-0\.5 { - top: 0.125rem; + .xl\:-right-7 { + right: -1.75rem; } - .xl\:right-0\.5 { - right: 0.125rem; + .xl\:-right-8 { + right: -2rem; } - .xl\:bottom-0\.5 { - bottom: 0.125rem; + .xl\:-right-9 { + right: -2.25rem; } - .xl\:left-0\.5 { - left: 0.125rem; + .xl\:-right-10 { + right: -2.5rem; } - .xl\:top-1\.5 { - top: 0.375rem; + .xl\:-right-11 { + right: -2.75rem; } - .xl\:right-1\.5 { - right: 0.375rem; + .xl\:-right-12 { + right: -3rem; } - .xl\:bottom-1\.5 { - bottom: 0.375rem; + .xl\:-right-14 { + right: -3.5rem; } - .xl\:left-1\.5 { - left: 0.375rem; + .xl\:-right-16 { + right: -4rem; } - .xl\:top-2\.5 { - top: 0.625rem; + .xl\:-right-20 { + right: -5rem; } - .xl\:right-2\.5 { - right: 0.625rem; + .xl\:-right-24 { + right: -6rem; } - .xl\:bottom-2\.5 { - bottom: 0.625rem; + .xl\:-right-28 { + right: -7rem; } - .xl\:left-2\.5 { - left: 0.625rem; + .xl\:-right-32 { + right: -8rem; } - .xl\:top-3\.5 { - top: 0.875rem; + .xl\:-right-36 { + right: -9rem; } - .xl\:right-3\.5 { - right: 0.875rem; + .xl\:-right-40 { + right: -10rem; } - .xl\:bottom-3\.5 { - bottom: 0.875rem; + .xl\:-right-44 { + right: -11rem; } - .xl\:left-3\.5 { - left: 0.875rem; + .xl\:-right-48 { + right: -12rem; } - .xl\:-top-0 { - top: 0px; + .xl\:-right-52 { + right: -13rem; } - .xl\:-right-0 { - right: 0px; + .xl\:-right-56 { + right: -14rem; } - .xl\:-bottom-0 { - bottom: 0px; + .xl\:-right-60 { + right: -15rem; } - .xl\:-left-0 { - left: 0px; + .xl\:-right-64 { + right: -16rem; } - .xl\:-top-1 { - top: -0.25rem; + .xl\:-right-72 { + right: -18rem; } - .xl\:-right-1 { - right: -0.25rem; + .xl\:-right-80 { + right: -20rem; } - .xl\:-bottom-1 { - bottom: -0.25rem; + .xl\:-right-96 { + right: -24rem; } - .xl\:-left-1 { - left: -0.25rem; + .xl\:-right-px { + right: -1px; } - .xl\:-top-2 { - top: -0.5rem; + .xl\:-right-0\.5 { + right: -0.125rem; } - .xl\:-right-2 { - right: -0.5rem; + .xl\:-right-1\.5 { + right: -0.375rem; } - .xl\:-bottom-2 { - bottom: -0.5rem; + .xl\:-right-2\.5 { + right: -0.625rem; } - .xl\:-left-2 { - left: -0.5rem; + .xl\:-right-3\.5 { + right: -0.875rem; } - .xl\:-top-3 { - top: -0.75rem; + .xl\:right-1\/2 { + right: 50%; } - .xl\:-right-3 { - right: -0.75rem; + .xl\:right-1\/3 { + right: 33.333333%; } - .xl\:-bottom-3 { - bottom: -0.75rem; + .xl\:right-2\/3 { + right: 66.666667%; } - .xl\:-left-3 { - left: -0.75rem; + .xl\:right-1\/4 { + right: 25%; } - .xl\:-top-4 { - top: -1rem; + .xl\:right-2\/4 { + right: 50%; } - .xl\:-right-4 { - right: -1rem; + .xl\:right-3\/4 { + right: 75%; } - .xl\:-bottom-4 { - bottom: -1rem; + .xl\:right-full { + right: 100%; } - .xl\:-left-4 { - left: -1rem; + .xl\:-right-1\/2 { + right: -50%; } - .xl\:-top-5 { - top: -1.25rem; + .xl\:-right-1\/3 { + right: -33.333333%; } - .xl\:-right-5 { - right: -1.25rem; + .xl\:-right-2\/3 { + right: -66.666667%; } - .xl\:-bottom-5 { - bottom: -1.25rem; + .xl\:-right-1\/4 { + right: -25%; } - .xl\:-left-5 { - left: -1.25rem; + .xl\:-right-2\/4 { + right: -50%; } - .xl\:-top-6 { - top: -1.5rem; + .xl\:-right-3\/4 { + right: -75%; } - .xl\:-right-6 { - right: -1.5rem; + .xl\:-right-full { + right: -100%; } - .xl\:-bottom-6 { - bottom: -1.5rem; + .xl\:bottom-0 { + bottom: 0px; } - .xl\:-left-6 { - left: -1.5rem; + .xl\:bottom-1 { + bottom: 0.25rem; } - .xl\:-top-7 { - top: -1.75rem; + .xl\:bottom-2 { + bottom: 0.5rem; } - .xl\:-right-7 { - right: -1.75rem; + .xl\:bottom-3 { + bottom: 0.75rem; } - .xl\:-bottom-7 { - bottom: -1.75rem; + .xl\:bottom-4 { + bottom: 1rem; } - .xl\:-left-7 { - left: -1.75rem; + .xl\:bottom-5 { + bottom: 1.25rem; } - .xl\:-top-8 { - top: -2rem; + .xl\:bottom-6 { + bottom: 1.5rem; } - .xl\:-right-8 { - right: -2rem; + .xl\:bottom-7 { + bottom: 1.75rem; } - .xl\:-bottom-8 { - bottom: -2rem; + .xl\:bottom-8 { + bottom: 2rem; } - .xl\:-left-8 { - left: -2rem; + .xl\:bottom-9 { + bottom: 2.25rem; } - .xl\:-top-9 { - top: -2.25rem; + .xl\:bottom-10 { + bottom: 2.5rem; } - .xl\:-right-9 { - right: -2.25rem; + .xl\:bottom-11 { + bottom: 2.75rem; } - .xl\:-bottom-9 { - bottom: -2.25rem; + .xl\:bottom-12 { + bottom: 3rem; } - .xl\:-left-9 { - left: -2.25rem; + .xl\:bottom-14 { + bottom: 3.5rem; } - .xl\:-top-10 { - top: -2.5rem; + .xl\:bottom-16 { + bottom: 4rem; } - .xl\:-right-10 { - right: -2.5rem; + .xl\:bottom-20 { + bottom: 5rem; } - .xl\:-bottom-10 { - bottom: -2.5rem; + .xl\:bottom-24 { + bottom: 6rem; } - .xl\:-left-10 { - left: -2.5rem; + .xl\:bottom-28 { + bottom: 7rem; } - .xl\:-top-11 { - top: -2.75rem; + .xl\:bottom-32 { + bottom: 8rem; } - .xl\:-right-11 { - right: -2.75rem; + .xl\:bottom-36 { + bottom: 9rem; } - .xl\:-bottom-11 { - bottom: -2.75rem; + .xl\:bottom-40 { + bottom: 10rem; } - .xl\:-left-11 { - left: -2.75rem; + .xl\:bottom-44 { + bottom: 11rem; } - .xl\:-top-12 { - top: -3rem; + .xl\:bottom-48 { + bottom: 12rem; } - .xl\:-right-12 { - right: -3rem; + .xl\:bottom-52 { + bottom: 13rem; } - .xl\:-bottom-12 { - bottom: -3rem; + .xl\:bottom-56 { + bottom: 14rem; } - .xl\:-left-12 { - left: -3rem; + .xl\:bottom-60 { + bottom: 15rem; } - .xl\:-top-14 { - top: -3.5rem; + .xl\:bottom-64 { + bottom: 16rem; } - .xl\:-right-14 { - right: -3.5rem; + .xl\:bottom-72 { + bottom: 18rem; } - .xl\:-bottom-14 { - bottom: -3.5rem; + .xl\:bottom-80 { + bottom: 20rem; } - .xl\:-left-14 { - left: -3.5rem; + .xl\:bottom-96 { + bottom: 24rem; } - .xl\:-top-16 { - top: -4rem; + .xl\:bottom-auto { + bottom: auto; } - .xl\:-right-16 { - right: -4rem; + .xl\:bottom-px { + bottom: 1px; } - .xl\:-bottom-16 { - bottom: -4rem; + .xl\:bottom-0\.5 { + bottom: 0.125rem; } - .xl\:-left-16 { - left: -4rem; + .xl\:bottom-1\.5 { + bottom: 0.375rem; } - .xl\:-top-20 { - top: -5rem; + .xl\:bottom-2\.5 { + bottom: 0.625rem; } - .xl\:-right-20 { - right: -5rem; + .xl\:bottom-3\.5 { + bottom: 0.875rem; } - .xl\:-bottom-20 { - bottom: -5rem; + .xl\:-bottom-0 { + bottom: 0px; } - .xl\:-left-20 { - left: -5rem; + .xl\:-bottom-1 { + bottom: -0.25rem; } - .xl\:-top-24 { - top: -6rem; + .xl\:-bottom-2 { + bottom: -0.5rem; } - .xl\:-right-24 { - right: -6rem; + .xl\:-bottom-3 { + bottom: -0.75rem; } - .xl\:-bottom-24 { - bottom: -6rem; + .xl\:-bottom-4 { + bottom: -1rem; } - .xl\:-left-24 { - left: -6rem; + .xl\:-bottom-5 { + bottom: -1.25rem; } - .xl\:-top-28 { - top: -7rem; + .xl\:-bottom-6 { + bottom: -1.5rem; } - .xl\:-right-28 { - right: -7rem; + .xl\:-bottom-7 { + bottom: -1.75rem; } - .xl\:-bottom-28 { - bottom: -7rem; + .xl\:-bottom-8 { + bottom: -2rem; } - .xl\:-left-28 { - left: -7rem; + .xl\:-bottom-9 { + bottom: -2.25rem; } - .xl\:-top-32 { - top: -8rem; + .xl\:-bottom-10 { + bottom: -2.5rem; } - .xl\:-right-32 { - right: -8rem; + .xl\:-bottom-11 { + bottom: -2.75rem; } - .xl\:-bottom-32 { - bottom: -8rem; + .xl\:-bottom-12 { + bottom: -3rem; } - .xl\:-left-32 { - left: -8rem; + .xl\:-bottom-14 { + bottom: -3.5rem; } - .xl\:-top-36 { - top: -9rem; + .xl\:-bottom-16 { + bottom: -4rem; } - .xl\:-right-36 { - right: -9rem; + .xl\:-bottom-20 { + bottom: -5rem; } - .xl\:-bottom-36 { - bottom: -9rem; + .xl\:-bottom-24 { + bottom: -6rem; } - .xl\:-left-36 { - left: -9rem; + .xl\:-bottom-28 { + bottom: -7rem; } - .xl\:-top-40 { - top: -10rem; + .xl\:-bottom-32 { + bottom: -8rem; } - .xl\:-right-40 { - right: -10rem; + .xl\:-bottom-36 { + bottom: -9rem; } .xl\:-bottom-40 { bottom: -10rem; } - .xl\:-left-40 { - left: -10rem; + .xl\:-bottom-44 { + bottom: -11rem; } - .xl\:-top-44 { - top: -11rem; + .xl\:-bottom-48 { + bottom: -12rem; } - .xl\:-right-44 { - right: -11rem; + .xl\:-bottom-52 { + bottom: -13rem; } - .xl\:-bottom-44 { - bottom: -11rem; + .xl\:-bottom-56 { + bottom: -14rem; } - .xl\:-left-44 { - left: -11rem; + .xl\:-bottom-60 { + bottom: -15rem; } - .xl\:-top-48 { - top: -12rem; + .xl\:-bottom-64 { + bottom: -16rem; } - .xl\:-right-48 { - right: -12rem; + .xl\:-bottom-72 { + bottom: -18rem; } - .xl\:-bottom-48 { - bottom: -12rem; + .xl\:-bottom-80 { + bottom: -20rem; } - .xl\:-left-48 { - left: -12rem; + .xl\:-bottom-96 { + bottom: -24rem; } - .xl\:-top-52 { - top: -13rem; + .xl\:-bottom-px { + bottom: -1px; } - .xl\:-right-52 { - right: -13rem; + .xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .xl\:-bottom-52 { - bottom: -13rem; + .xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .xl\:-left-52 { - left: -13rem; + .xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .xl\:-top-56 { - top: -14rem; + .xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .xl\:-right-56 { - right: -14rem; + .xl\:bottom-1\/2 { + bottom: 50%; } - .xl\:-bottom-56 { - bottom: -14rem; + .xl\:bottom-1\/3 { + bottom: 33.333333%; } - .xl\:-left-56 { - left: -14rem; + .xl\:bottom-2\/3 { + bottom: 66.666667%; } - .xl\:-top-60 { - top: -15rem; + .xl\:bottom-1\/4 { + bottom: 25%; } - .xl\:-right-60 { - right: -15rem; + .xl\:bottom-2\/4 { + bottom: 50%; } - .xl\:-bottom-60 { - bottom: -15rem; + .xl\:bottom-3\/4 { + bottom: 75%; } - .xl\:-left-60 { - left: -15rem; + .xl\:bottom-full { + bottom: 100%; } - .xl\:-top-64 { - top: -16rem; + .xl\:-bottom-1\/2 { + bottom: -50%; } - .xl\:-right-64 { - right: -16rem; + .xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .xl\:-bottom-64 { - bottom: -16rem; + .xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .xl\:-left-64 { - left: -16rem; + .xl\:-bottom-1\/4 { + bottom: -25%; } - .xl\:-top-72 { - top: -18rem; + .xl\:-bottom-2\/4 { + bottom: -50%; } - .xl\:-right-72 { - right: -18rem; + .xl\:-bottom-3\/4 { + bottom: -75%; } - .xl\:-bottom-72 { - bottom: -18rem; + .xl\:-bottom-full { + bottom: -100%; } - .xl\:-left-72 { - left: -18rem; + .xl\:left-0 { + left: 0px; } - .xl\:-top-80 { - top: -20rem; + .xl\:left-1 { + left: 0.25rem; } - .xl\:-right-80 { - right: -20rem; + .xl\:left-2 { + left: 0.5rem; } - .xl\:-bottom-80 { - bottom: -20rem; + .xl\:left-3 { + left: 0.75rem; } - .xl\:-left-80 { - left: -20rem; + .xl\:left-4 { + left: 1rem; } - .xl\:-top-96 { - top: -24rem; + .xl\:left-5 { + left: 1.25rem; } - .xl\:-right-96 { - right: -24rem; + .xl\:left-6 { + left: 1.5rem; } - .xl\:-bottom-96 { - bottom: -24rem; + .xl\:left-7 { + left: 1.75rem; } - .xl\:-left-96 { - left: -24rem; + .xl\:left-8 { + left: 2rem; } - .xl\:-top-px { - top: -1px; + .xl\:left-9 { + left: 2.25rem; } - .xl\:-right-px { - right: -1px; + .xl\:left-10 { + left: 2.5rem; } - .xl\:-bottom-px { - bottom: -1px; + .xl\:left-11 { + left: 2.75rem; } - .xl\:-left-px { - left: -1px; + .xl\:left-12 { + left: 3rem; } - .xl\:-top-0\.5 { - top: -0.125rem; + .xl\:left-14 { + left: 3.5rem; } - .xl\:-right-0\.5 { - right: -0.125rem; + .xl\:left-16 { + left: 4rem; } - .xl\:-bottom-0\.5 { - bottom: -0.125rem; + .xl\:left-20 { + left: 5rem; } - .xl\:-left-0\.5 { - left: -0.125rem; + .xl\:left-24 { + left: 6rem; } - .xl\:-top-1\.5 { - top: -0.375rem; + .xl\:left-28 { + left: 7rem; } - .xl\:-right-1\.5 { - right: -0.375rem; + .xl\:left-32 { + left: 8rem; } - .xl\:-bottom-1\.5 { - bottom: -0.375rem; + .xl\:left-36 { + left: 9rem; } - .xl\:-left-1\.5 { - left: -0.375rem; + .xl\:left-40 { + left: 10rem; } - .xl\:-top-2\.5 { - top: -0.625rem; + .xl\:left-44 { + left: 11rem; } - .xl\:-right-2\.5 { - right: -0.625rem; + .xl\:left-48 { + left: 12rem; } - .xl\:-bottom-2\.5 { - bottom: -0.625rem; + .xl\:left-52 { + left: 13rem; } - .xl\:-left-2\.5 { - left: -0.625rem; + .xl\:left-56 { + left: 14rem; } - .xl\:-top-3\.5 { - top: -0.875rem; + .xl\:left-60 { + left: 15rem; } - .xl\:-right-3\.5 { - right: -0.875rem; + .xl\:left-64 { + left: 16rem; } - .xl\:-bottom-3\.5 { - bottom: -0.875rem; + .xl\:left-72 { + left: 18rem; } - .xl\:-left-3\.5 { - left: -0.875rem; + .xl\:left-80 { + left: 20rem; } - .xl\:top-1\/2 { - top: 50%; + .xl\:left-96 { + left: 24rem; } - .xl\:right-1\/2 { - right: 50%; + .xl\:left-auto { + left: auto; } - .xl\:bottom-1\/2 { - bottom: 50%; + .xl\:left-px { + left: 1px; } - .xl\:left-1\/2 { - left: 50%; + .xl\:left-0\.5 { + left: 0.125rem; } - .xl\:top-1\/3 { - top: 33.333333%; + .xl\:left-1\.5 { + left: 0.375rem; } - .xl\:right-1\/3 { - right: 33.333333%; + .xl\:left-2\.5 { + left: 0.625rem; } - .xl\:bottom-1\/3 { - bottom: 33.333333%; + .xl\:left-3\.5 { + left: 0.875rem; } - .xl\:left-1\/3 { - left: 33.333333%; + .xl\:-left-0 { + left: 0px; } - .xl\:top-2\/3 { - top: 66.666667%; + .xl\:-left-1 { + left: -0.25rem; } - .xl\:right-2\/3 { - right: 66.666667%; + .xl\:-left-2 { + left: -0.5rem; } - .xl\:bottom-2\/3 { - bottom: 66.666667%; + .xl\:-left-3 { + left: -0.75rem; } - .xl\:left-2\/3 { - left: 66.666667%; + .xl\:-left-4 { + left: -1rem; } - .xl\:top-1\/4 { - top: 25%; + .xl\:-left-5 { + left: -1.25rem; } - .xl\:right-1\/4 { - right: 25%; + .xl\:-left-6 { + left: -1.5rem; } - .xl\:bottom-1\/4 { - bottom: 25%; + .xl\:-left-7 { + left: -1.75rem; } - .xl\:left-1\/4 { - left: 25%; + .xl\:-left-8 { + left: -2rem; } - .xl\:top-2\/4 { - top: 50%; + .xl\:-left-9 { + left: -2.25rem; } - .xl\:right-2\/4 { - right: 50%; + .xl\:-left-10 { + left: -2.5rem; } - .xl\:bottom-2\/4 { - bottom: 50%; + .xl\:-left-11 { + left: -2.75rem; } - .xl\:left-2\/4 { - left: 50%; + .xl\:-left-12 { + left: -3rem; } - .xl\:top-3\/4 { - top: 75%; + .xl\:-left-14 { + left: -3.5rem; } - .xl\:right-3\/4 { - right: 75%; + .xl\:-left-16 { + left: -4rem; } - .xl\:bottom-3\/4 { - bottom: 75%; + .xl\:-left-20 { + left: -5rem; } - .xl\:left-3\/4 { - left: 75%; + .xl\:-left-24 { + left: -6rem; } - .xl\:top-full { - top: 100%; + .xl\:-left-28 { + left: -7rem; } - .xl\:right-full { - right: 100%; + .xl\:-left-32 { + left: -8rem; } - .xl\:bottom-full { - bottom: 100%; + .xl\:-left-36 { + left: -9rem; } - .xl\:left-full { - left: 100%; + .xl\:-left-40 { + left: -10rem; } - .xl\:-top-1\/2 { - top: -50%; + .xl\:-left-44 { + left: -11rem; } - .xl\:-right-1\/2 { - right: -50%; + .xl\:-left-48 { + left: -12rem; } - .xl\:-bottom-1\/2 { - bottom: -50%; + .xl\:-left-52 { + left: -13rem; } - .xl\:-left-1\/2 { - left: -50%; + .xl\:-left-56 { + left: -14rem; } - .xl\:-top-1\/3 { - top: -33.333333%; + .xl\:-left-60 { + left: -15rem; } - .xl\:-right-1\/3 { - right: -33.333333%; + .xl\:-left-64 { + left: -16rem; } - .xl\:-bottom-1\/3 { - bottom: -33.333333%; + .xl\:-left-72 { + left: -18rem; } - .xl\:-left-1\/3 { - left: -33.333333%; + .xl\:-left-80 { + left: -20rem; } - .xl\:-top-2\/3 { - top: -66.666667%; + .xl\:-left-96 { + left: -24rem; } - .xl\:-right-2\/3 { - right: -66.666667%; + .xl\:-left-px { + left: -1px; } - .xl\:-bottom-2\/3 { - bottom: -66.666667%; + .xl\:-left-0\.5 { + left: -0.125rem; } - .xl\:-left-2\/3 { - left: -66.666667%; + .xl\:-left-1\.5 { + left: -0.375rem; } - .xl\:-top-1\/4 { - top: -25%; + .xl\:-left-2\.5 { + left: -0.625rem; } - .xl\:-right-1\/4 { - right: -25%; + .xl\:-left-3\.5 { + left: -0.875rem; } - .xl\:-bottom-1\/4 { - bottom: -25%; + .xl\:left-1\/2 { + left: 50%; } - .xl\:-left-1\/4 { - left: -25%; + .xl\:left-1\/3 { + left: 33.333333%; } - .xl\:-top-2\/4 { - top: -50%; + .xl\:left-2\/3 { + left: 66.666667%; } - .xl\:-right-2\/4 { - right: -50%; + .xl\:left-1\/4 { + left: 25%; } - .xl\:-bottom-2\/4 { - bottom: -50%; + .xl\:left-2\/4 { + left: 50%; } - .xl\:-left-2\/4 { - left: -50%; + .xl\:left-3\/4 { + left: 75%; } - .xl\:-top-3\/4 { - top: -75%; + .xl\:left-full { + left: 100%; } - .xl\:-right-3\/4 { - right: -75%; + .xl\:-left-1\/2 { + left: -50%; } - .xl\:-bottom-3\/4 { - bottom: -75%; + .xl\:-left-1\/3 { + left: -33.333333%; } - .xl\:-left-3\/4 { - left: -75%; + .xl\:-left-2\/3 { + left: -66.666667%; } - .xl\:-top-full { - top: -100%; + .xl\:-left-1\/4 { + left: -25%; } - .xl\:-right-full { - right: -100%; + .xl\:-left-2\/4 { + left: -50%; } - .xl\:-bottom-full { - bottom: -100%; + .xl\:-left-3\/4 { + left: -75%; } .xl\:-left-full { @@ -126160,133 +126256,183 @@ video { --tw-scale-y: 1.5; } - .xl\:scale-x-0 { + .xl\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .xl\:scale-x-50 { + .xl\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .xl\:scale-x-75 { + .xl\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .xl\:scale-x-90 { + .xl\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .xl\:scale-x-95 { + .xl\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .xl\:scale-x-100 { + .xl\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .xl\:scale-x-105 { + .xl\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .xl\:scale-x-110 { + .xl\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .xl\:scale-x-125 { + .xl\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .xl\:scale-x-150 { + .xl\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .xl\:scale-y-0 { + .xl\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .xl\:scale-y-50 { + .xl\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .xl\:scale-y-75 { + .xl\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .xl\:scale-y-90 { + .xl\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .xl\:scale-y-95 { + .xl\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .xl\:scale-y-100 { + .xl\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .xl\:scale-y-105 { + .xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .xl\:scale-y-110 { + .xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .xl\:scale-y-125 { + .xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .xl\:scale-y-150 { + .xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .xl\:hover\:scale-0:hover { + .xl\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .xl\:hover\:scale-50:hover { + .xl\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .xl\:hover\:scale-75:hover { + .xl\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .xl\:hover\:scale-90:hover { + .xl\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .xl\:hover\:scale-95:hover { + .xl\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .xl\:hover\:scale-100:hover { + .xl\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .xl\:hover\:scale-105:hover { + .xl\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .xl\:hover\:scale-110:hover { + .xl\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .xl\:hover\:scale-125:hover { + .xl\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .xl\:hover\:scale-150:hover { + .xl\:scale-x-150 { --tw-scale-x: 1.5; + } + + .xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .xl\:scale-y-150 { --tw-scale-y: 1.5; } @@ -126370,56 +126516,6 @@ video { --tw-scale-y: 1.5; } - .xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .xl\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -127312,436 +127408,640 @@ video { row-gap: 0.875rem; } - .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -127750,408 +128050,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -128160,66 +128256,66 @@ video { --tw-space-x-reverse: 1; } - .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .xl\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -134633,2188 +134729,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .xl\:to-transparent { - --tw-gradient-to: transparent; + .xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:to-current { - --tw-gradient-to: currentColor; + .xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:to-black { - --tw-gradient-to: #000; + .xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:to-white { - --tw-gradient-to: #fff; + .xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:to-gray-700 { - --tw-gradient-to: #374151; + .xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:to-gray-900 { - --tw-gradient-to: #111827; + .xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:to-red-400 { - --tw-gradient-to: #f87171; + .xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:to-green-400 { - --tw-gradient-to: #34d399; + .xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:to-green-500 { - --tw-gradient-to: #10b981; + .xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:to-green-600 { - --tw-gradient-to: #059669; + .xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:to-green-700 { - --tw-gradient-to: #047857; + .xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:to-green-800 { - --tw-gradient-to: #065f46; + .xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:to-pink-900 { - --tw-gradient-to: #831843; + .xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:hover\:from-transparent:hover { + .xl\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:from-current:hover { + .xl\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:from-black:hover { + .xl\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:from-white:hover { + .xl\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:from-gray-50:hover { + .xl\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:hover\:from-gray-100:hover { + .xl\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:hover\:from-gray-200:hover { + .xl\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:hover\:from-gray-300:hover { + .xl\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:hover\:from-gray-400:hover { + .xl\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:hover\:from-gray-500:hover { + .xl\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:hover\:from-gray-600:hover { + .xl\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:hover\:from-gray-700:hover { + .xl\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:hover\:from-gray-800:hover { + .xl\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:hover\:from-gray-900:hover { + .xl\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:hover\:from-red-50:hover { + .xl\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:hover\:from-red-100:hover { + .xl\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:hover\:from-red-200:hover { + .xl\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:hover\:from-red-300:hover { + .xl\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:hover\:from-red-400:hover { + .xl\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:hover\:from-red-500:hover { + .xl\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:hover\:from-red-600:hover { + .xl\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:hover\:from-red-700:hover { + .xl\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:hover\:from-red-800:hover { + .xl\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:hover\:from-red-900:hover { + .xl\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:hover\:from-yellow-50:hover { + .xl\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:hover\:from-yellow-100:hover { + .xl\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:hover\:from-yellow-200:hover { + .xl\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:hover\:from-yellow-300:hover { + .xl\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:hover\:from-yellow-400:hover { + .xl\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:hover\:from-yellow-500:hover { + .xl\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:hover\:from-yellow-600:hover { + .xl\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:hover\:from-yellow-700:hover { + .xl\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:hover\:from-yellow-800:hover { + .xl\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:hover\:from-yellow-900:hover { + .xl\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:hover\:from-green-50:hover { + .xl\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:hover\:from-green-100:hover { + .xl\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:hover\:from-green-200:hover { + .xl\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:hover\:from-green-300:hover { + .xl\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:hover\:from-green-400:hover { + .xl\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:hover\:from-green-500:hover { + .xl\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:hover\:from-green-600:hover { + .xl\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:hover\:from-green-700:hover { + .xl\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:hover\:from-green-800:hover { + .xl\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:hover\:from-green-900:hover { + .xl\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:hover\:from-blue-50:hover { + .xl\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:hover\:from-blue-100:hover { + .xl\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:hover\:from-blue-200:hover { + .xl\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:hover\:from-blue-300:hover { + .xl\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:hover\:from-blue-400:hover { + .xl\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:hover\:from-blue-500:hover { + .xl\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:hover\:from-blue-600:hover { + .xl\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:hover\:from-blue-700:hover { + .xl\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:hover\:from-blue-800:hover { + .xl\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:hover\:from-blue-900:hover { + .xl\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:hover\:from-indigo-50:hover { + .xl\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:hover\:from-indigo-100:hover { + .xl\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:hover\:from-indigo-200:hover { + .xl\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:hover\:from-indigo-300:hover { + .xl\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:hover\:from-indigo-400:hover { + .xl\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:hover\:from-indigo-500:hover { + .xl\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:hover\:from-indigo-600:hover { + .xl\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:hover\:from-indigo-700:hover { + .xl\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:hover\:from-indigo-800:hover { + .xl\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:hover\:from-indigo-900:hover { + .xl\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:hover\:from-purple-50:hover { + .xl\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:hover\:from-purple-100:hover { + .xl\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:hover\:from-purple-200:hover { + .xl\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:hover\:from-purple-300:hover { + .xl\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:hover\:from-purple-400:hover { + .xl\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:hover\:from-purple-500:hover { + .xl\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:hover\:from-purple-600:hover { + .xl\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:hover\:from-purple-700:hover { + .xl\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:hover\:from-purple-800:hover { + .xl\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:hover\:from-purple-900:hover { + .xl\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:hover\:from-pink-50:hover { + .xl\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:hover\:from-pink-100:hover { + .xl\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:hover\:from-pink-200:hover { + .xl\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:hover\:from-pink-300:hover { + .xl\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:hover\:from-pink-400:hover { + .xl\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:hover\:from-pink-500:hover { + .xl\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:hover\:from-pink-600:hover { + .xl\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:hover\:from-pink-700:hover { + .xl\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:hover\:from-pink-800:hover { + .xl\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:hover\:from-pink-900:hover { + .xl\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:hover\:via-transparent:hover { + .xl\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:via-current:hover { + .xl\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:via-black:hover { + .xl\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:hover\:via-white:hover { + .xl\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:hover\:via-gray-50:hover { + .xl\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:hover\:via-gray-100:hover { + .xl\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:hover\:via-gray-200:hover { + .xl\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:hover\:via-gray-300:hover { + .xl\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:hover\:via-gray-400:hover { + .xl\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:hover\:via-gray-500:hover { + .xl\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:hover\:via-gray-600:hover { + .xl\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:hover\:via-gray-700:hover { + .xl\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:hover\:via-gray-800:hover { + .xl\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:hover\:via-gray-900:hover { + .xl\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:hover\:via-red-50:hover { + .xl\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:hover\:via-red-100:hover { + .xl\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:hover\:via-red-200:hover { + .xl\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:hover\:via-red-300:hover { + .xl\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:hover\:via-red-400:hover { + .xl\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:hover\:via-red-500:hover { + .xl\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:hover\:via-red-600:hover { + .xl\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:hover\:via-red-700:hover { + .xl\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:hover\:via-red-800:hover { + .xl\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:hover\:via-red-900:hover { + .xl\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:hover\:via-yellow-50:hover { + .xl\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:hover\:via-yellow-100:hover { + .xl\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:hover\:via-yellow-200:hover { + .xl\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:hover\:via-yellow-300:hover { + .xl\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:hover\:via-yellow-400:hover { + .xl\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:hover\:via-yellow-500:hover { + .xl\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:hover\:via-yellow-600:hover { + .xl\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:hover\:via-yellow-700:hover { + .xl\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:hover\:via-yellow-800:hover { + .xl\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:hover\:via-yellow-900:hover { + .xl\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:hover\:via-green-50:hover { + .xl\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:hover\:via-green-100:hover { + .xl\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:hover\:via-green-200:hover { + .xl\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:hover\:via-green-300:hover { + .xl\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:hover\:via-green-400:hover { + .xl\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:hover\:via-green-500:hover { + .xl\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:hover\:via-green-600:hover { + .xl\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:hover\:via-green-700:hover { + .xl\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:hover\:via-green-800:hover { + .xl\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:hover\:via-green-900:hover { + .xl\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:hover\:via-blue-50:hover { + .xl\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:hover\:via-blue-100:hover { + .xl\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:hover\:via-blue-200:hover { + .xl\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:hover\:via-blue-300:hover { + .xl\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:hover\:via-blue-400:hover { + .xl\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:hover\:via-blue-500:hover { + .xl\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:hover\:via-blue-600:hover { + .xl\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:hover\:via-blue-700:hover { + .xl\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:hover\:via-blue-800:hover { + .xl\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:hover\:via-blue-900:hover { + .xl\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:hover\:via-indigo-50:hover { + .xl\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:hover\:via-indigo-100:hover { + .xl\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:hover\:via-indigo-200:hover { + .xl\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:hover\:via-indigo-300:hover { + .xl\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:hover\:via-indigo-400:hover { + .xl\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:hover\:via-indigo-500:hover { + .xl\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:hover\:via-indigo-600:hover { + .xl\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:hover\:via-indigo-700:hover { + .xl\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:hover\:via-indigo-800:hover { + .xl\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:hover\:via-indigo-900:hover { + .xl\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:hover\:via-purple-50:hover { + .xl\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:hover\:via-purple-100:hover { + .xl\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:hover\:via-purple-200:hover { + .xl\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:hover\:via-purple-300:hover { + .xl\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:hover\:via-purple-400:hover { + .xl\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:hover\:via-purple-500:hover { + .xl\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:hover\:via-purple-600:hover { + .xl\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:hover\:via-purple-700:hover { + .xl\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:hover\:via-purple-800:hover { + .xl\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:hover\:via-purple-900:hover { + .xl\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:hover\:via-pink-50:hover { + .xl\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:hover\:via-pink-100:hover { + .xl\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:hover\:via-pink-200:hover { + .xl\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:hover\:via-pink-300:hover { + .xl\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:hover\:via-pink-400:hover { + .xl\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:hover\:via-pink-500:hover { + .xl\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:hover\:via-pink-600:hover { + .xl\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:hover\:via-pink-700:hover { + .xl\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:hover\:via-pink-800:hover { + .xl\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:hover\:via-pink-900:hover { + .xl\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .xl\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .xl\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .xl\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .xl\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .xl\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .xl\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .xl\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .xl\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .xl\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .xl\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .xl\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .xl\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .xl\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .xl\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .xl\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .xl\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .xl\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .xl\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .xl\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .xl\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .xl\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .xl\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .xl\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .xl\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .xl\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .xl\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .xl\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .xl\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .xl\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .xl\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .xl\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .xl\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .xl\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .xl\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .xl\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .xl\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .xl\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .xl\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .xl\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .xl\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .xl\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .xl\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .xl\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .xl\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .xl\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .xl\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .xl\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .xl\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .xl\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .xl\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .xl\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .xl\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .xl\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .xl\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .xl\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .xl\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .xl\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .xl\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .xl\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .xl\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .xl\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .xl\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .xl\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .xl\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .xl\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .xl\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .xl\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .xl\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .xl\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .xl\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .xl\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .xl\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .xl\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .xl\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .xl\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .xl\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .xl\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .xl\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .xl\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .xl\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .xl\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .xl\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .xl\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .xl\:focus\:via-transparent:focus { @@ -137153,6 +136577,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .xl\:to-current { + --tw-gradient-to: currentColor; + } + + .xl\:to-black { + --tw-gradient-to: #000; + } + + .xl\:to-white { + --tw-gradient-to: #fff; + } + + .xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .xl\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .xl\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .xl\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .xl\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .xl\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .xl\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .xl\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .xl\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .xl\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .xl\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .xl\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .xl\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .xl\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .xl\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .xl\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .xl\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .xl\:to-green-600 { + --tw-gradient-to: #059669; + } + + .xl\:to-green-700 { + --tw-gradient-to: #047857; + } + + .xl\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .xl\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .xl\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .xl\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .xl\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .xl\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .xl\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .xl\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .xl\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .xl\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .xl\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .xl\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -143162,10 +143258,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:ring-inset { - --tw-ring-inset: inset; - } - .xl\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -143202,10 +143294,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .xl\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .xl\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -143242,6 +143330,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .xl\:ring-inset { + --tw-ring-inset: inset; + } + + .xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .xl\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -146002,6 +146098,38 @@ video { backdrop-filter: none; } + .xl\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .xl\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .xl\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .xl\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .xl\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .xl\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .xl\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .xl\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .xl\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } @@ -146911,116 +147039,541 @@ video { left: -0.375rem; } - .\32xl\:-inset-2\.5 { - top: -0.625rem; - right: -0.625rem; - bottom: -0.625rem; + .\32xl\:-inset-2\.5 { + top: -0.625rem; + right: -0.625rem; + bottom: -0.625rem; + left: -0.625rem; + } + + .\32xl\:-inset-3\.5 { + top: -0.875rem; + right: -0.875rem; + bottom: -0.875rem; + left: -0.875rem; + } + + .\32xl\:inset-1\/2 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-1\/3 { + top: 33.333333%; + right: 33.333333%; + bottom: 33.333333%; + left: 33.333333%; + } + + .\32xl\:inset-2\/3 { + top: 66.666667%; + right: 66.666667%; + bottom: 66.666667%; + left: 66.666667%; + } + + .\32xl\:inset-1\/4 { + top: 25%; + right: 25%; + bottom: 25%; + left: 25%; + } + + .\32xl\:inset-2\/4 { + top: 50%; + right: 50%; + bottom: 50%; + left: 50%; + } + + .\32xl\:inset-3\/4 { + top: 75%; + right: 75%; + bottom: 75%; + left: 75%; + } + + .\32xl\:inset-full { + top: 100%; + right: 100%; + bottom: 100%; + left: 100%; + } + + .\32xl\:-inset-1\/2 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-1\/3 { + top: -33.333333%; + right: -33.333333%; + bottom: -33.333333%; + left: -33.333333%; + } + + .\32xl\:-inset-2\/3 { + top: -66.666667%; + right: -66.666667%; + bottom: -66.666667%; + left: -66.666667%; + } + + .\32xl\:-inset-1\/4 { + top: -25%; + right: -25%; + bottom: -25%; + left: -25%; + } + + .\32xl\:-inset-2\/4 { + top: -50%; + right: -50%; + bottom: -50%; + left: -50%; + } + + .\32xl\:-inset-3\/4 { + top: -75%; + right: -75%; + bottom: -75%; + left: -75%; + } + + .\32xl\:-inset-full { + top: -100%; + right: -100%; + bottom: -100%; + left: -100%; + } + + .\32xl\:inset-x-0 { + left: 0px; + right: 0px; + } + + .\32xl\:inset-x-1 { + left: 0.25rem; + right: 0.25rem; + } + + .\32xl\:inset-x-2 { + left: 0.5rem; + right: 0.5rem; + } + + .\32xl\:inset-x-3 { + left: 0.75rem; + right: 0.75rem; + } + + .\32xl\:inset-x-4 { + left: 1rem; + right: 1rem; + } + + .\32xl\:inset-x-5 { + left: 1.25rem; + right: 1.25rem; + } + + .\32xl\:inset-x-6 { + left: 1.5rem; + right: 1.5rem; + } + + .\32xl\:inset-x-7 { + left: 1.75rem; + right: 1.75rem; + } + + .\32xl\:inset-x-8 { + left: 2rem; + right: 2rem; + } + + .\32xl\:inset-x-9 { + left: 2.25rem; + right: 2.25rem; + } + + .\32xl\:inset-x-10 { + left: 2.5rem; + right: 2.5rem; + } + + .\32xl\:inset-x-11 { + left: 2.75rem; + right: 2.75rem; + } + + .\32xl\:inset-x-12 { + left: 3rem; + right: 3rem; + } + + .\32xl\:inset-x-14 { + left: 3.5rem; + right: 3.5rem; + } + + .\32xl\:inset-x-16 { + left: 4rem; + right: 4rem; + } + + .\32xl\:inset-x-20 { + left: 5rem; + right: 5rem; + } + + .\32xl\:inset-x-24 { + left: 6rem; + right: 6rem; + } + + .\32xl\:inset-x-28 { + left: 7rem; + right: 7rem; + } + + .\32xl\:inset-x-32 { + left: 8rem; + right: 8rem; + } + + .\32xl\:inset-x-36 { + left: 9rem; + right: 9rem; + } + + .\32xl\:inset-x-40 { + left: 10rem; + right: 10rem; + } + + .\32xl\:inset-x-44 { + left: 11rem; + right: 11rem; + } + + .\32xl\:inset-x-48 { + left: 12rem; + right: 12rem; + } + + .\32xl\:inset-x-52 { + left: 13rem; + right: 13rem; + } + + .\32xl\:inset-x-56 { + left: 14rem; + right: 14rem; + } + + .\32xl\:inset-x-60 { + left: 15rem; + right: 15rem; + } + + .\32xl\:inset-x-64 { + left: 16rem; + right: 16rem; + } + + .\32xl\:inset-x-72 { + left: 18rem; + right: 18rem; + } + + .\32xl\:inset-x-80 { + left: 20rem; + right: 20rem; + } + + .\32xl\:inset-x-96 { + left: 24rem; + right: 24rem; + } + + .\32xl\:inset-x-auto { + left: auto; + right: auto; + } + + .\32xl\:inset-x-px { + left: 1px; + right: 1px; + } + + .\32xl\:inset-x-0\.5 { + left: 0.125rem; + right: 0.125rem; + } + + .\32xl\:inset-x-1\.5 { + left: 0.375rem; + right: 0.375rem; + } + + .\32xl\:inset-x-2\.5 { + left: 0.625rem; + right: 0.625rem; + } + + .\32xl\:inset-x-3\.5 { + left: 0.875rem; + right: 0.875rem; + } + + .\32xl\:-inset-x-0 { + left: 0px; + right: 0px; + } + + .\32xl\:-inset-x-1 { + left: -0.25rem; + right: -0.25rem; + } + + .\32xl\:-inset-x-2 { + left: -0.5rem; + right: -0.5rem; + } + + .\32xl\:-inset-x-3 { + left: -0.75rem; + right: -0.75rem; + } + + .\32xl\:-inset-x-4 { + left: -1rem; + right: -1rem; + } + + .\32xl\:-inset-x-5 { + left: -1.25rem; + right: -1.25rem; + } + + .\32xl\:-inset-x-6 { + left: -1.5rem; + right: -1.5rem; + } + + .\32xl\:-inset-x-7 { + left: -1.75rem; + right: -1.75rem; + } + + .\32xl\:-inset-x-8 { + left: -2rem; + right: -2rem; + } + + .\32xl\:-inset-x-9 { + left: -2.25rem; + right: -2.25rem; + } + + .\32xl\:-inset-x-10 { + left: -2.5rem; + right: -2.5rem; + } + + .\32xl\:-inset-x-11 { + left: -2.75rem; + right: -2.75rem; + } + + .\32xl\:-inset-x-12 { + left: -3rem; + right: -3rem; + } + + .\32xl\:-inset-x-14 { + left: -3.5rem; + right: -3.5rem; + } + + .\32xl\:-inset-x-16 { + left: -4rem; + right: -4rem; + } + + .\32xl\:-inset-x-20 { + left: -5rem; + right: -5rem; + } + + .\32xl\:-inset-x-24 { + left: -6rem; + right: -6rem; + } + + .\32xl\:-inset-x-28 { + left: -7rem; + right: -7rem; + } + + .\32xl\:-inset-x-32 { + left: -8rem; + right: -8rem; + } + + .\32xl\:-inset-x-36 { + left: -9rem; + right: -9rem; + } + + .\32xl\:-inset-x-40 { + left: -10rem; + right: -10rem; + } + + .\32xl\:-inset-x-44 { + left: -11rem; + right: -11rem; + } + + .\32xl\:-inset-x-48 { + left: -12rem; + right: -12rem; + } + + .\32xl\:-inset-x-52 { + left: -13rem; + right: -13rem; + } + + .\32xl\:-inset-x-56 { + left: -14rem; + right: -14rem; + } + + .\32xl\:-inset-x-60 { + left: -15rem; + right: -15rem; + } + + .\32xl\:-inset-x-64 { + left: -16rem; + right: -16rem; + } + + .\32xl\:-inset-x-72 { + left: -18rem; + right: -18rem; + } + + .\32xl\:-inset-x-80 { + left: -20rem; + right: -20rem; + } + + .\32xl\:-inset-x-96 { + left: -24rem; + right: -24rem; + } + + .\32xl\:-inset-x-px { + left: -1px; + right: -1px; + } + + .\32xl\:-inset-x-0\.5 { + left: -0.125rem; + right: -0.125rem; + } + + .\32xl\:-inset-x-1\.5 { + left: -0.375rem; + right: -0.375rem; + } + + .\32xl\:-inset-x-2\.5 { left: -0.625rem; + right: -0.625rem; } - .\32xl\:-inset-3\.5 { - top: -0.875rem; - right: -0.875rem; - bottom: -0.875rem; + .\32xl\:-inset-x-3\.5 { left: -0.875rem; + right: -0.875rem; } - .\32xl\:inset-1\/2 { - top: 50%; - right: 50%; - bottom: 50%; + .\32xl\:inset-x-1\/2 { left: 50%; + right: 50%; } - .\32xl\:inset-1\/3 { - top: 33.333333%; - right: 33.333333%; - bottom: 33.333333%; + .\32xl\:inset-x-1\/3 { left: 33.333333%; + right: 33.333333%; } - .\32xl\:inset-2\/3 { - top: 66.666667%; - right: 66.666667%; - bottom: 66.666667%; + .\32xl\:inset-x-2\/3 { left: 66.666667%; + right: 66.666667%; } - .\32xl\:inset-1\/4 { - top: 25%; - right: 25%; - bottom: 25%; + .\32xl\:inset-x-1\/4 { left: 25%; + right: 25%; } - .\32xl\:inset-2\/4 { - top: 50%; - right: 50%; - bottom: 50%; + .\32xl\:inset-x-2\/4 { left: 50%; + right: 50%; } - .\32xl\:inset-3\/4 { - top: 75%; - right: 75%; - bottom: 75%; + .\32xl\:inset-x-3\/4 { left: 75%; + right: 75%; } - .\32xl\:inset-full { - top: 100%; - right: 100%; - bottom: 100%; + .\32xl\:inset-x-full { left: 100%; + right: 100%; } - .\32xl\:-inset-1\/2 { - top: -50%; - right: -50%; - bottom: -50%; + .\32xl\:-inset-x-1\/2 { left: -50%; + right: -50%; } - .\32xl\:-inset-1\/3 { - top: -33.333333%; - right: -33.333333%; - bottom: -33.333333%; + .\32xl\:-inset-x-1\/3 { left: -33.333333%; + right: -33.333333%; } - .\32xl\:-inset-2\/3 { - top: -66.666667%; - right: -66.666667%; - bottom: -66.666667%; + .\32xl\:-inset-x-2\/3 { left: -66.666667%; + right: -66.666667%; } - .\32xl\:-inset-1\/4 { - top: -25%; - right: -25%; - bottom: -25%; + .\32xl\:-inset-x-1\/4 { left: -25%; + right: -25%; } - .\32xl\:-inset-2\/4 { - top: -50%; - right: -50%; - bottom: -50%; + .\32xl\:-inset-x-2\/4 { left: -50%; + right: -50%; } - .\32xl\:-inset-3\/4 { - top: -75%; - right: -75%; - bottom: -75%; + .\32xl\:-inset-x-3\/4 { left: -75%; + right: -75%; } - .\32xl\:-inset-full { - top: -100%; - right: -100%; - bottom: -100%; + .\32xl\:-inset-x-full { left: -100%; + right: -100%; } .\32xl\:inset-y-0 { @@ -147028,2205 +147581,1780 @@ video { bottom: 0px; } - .\32xl\:inset-x-0 { - right: 0px; - left: 0px; - } - .\32xl\:inset-y-1 { top: 0.25rem; bottom: 0.25rem; } - .\32xl\:inset-x-1 { - right: 0.25rem; - left: 0.25rem; - } - .\32xl\:inset-y-2 { top: 0.5rem; bottom: 0.5rem; } - .\32xl\:inset-x-2 { - right: 0.5rem; - left: 0.5rem; - } - .\32xl\:inset-y-3 { top: 0.75rem; bottom: 0.75rem; } - .\32xl\:inset-x-3 { - right: 0.75rem; - left: 0.75rem; - } - .\32xl\:inset-y-4 { top: 1rem; bottom: 1rem; } - .\32xl\:inset-x-4 { - right: 1rem; - left: 1rem; - } - .\32xl\:inset-y-5 { top: 1.25rem; bottom: 1.25rem; } - .\32xl\:inset-x-5 { - right: 1.25rem; - left: 1.25rem; - } - .\32xl\:inset-y-6 { top: 1.5rem; bottom: 1.5rem; } - .\32xl\:inset-x-6 { - right: 1.5rem; - left: 1.5rem; - } - .\32xl\:inset-y-7 { top: 1.75rem; bottom: 1.75rem; } - .\32xl\:inset-x-7 { - right: 1.75rem; - left: 1.75rem; - } - .\32xl\:inset-y-8 { top: 2rem; bottom: 2rem; } - .\32xl\:inset-x-8 { - right: 2rem; - left: 2rem; - } - .\32xl\:inset-y-9 { top: 2.25rem; bottom: 2.25rem; } - .\32xl\:inset-x-9 { - right: 2.25rem; - left: 2.25rem; - } - .\32xl\:inset-y-10 { top: 2.5rem; bottom: 2.5rem; } - .\32xl\:inset-x-10 { - right: 2.5rem; - left: 2.5rem; - } - .\32xl\:inset-y-11 { top: 2.75rem; bottom: 2.75rem; } - .\32xl\:inset-x-11 { - right: 2.75rem; - left: 2.75rem; - } - .\32xl\:inset-y-12 { top: 3rem; bottom: 3rem; } - .\32xl\:inset-x-12 { - right: 3rem; - left: 3rem; - } - .\32xl\:inset-y-14 { top: 3.5rem; bottom: 3.5rem; } - .\32xl\:inset-x-14 { - right: 3.5rem; - left: 3.5rem; - } - .\32xl\:inset-y-16 { top: 4rem; bottom: 4rem; } - .\32xl\:inset-x-16 { - right: 4rem; - left: 4rem; - } - .\32xl\:inset-y-20 { top: 5rem; bottom: 5rem; } - .\32xl\:inset-x-20 { - right: 5rem; - left: 5rem; - } - .\32xl\:inset-y-24 { top: 6rem; bottom: 6rem; } - .\32xl\:inset-x-24 { - right: 6rem; - left: 6rem; - } - .\32xl\:inset-y-28 { top: 7rem; bottom: 7rem; } - .\32xl\:inset-x-28 { - right: 7rem; - left: 7rem; - } - .\32xl\:inset-y-32 { top: 8rem; bottom: 8rem; } - .\32xl\:inset-x-32 { - right: 8rem; - left: 8rem; - } - .\32xl\:inset-y-36 { top: 9rem; bottom: 9rem; } - .\32xl\:inset-x-36 { - right: 9rem; - left: 9rem; - } - .\32xl\:inset-y-40 { top: 10rem; bottom: 10rem; } - .\32xl\:inset-x-40 { - right: 10rem; - left: 10rem; - } - .\32xl\:inset-y-44 { top: 11rem; bottom: 11rem; } - .\32xl\:inset-x-44 { - right: 11rem; - left: 11rem; - } - .\32xl\:inset-y-48 { top: 12rem; bottom: 12rem; } - .\32xl\:inset-x-48 { - right: 12rem; - left: 12rem; - } - .\32xl\:inset-y-52 { top: 13rem; bottom: 13rem; } - .\32xl\:inset-x-52 { - right: 13rem; - left: 13rem; - } - .\32xl\:inset-y-56 { top: 14rem; bottom: 14rem; } - .\32xl\:inset-x-56 { - right: 14rem; - left: 14rem; - } - .\32xl\:inset-y-60 { top: 15rem; bottom: 15rem; } - .\32xl\:inset-x-60 { - right: 15rem; - left: 15rem; - } - .\32xl\:inset-y-64 { top: 16rem; bottom: 16rem; } - .\32xl\:inset-x-64 { - right: 16rem; - left: 16rem; - } - .\32xl\:inset-y-72 { top: 18rem; bottom: 18rem; } - .\32xl\:inset-x-72 { - right: 18rem; - left: 18rem; - } - .\32xl\:inset-y-80 { top: 20rem; bottom: 20rem; } - .\32xl\:inset-x-80 { - right: 20rem; - left: 20rem; - } - .\32xl\:inset-y-96 { top: 24rem; bottom: 24rem; } - .\32xl\:inset-x-96 { - right: 24rem; - left: 24rem; - } - .\32xl\:inset-y-auto { top: auto; bottom: auto; } - .\32xl\:inset-x-auto { - right: auto; - left: auto; - } - .\32xl\:inset-y-px { top: 1px; bottom: 1px; } - .\32xl\:inset-x-px { - right: 1px; - left: 1px; - } - .\32xl\:inset-y-0\.5 { top: 0.125rem; bottom: 0.125rem; } - .\32xl\:inset-x-0\.5 { - right: 0.125rem; - left: 0.125rem; - } - .\32xl\:inset-y-1\.5 { top: 0.375rem; bottom: 0.375rem; } - .\32xl\:inset-x-1\.5 { - right: 0.375rem; - left: 0.375rem; - } - .\32xl\:inset-y-2\.5 { top: 0.625rem; bottom: 0.625rem; } - .\32xl\:inset-x-2\.5 { - right: 0.625rem; - left: 0.625rem; - } - .\32xl\:inset-y-3\.5 { top: 0.875rem; bottom: 0.875rem; } - .\32xl\:inset-x-3\.5 { - right: 0.875rem; - left: 0.875rem; - } - .\32xl\:-inset-y-0 { top: 0px; bottom: 0px; } - .\32xl\:-inset-x-0 { - right: 0px; - left: 0px; - } - .\32xl\:-inset-y-1 { top: -0.25rem; bottom: -0.25rem; } - .\32xl\:-inset-x-1 { - right: -0.25rem; - left: -0.25rem; - } - .\32xl\:-inset-y-2 { top: -0.5rem; bottom: -0.5rem; } - .\32xl\:-inset-x-2 { - right: -0.5rem; - left: -0.5rem; - } - .\32xl\:-inset-y-3 { top: -0.75rem; bottom: -0.75rem; } - .\32xl\:-inset-x-3 { - right: -0.75rem; - left: -0.75rem; - } - .\32xl\:-inset-y-4 { top: -1rem; bottom: -1rem; } - .\32xl\:-inset-x-4 { - right: -1rem; - left: -1rem; - } - .\32xl\:-inset-y-5 { top: -1.25rem; bottom: -1.25rem; } - .\32xl\:-inset-x-5 { - right: -1.25rem; - left: -1.25rem; - } - .\32xl\:-inset-y-6 { top: -1.5rem; bottom: -1.5rem; } - .\32xl\:-inset-x-6 { - right: -1.5rem; - left: -1.5rem; - } - .\32xl\:-inset-y-7 { top: -1.75rem; bottom: -1.75rem; } - .\32xl\:-inset-x-7 { - right: -1.75rem; - left: -1.75rem; - } - .\32xl\:-inset-y-8 { top: -2rem; bottom: -2rem; } - .\32xl\:-inset-x-8 { - right: -2rem; - left: -2rem; - } - .\32xl\:-inset-y-9 { top: -2.25rem; bottom: -2.25rem; } - .\32xl\:-inset-x-9 { - right: -2.25rem; - left: -2.25rem; - } - .\32xl\:-inset-y-10 { top: -2.5rem; bottom: -2.5rem; } - .\32xl\:-inset-x-10 { - right: -2.5rem; - left: -2.5rem; - } - .\32xl\:-inset-y-11 { top: -2.75rem; bottom: -2.75rem; } - .\32xl\:-inset-x-11 { - right: -2.75rem; - left: -2.75rem; - } - .\32xl\:-inset-y-12 { top: -3rem; bottom: -3rem; } - .\32xl\:-inset-x-12 { - right: -3rem; - left: -3rem; - } - .\32xl\:-inset-y-14 { top: -3.5rem; bottom: -3.5rem; } - .\32xl\:-inset-x-14 { - right: -3.5rem; - left: -3.5rem; - } - .\32xl\:-inset-y-16 { top: -4rem; bottom: -4rem; } - .\32xl\:-inset-x-16 { - right: -4rem; - left: -4rem; - } - .\32xl\:-inset-y-20 { top: -5rem; bottom: -5rem; } - .\32xl\:-inset-x-20 { - right: -5rem; - left: -5rem; - } - .\32xl\:-inset-y-24 { top: -6rem; bottom: -6rem; } - .\32xl\:-inset-x-24 { - right: -6rem; - left: -6rem; - } - .\32xl\:-inset-y-28 { top: -7rem; bottom: -7rem; } - .\32xl\:-inset-x-28 { - right: -7rem; - left: -7rem; - } - .\32xl\:-inset-y-32 { top: -8rem; bottom: -8rem; } - .\32xl\:-inset-x-32 { - right: -8rem; - left: -8rem; - } - .\32xl\:-inset-y-36 { top: -9rem; bottom: -9rem; } - .\32xl\:-inset-x-36 { - right: -9rem; - left: -9rem; - } - .\32xl\:-inset-y-40 { top: -10rem; bottom: -10rem; } - .\32xl\:-inset-x-40 { - right: -10rem; - left: -10rem; - } - .\32xl\:-inset-y-44 { top: -11rem; bottom: -11rem; } - .\32xl\:-inset-x-44 { - right: -11rem; - left: -11rem; - } - .\32xl\:-inset-y-48 { top: -12rem; bottom: -12rem; } - .\32xl\:-inset-x-48 { - right: -12rem; - left: -12rem; - } - .\32xl\:-inset-y-52 { top: -13rem; bottom: -13rem; } - .\32xl\:-inset-x-52 { - right: -13rem; - left: -13rem; - } - .\32xl\:-inset-y-56 { top: -14rem; bottom: -14rem; } - .\32xl\:-inset-x-56 { - right: -14rem; - left: -14rem; - } - .\32xl\:-inset-y-60 { top: -15rem; bottom: -15rem; } - .\32xl\:-inset-x-60 { - right: -15rem; - left: -15rem; - } - .\32xl\:-inset-y-64 { top: -16rem; bottom: -16rem; } - .\32xl\:-inset-x-64 { - right: -16rem; - left: -16rem; - } - .\32xl\:-inset-y-72 { top: -18rem; bottom: -18rem; } - .\32xl\:-inset-x-72 { - right: -18rem; - left: -18rem; - } - .\32xl\:-inset-y-80 { top: -20rem; bottom: -20rem; } - .\32xl\:-inset-x-80 { - right: -20rem; - left: -20rem; - } - .\32xl\:-inset-y-96 { top: -24rem; bottom: -24rem; } - .\32xl\:-inset-x-96 { - right: -24rem; - left: -24rem; - } - .\32xl\:-inset-y-px { top: -1px; bottom: -1px; } - .\32xl\:-inset-x-px { - right: -1px; - left: -1px; - } - .\32xl\:-inset-y-0\.5 { top: -0.125rem; bottom: -0.125rem; } - .\32xl\:-inset-x-0\.5 { - right: -0.125rem; - left: -0.125rem; - } - .\32xl\:-inset-y-1\.5 { top: -0.375rem; bottom: -0.375rem; } - .\32xl\:-inset-x-1\.5 { - right: -0.375rem; - left: -0.375rem; - } - .\32xl\:-inset-y-2\.5 { top: -0.625rem; bottom: -0.625rem; } - .\32xl\:-inset-x-2\.5 { - right: -0.625rem; - left: -0.625rem; - } - .\32xl\:-inset-y-3\.5 { top: -0.875rem; bottom: -0.875rem; } - .\32xl\:-inset-x-3\.5 { - right: -0.875rem; - left: -0.875rem; - } - .\32xl\:inset-y-1\/2 { top: 50%; bottom: 50%; } - .\32xl\:inset-x-1\/2 { - right: 50%; - left: 50%; - } - .\32xl\:inset-y-1\/3 { top: 33.333333%; bottom: 33.333333%; } - .\32xl\:inset-x-1\/3 { - right: 33.333333%; - left: 33.333333%; - } - .\32xl\:inset-y-2\/3 { top: 66.666667%; bottom: 66.666667%; } - .\32xl\:inset-x-2\/3 { - right: 66.666667%; - left: 66.666667%; - } - .\32xl\:inset-y-1\/4 { top: 25%; bottom: 25%; } - .\32xl\:inset-x-1\/4 { - right: 25%; - left: 25%; - } - .\32xl\:inset-y-2\/4 { top: 50%; bottom: 50%; } - .\32xl\:inset-x-2\/4 { - right: 50%; - left: 50%; - } - .\32xl\:inset-y-3\/4 { top: 75%; bottom: 75%; } - .\32xl\:inset-x-3\/4 { - right: 75%; - left: 75%; - } - .\32xl\:inset-y-full { top: 100%; bottom: 100%; } - .\32xl\:inset-x-full { - right: 100%; - left: 100%; - } - .\32xl\:-inset-y-1\/2 { top: -50%; bottom: -50%; } - .\32xl\:-inset-x-1\/2 { - right: -50%; - left: -50%; - } - .\32xl\:-inset-y-1\/3 { top: -33.333333%; bottom: -33.333333%; } - .\32xl\:-inset-x-1\/3 { - right: -33.333333%; - left: -33.333333%; - } - .\32xl\:-inset-y-2\/3 { top: -66.666667%; bottom: -66.666667%; } - .\32xl\:-inset-x-2\/3 { - right: -66.666667%; - left: -66.666667%; - } - .\32xl\:-inset-y-1\/4 { top: -25%; bottom: -25%; } - .\32xl\:-inset-x-1\/4 { - right: -25%; - left: -25%; - } - .\32xl\:-inset-y-2\/4 { top: -50%; bottom: -50%; } - .\32xl\:-inset-x-2\/4 { - right: -50%; - left: -50%; - } - .\32xl\:-inset-y-3\/4 { top: -75%; bottom: -75%; } - .\32xl\:-inset-x-3\/4 { - right: -75%; - left: -75%; - } - .\32xl\:-inset-y-full { top: -100%; bottom: -100%; } - .\32xl\:-inset-x-full { - right: -100%; - left: -100%; - } - .\32xl\:top-0 { top: 0px; } - .\32xl\:right-0 { - right: 0px; + .\32xl\:top-1 { + top: 0.25rem; } - .\32xl\:bottom-0 { - bottom: 0px; + .\32xl\:top-2 { + top: 0.5rem; } - .\32xl\:left-0 { - left: 0px; + .\32xl\:top-3 { + top: 0.75rem; } - .\32xl\:top-1 { - top: 0.25rem; + .\32xl\:top-4 { + top: 1rem; } - .\32xl\:right-1 { - right: 0.25rem; + .\32xl\:top-5 { + top: 1.25rem; } - .\32xl\:bottom-1 { - bottom: 0.25rem; + .\32xl\:top-6 { + top: 1.5rem; } - .\32xl\:left-1 { - left: 0.25rem; + .\32xl\:top-7 { + top: 1.75rem; } - .\32xl\:top-2 { - top: 0.5rem; + .\32xl\:top-8 { + top: 2rem; } - .\32xl\:right-2 { - right: 0.5rem; + .\32xl\:top-9 { + top: 2.25rem; } - .\32xl\:bottom-2 { - bottom: 0.5rem; + .\32xl\:top-10 { + top: 2.5rem; } - .\32xl\:left-2 { - left: 0.5rem; + .\32xl\:top-11 { + top: 2.75rem; } - .\32xl\:top-3 { - top: 0.75rem; + .\32xl\:top-12 { + top: 3rem; } - .\32xl\:right-3 { - right: 0.75rem; + .\32xl\:top-14 { + top: 3.5rem; } - .\32xl\:bottom-3 { - bottom: 0.75rem; + .\32xl\:top-16 { + top: 4rem; } - .\32xl\:left-3 { - left: 0.75rem; + .\32xl\:top-20 { + top: 5rem; } - .\32xl\:top-4 { - top: 1rem; + .\32xl\:top-24 { + top: 6rem; } - .\32xl\:right-4 { - right: 1rem; + .\32xl\:top-28 { + top: 7rem; } - .\32xl\:bottom-4 { - bottom: 1rem; + .\32xl\:top-32 { + top: 8rem; } - .\32xl\:left-4 { - left: 1rem; + .\32xl\:top-36 { + top: 9rem; } - .\32xl\:top-5 { - top: 1.25rem; + .\32xl\:top-40 { + top: 10rem; } - .\32xl\:right-5 { - right: 1.25rem; + .\32xl\:top-44 { + top: 11rem; } - .\32xl\:bottom-5 { - bottom: 1.25rem; + .\32xl\:top-48 { + top: 12rem; } - .\32xl\:left-5 { - left: 1.25rem; + .\32xl\:top-52 { + top: 13rem; } - .\32xl\:top-6 { - top: 1.5rem; + .\32xl\:top-56 { + top: 14rem; } - .\32xl\:right-6 { - right: 1.5rem; + .\32xl\:top-60 { + top: 15rem; } - .\32xl\:bottom-6 { - bottom: 1.5rem; + .\32xl\:top-64 { + top: 16rem; } - .\32xl\:left-6 { - left: 1.5rem; + .\32xl\:top-72 { + top: 18rem; } - .\32xl\:top-7 { - top: 1.75rem; + .\32xl\:top-80 { + top: 20rem; } - .\32xl\:right-7 { - right: 1.75rem; + .\32xl\:top-96 { + top: 24rem; } - .\32xl\:bottom-7 { - bottom: 1.75rem; + .\32xl\:top-auto { + top: auto; } - .\32xl\:left-7 { - left: 1.75rem; + .\32xl\:top-px { + top: 1px; } - .\32xl\:top-8 { - top: 2rem; + .\32xl\:top-0\.5 { + top: 0.125rem; } - .\32xl\:right-8 { - right: 2rem; + .\32xl\:top-1\.5 { + top: 0.375rem; } - .\32xl\:bottom-8 { - bottom: 2rem; + .\32xl\:top-2\.5 { + top: 0.625rem; } - .\32xl\:left-8 { - left: 2rem; + .\32xl\:top-3\.5 { + top: 0.875rem; } - .\32xl\:top-9 { - top: 2.25rem; + .\32xl\:-top-0 { + top: 0px; } - .\32xl\:right-9 { - right: 2.25rem; + .\32xl\:-top-1 { + top: -0.25rem; } - .\32xl\:bottom-9 { - bottom: 2.25rem; + .\32xl\:-top-2 { + top: -0.5rem; } - .\32xl\:left-9 { - left: 2.25rem; + .\32xl\:-top-3 { + top: -0.75rem; } - .\32xl\:top-10 { - top: 2.5rem; + .\32xl\:-top-4 { + top: -1rem; } - .\32xl\:right-10 { - right: 2.5rem; + .\32xl\:-top-5 { + top: -1.25rem; } - .\32xl\:bottom-10 { - bottom: 2.5rem; + .\32xl\:-top-6 { + top: -1.5rem; } - .\32xl\:left-10 { - left: 2.5rem; + .\32xl\:-top-7 { + top: -1.75rem; } - .\32xl\:top-11 { - top: 2.75rem; + .\32xl\:-top-8 { + top: -2rem; } - .\32xl\:right-11 { - right: 2.75rem; + .\32xl\:-top-9 { + top: -2.25rem; } - .\32xl\:bottom-11 { - bottom: 2.75rem; + .\32xl\:-top-10 { + top: -2.5rem; } - .\32xl\:left-11 { - left: 2.75rem; + .\32xl\:-top-11 { + top: -2.75rem; } - .\32xl\:top-12 { - top: 3rem; + .\32xl\:-top-12 { + top: -3rem; } - .\32xl\:right-12 { - right: 3rem; + .\32xl\:-top-14 { + top: -3.5rem; } - .\32xl\:bottom-12 { - bottom: 3rem; + .\32xl\:-top-16 { + top: -4rem; } - .\32xl\:left-12 { - left: 3rem; + .\32xl\:-top-20 { + top: -5rem; } - .\32xl\:top-14 { - top: 3.5rem; + .\32xl\:-top-24 { + top: -6rem; } - .\32xl\:right-14 { - right: 3.5rem; + .\32xl\:-top-28 { + top: -7rem; } - .\32xl\:bottom-14 { - bottom: 3.5rem; + .\32xl\:-top-32 { + top: -8rem; } - .\32xl\:left-14 { - left: 3.5rem; + .\32xl\:-top-36 { + top: -9rem; } - .\32xl\:top-16 { - top: 4rem; + .\32xl\:-top-40 { + top: -10rem; } - .\32xl\:right-16 { - right: 4rem; + .\32xl\:-top-44 { + top: -11rem; } - .\32xl\:bottom-16 { - bottom: 4rem; + .\32xl\:-top-48 { + top: -12rem; } - .\32xl\:left-16 { - left: 4rem; + .\32xl\:-top-52 { + top: -13rem; } - .\32xl\:top-20 { - top: 5rem; + .\32xl\:-top-56 { + top: -14rem; } - .\32xl\:right-20 { - right: 5rem; + .\32xl\:-top-60 { + top: -15rem; } - .\32xl\:bottom-20 { - bottom: 5rem; + .\32xl\:-top-64 { + top: -16rem; } - .\32xl\:left-20 { - left: 5rem; + .\32xl\:-top-72 { + top: -18rem; } - .\32xl\:top-24 { - top: 6rem; + .\32xl\:-top-80 { + top: -20rem; } - .\32xl\:right-24 { - right: 6rem; + .\32xl\:-top-96 { + top: -24rem; } - .\32xl\:bottom-24 { - bottom: 6rem; + .\32xl\:-top-px { + top: -1px; } - .\32xl\:left-24 { - left: 6rem; + .\32xl\:-top-0\.5 { + top: -0.125rem; } - .\32xl\:top-28 { - top: 7rem; + .\32xl\:-top-1\.5 { + top: -0.375rem; } - .\32xl\:right-28 { - right: 7rem; + .\32xl\:-top-2\.5 { + top: -0.625rem; } - .\32xl\:bottom-28 { - bottom: 7rem; + .\32xl\:-top-3\.5 { + top: -0.875rem; } - .\32xl\:left-28 { - left: 7rem; + .\32xl\:top-1\/2 { + top: 50%; } - .\32xl\:top-32 { - top: 8rem; + .\32xl\:top-1\/3 { + top: 33.333333%; } - .\32xl\:right-32 { - right: 8rem; + .\32xl\:top-2\/3 { + top: 66.666667%; } - .\32xl\:bottom-32 { - bottom: 8rem; + .\32xl\:top-1\/4 { + top: 25%; } - .\32xl\:left-32 { - left: 8rem; + .\32xl\:top-2\/4 { + top: 50%; } - .\32xl\:top-36 { - top: 9rem; + .\32xl\:top-3\/4 { + top: 75%; } - .\32xl\:right-36 { - right: 9rem; + .\32xl\:top-full { + top: 100%; } - .\32xl\:bottom-36 { - bottom: 9rem; + .\32xl\:-top-1\/2 { + top: -50%; } - .\32xl\:left-36 { - left: 9rem; + .\32xl\:-top-1\/3 { + top: -33.333333%; } - .\32xl\:top-40 { - top: 10rem; + .\32xl\:-top-2\/3 { + top: -66.666667%; } - .\32xl\:right-40 { - right: 10rem; + .\32xl\:-top-1\/4 { + top: -25%; } - .\32xl\:bottom-40 { - bottom: 10rem; + .\32xl\:-top-2\/4 { + top: -50%; } - .\32xl\:left-40 { - left: 10rem; + .\32xl\:-top-3\/4 { + top: -75%; } - .\32xl\:top-44 { - top: 11rem; + .\32xl\:-top-full { + top: -100%; } - .\32xl\:right-44 { - right: 11rem; + .\32xl\:right-0 { + right: 0px; } - .\32xl\:bottom-44 { - bottom: 11rem; + .\32xl\:right-1 { + right: 0.25rem; } - .\32xl\:left-44 { - left: 11rem; + .\32xl\:right-2 { + right: 0.5rem; } - .\32xl\:top-48 { - top: 12rem; + .\32xl\:right-3 { + right: 0.75rem; } - .\32xl\:right-48 { - right: 12rem; + .\32xl\:right-4 { + right: 1rem; } - .\32xl\:bottom-48 { - bottom: 12rem; + .\32xl\:right-5 { + right: 1.25rem; } - .\32xl\:left-48 { - left: 12rem; + .\32xl\:right-6 { + right: 1.5rem; } - .\32xl\:top-52 { - top: 13rem; + .\32xl\:right-7 { + right: 1.75rem; } - .\32xl\:right-52 { - right: 13rem; + .\32xl\:right-8 { + right: 2rem; } - .\32xl\:bottom-52 { - bottom: 13rem; + .\32xl\:right-9 { + right: 2.25rem; } - .\32xl\:left-52 { - left: 13rem; + .\32xl\:right-10 { + right: 2.5rem; } - .\32xl\:top-56 { - top: 14rem; + .\32xl\:right-11 { + right: 2.75rem; } - .\32xl\:right-56 { - right: 14rem; + .\32xl\:right-12 { + right: 3rem; } - .\32xl\:bottom-56 { - bottom: 14rem; + .\32xl\:right-14 { + right: 3.5rem; } - .\32xl\:left-56 { - left: 14rem; + .\32xl\:right-16 { + right: 4rem; } - .\32xl\:top-60 { - top: 15rem; + .\32xl\:right-20 { + right: 5rem; } - .\32xl\:right-60 { - right: 15rem; + .\32xl\:right-24 { + right: 6rem; } - .\32xl\:bottom-60 { - bottom: 15rem; + .\32xl\:right-28 { + right: 7rem; } - .\32xl\:left-60 { - left: 15rem; + .\32xl\:right-32 { + right: 8rem; } - .\32xl\:top-64 { - top: 16rem; + .\32xl\:right-36 { + right: 9rem; } - .\32xl\:right-64 { - right: 16rem; + .\32xl\:right-40 { + right: 10rem; } - .\32xl\:bottom-64 { - bottom: 16rem; + .\32xl\:right-44 { + right: 11rem; } - .\32xl\:left-64 { - left: 16rem; + .\32xl\:right-48 { + right: 12rem; } - .\32xl\:top-72 { - top: 18rem; + .\32xl\:right-52 { + right: 13rem; } - .\32xl\:right-72 { - right: 18rem; + .\32xl\:right-56 { + right: 14rem; } - .\32xl\:bottom-72 { - bottom: 18rem; + .\32xl\:right-60 { + right: 15rem; } - .\32xl\:left-72 { - left: 18rem; + .\32xl\:right-64 { + right: 16rem; } - .\32xl\:top-80 { - top: 20rem; + .\32xl\:right-72 { + right: 18rem; } .\32xl\:right-80 { right: 20rem; } - .\32xl\:bottom-80 { - bottom: 20rem; + .\32xl\:right-96 { + right: 24rem; } - .\32xl\:left-80 { - left: 20rem; + .\32xl\:right-auto { + right: auto; } - .\32xl\:top-96 { - top: 24rem; + .\32xl\:right-px { + right: 1px; } - .\32xl\:right-96 { - right: 24rem; + .\32xl\:right-0\.5 { + right: 0.125rem; } - .\32xl\:bottom-96 { - bottom: 24rem; + .\32xl\:right-1\.5 { + right: 0.375rem; } - .\32xl\:left-96 { - left: 24rem; + .\32xl\:right-2\.5 { + right: 0.625rem; } - .\32xl\:top-auto { - top: auto; + .\32xl\:right-3\.5 { + right: 0.875rem; } - .\32xl\:right-auto { - right: auto; + .\32xl\:-right-0 { + right: 0px; } - .\32xl\:bottom-auto { - bottom: auto; + .\32xl\:-right-1 { + right: -0.25rem; } - .\32xl\:left-auto { - left: auto; + .\32xl\:-right-2 { + right: -0.5rem; } - .\32xl\:top-px { - top: 1px; + .\32xl\:-right-3 { + right: -0.75rem; } - .\32xl\:right-px { - right: 1px; + .\32xl\:-right-4 { + right: -1rem; } - .\32xl\:bottom-px { - bottom: 1px; + .\32xl\:-right-5 { + right: -1.25rem; } - .\32xl\:left-px { - left: 1px; + .\32xl\:-right-6 { + right: -1.5rem; } - .\32xl\:top-0\.5 { - top: 0.125rem; + .\32xl\:-right-7 { + right: -1.75rem; } - .\32xl\:right-0\.5 { - right: 0.125rem; + .\32xl\:-right-8 { + right: -2rem; } - .\32xl\:bottom-0\.5 { - bottom: 0.125rem; + .\32xl\:-right-9 { + right: -2.25rem; } - .\32xl\:left-0\.5 { - left: 0.125rem; + .\32xl\:-right-10 { + right: -2.5rem; } - .\32xl\:top-1\.5 { - top: 0.375rem; + .\32xl\:-right-11 { + right: -2.75rem; } - .\32xl\:right-1\.5 { - right: 0.375rem; + .\32xl\:-right-12 { + right: -3rem; } - .\32xl\:bottom-1\.5 { - bottom: 0.375rem; + .\32xl\:-right-14 { + right: -3.5rem; } - .\32xl\:left-1\.5 { - left: 0.375rem; + .\32xl\:-right-16 { + right: -4rem; } - .\32xl\:top-2\.5 { - top: 0.625rem; + .\32xl\:-right-20 { + right: -5rem; } - .\32xl\:right-2\.5 { - right: 0.625rem; + .\32xl\:-right-24 { + right: -6rem; } - .\32xl\:bottom-2\.5 { - bottom: 0.625rem; + .\32xl\:-right-28 { + right: -7rem; } - .\32xl\:left-2\.5 { - left: 0.625rem; + .\32xl\:-right-32 { + right: -8rem; } - .\32xl\:top-3\.5 { - top: 0.875rem; + .\32xl\:-right-36 { + right: -9rem; } - .\32xl\:right-3\.5 { - right: 0.875rem; + .\32xl\:-right-40 { + right: -10rem; } - .\32xl\:bottom-3\.5 { - bottom: 0.875rem; + .\32xl\:-right-44 { + right: -11rem; } - .\32xl\:left-3\.5 { - left: 0.875rem; + .\32xl\:-right-48 { + right: -12rem; } - .\32xl\:-top-0 { - top: 0px; + .\32xl\:-right-52 { + right: -13rem; } - .\32xl\:-right-0 { - right: 0px; + .\32xl\:-right-56 { + right: -14rem; } - .\32xl\:-bottom-0 { - bottom: 0px; + .\32xl\:-right-60 { + right: -15rem; } - .\32xl\:-left-0 { - left: 0px; + .\32xl\:-right-64 { + right: -16rem; } - .\32xl\:-top-1 { - top: -0.25rem; + .\32xl\:-right-72 { + right: -18rem; } - .\32xl\:-right-1 { - right: -0.25rem; + .\32xl\:-right-80 { + right: -20rem; } - .\32xl\:-bottom-1 { - bottom: -0.25rem; + .\32xl\:-right-96 { + right: -24rem; } - .\32xl\:-left-1 { - left: -0.25rem; + .\32xl\:-right-px { + right: -1px; } - .\32xl\:-top-2 { - top: -0.5rem; + .\32xl\:-right-0\.5 { + right: -0.125rem; } - .\32xl\:-right-2 { - right: -0.5rem; + .\32xl\:-right-1\.5 { + right: -0.375rem; } - .\32xl\:-bottom-2 { - bottom: -0.5rem; + .\32xl\:-right-2\.5 { + right: -0.625rem; } - .\32xl\:-left-2 { - left: -0.5rem; + .\32xl\:-right-3\.5 { + right: -0.875rem; } - .\32xl\:-top-3 { - top: -0.75rem; + .\32xl\:right-1\/2 { + right: 50%; } - .\32xl\:-right-3 { - right: -0.75rem; + .\32xl\:right-1\/3 { + right: 33.333333%; } - .\32xl\:-bottom-3 { - bottom: -0.75rem; + .\32xl\:right-2\/3 { + right: 66.666667%; } - .\32xl\:-left-3 { - left: -0.75rem; + .\32xl\:right-1\/4 { + right: 25%; } - .\32xl\:-top-4 { - top: -1rem; + .\32xl\:right-2\/4 { + right: 50%; } - .\32xl\:-right-4 { - right: -1rem; + .\32xl\:right-3\/4 { + right: 75%; } - .\32xl\:-bottom-4 { - bottom: -1rem; + .\32xl\:right-full { + right: 100%; } - .\32xl\:-left-4 { - left: -1rem; + .\32xl\:-right-1\/2 { + right: -50%; } - .\32xl\:-top-5 { - top: -1.25rem; + .\32xl\:-right-1\/3 { + right: -33.333333%; } - .\32xl\:-right-5 { - right: -1.25rem; + .\32xl\:-right-2\/3 { + right: -66.666667%; } - .\32xl\:-bottom-5 { - bottom: -1.25rem; + .\32xl\:-right-1\/4 { + right: -25%; } - .\32xl\:-left-5 { - left: -1.25rem; + .\32xl\:-right-2\/4 { + right: -50%; } - .\32xl\:-top-6 { - top: -1.5rem; + .\32xl\:-right-3\/4 { + right: -75%; } - .\32xl\:-right-6 { - right: -1.5rem; + .\32xl\:-right-full { + right: -100%; } - .\32xl\:-bottom-6 { - bottom: -1.5rem; + .\32xl\:bottom-0 { + bottom: 0px; } - .\32xl\:-left-6 { - left: -1.5rem; + .\32xl\:bottom-1 { + bottom: 0.25rem; } - .\32xl\:-top-7 { - top: -1.75rem; + .\32xl\:bottom-2 { + bottom: 0.5rem; } - .\32xl\:-right-7 { - right: -1.75rem; + .\32xl\:bottom-3 { + bottom: 0.75rem; } - .\32xl\:-bottom-7 { - bottom: -1.75rem; + .\32xl\:bottom-4 { + bottom: 1rem; } - .\32xl\:-left-7 { - left: -1.75rem; + .\32xl\:bottom-5 { + bottom: 1.25rem; } - .\32xl\:-top-8 { - top: -2rem; + .\32xl\:bottom-6 { + bottom: 1.5rem; } - .\32xl\:-right-8 { - right: -2rem; + .\32xl\:bottom-7 { + bottom: 1.75rem; } - .\32xl\:-bottom-8 { - bottom: -2rem; + .\32xl\:bottom-8 { + bottom: 2rem; } - .\32xl\:-left-8 { - left: -2rem; + .\32xl\:bottom-9 { + bottom: 2.25rem; } - .\32xl\:-top-9 { - top: -2.25rem; + .\32xl\:bottom-10 { + bottom: 2.5rem; } - .\32xl\:-right-9 { - right: -2.25rem; + .\32xl\:bottom-11 { + bottom: 2.75rem; } - .\32xl\:-bottom-9 { - bottom: -2.25rem; + .\32xl\:bottom-12 { + bottom: 3rem; } - .\32xl\:-left-9 { - left: -2.25rem; + .\32xl\:bottom-14 { + bottom: 3.5rem; } - .\32xl\:-top-10 { - top: -2.5rem; + .\32xl\:bottom-16 { + bottom: 4rem; } - .\32xl\:-right-10 { - right: -2.5rem; + .\32xl\:bottom-20 { + bottom: 5rem; } - .\32xl\:-bottom-10 { - bottom: -2.5rem; + .\32xl\:bottom-24 { + bottom: 6rem; } - .\32xl\:-left-10 { - left: -2.5rem; + .\32xl\:bottom-28 { + bottom: 7rem; } - .\32xl\:-top-11 { - top: -2.75rem; + .\32xl\:bottom-32 { + bottom: 8rem; } - .\32xl\:-right-11 { - right: -2.75rem; + .\32xl\:bottom-36 { + bottom: 9rem; } - .\32xl\:-bottom-11 { - bottom: -2.75rem; + .\32xl\:bottom-40 { + bottom: 10rem; } - .\32xl\:-left-11 { - left: -2.75rem; + .\32xl\:bottom-44 { + bottom: 11rem; } - .\32xl\:-top-12 { - top: -3rem; + .\32xl\:bottom-48 { + bottom: 12rem; } - .\32xl\:-right-12 { - right: -3rem; + .\32xl\:bottom-52 { + bottom: 13rem; } - .\32xl\:-bottom-12 { - bottom: -3rem; + .\32xl\:bottom-56 { + bottom: 14rem; } - .\32xl\:-left-12 { - left: -3rem; + .\32xl\:bottom-60 { + bottom: 15rem; } - .\32xl\:-top-14 { - top: -3.5rem; + .\32xl\:bottom-64 { + bottom: 16rem; } - .\32xl\:-right-14 { - right: -3.5rem; + .\32xl\:bottom-72 { + bottom: 18rem; } - .\32xl\:-bottom-14 { - bottom: -3.5rem; + .\32xl\:bottom-80 { + bottom: 20rem; } - .\32xl\:-left-14 { - left: -3.5rem; + .\32xl\:bottom-96 { + bottom: 24rem; } - .\32xl\:-top-16 { - top: -4rem; + .\32xl\:bottom-auto { + bottom: auto; } - .\32xl\:-right-16 { - right: -4rem; + .\32xl\:bottom-px { + bottom: 1px; } - .\32xl\:-bottom-16 { - bottom: -4rem; + .\32xl\:bottom-0\.5 { + bottom: 0.125rem; } - .\32xl\:-left-16 { - left: -4rem; + .\32xl\:bottom-1\.5 { + bottom: 0.375rem; } - .\32xl\:-top-20 { - top: -5rem; + .\32xl\:bottom-2\.5 { + bottom: 0.625rem; } - .\32xl\:-right-20 { - right: -5rem; + .\32xl\:bottom-3\.5 { + bottom: 0.875rem; } - .\32xl\:-bottom-20 { - bottom: -5rem; + .\32xl\:-bottom-0 { + bottom: 0px; } - .\32xl\:-left-20 { - left: -5rem; + .\32xl\:-bottom-1 { + bottom: -0.25rem; } - .\32xl\:-top-24 { - top: -6rem; + .\32xl\:-bottom-2 { + bottom: -0.5rem; } - .\32xl\:-right-24 { - right: -6rem; + .\32xl\:-bottom-3 { + bottom: -0.75rem; } - .\32xl\:-bottom-24 { - bottom: -6rem; + .\32xl\:-bottom-4 { + bottom: -1rem; } - .\32xl\:-left-24 { - left: -6rem; + .\32xl\:-bottom-5 { + bottom: -1.25rem; } - .\32xl\:-top-28 { - top: -7rem; + .\32xl\:-bottom-6 { + bottom: -1.5rem; } - .\32xl\:-right-28 { - right: -7rem; + .\32xl\:-bottom-7 { + bottom: -1.75rem; } - .\32xl\:-bottom-28 { - bottom: -7rem; + .\32xl\:-bottom-8 { + bottom: -2rem; } - .\32xl\:-left-28 { - left: -7rem; + .\32xl\:-bottom-9 { + bottom: -2.25rem; } - .\32xl\:-top-32 { - top: -8rem; + .\32xl\:-bottom-10 { + bottom: -2.5rem; } - .\32xl\:-right-32 { - right: -8rem; + .\32xl\:-bottom-11 { + bottom: -2.75rem; } - .\32xl\:-bottom-32 { - bottom: -8rem; + .\32xl\:-bottom-12 { + bottom: -3rem; } - .\32xl\:-left-32 { - left: -8rem; + .\32xl\:-bottom-14 { + bottom: -3.5rem; } - .\32xl\:-top-36 { - top: -9rem; + .\32xl\:-bottom-16 { + bottom: -4rem; } - .\32xl\:-right-36 { - right: -9rem; + .\32xl\:-bottom-20 { + bottom: -5rem; } - .\32xl\:-bottom-36 { - bottom: -9rem; + .\32xl\:-bottom-24 { + bottom: -6rem; } - .\32xl\:-left-36 { - left: -9rem; + .\32xl\:-bottom-28 { + bottom: -7rem; } - .\32xl\:-top-40 { - top: -10rem; + .\32xl\:-bottom-32 { + bottom: -8rem; } - .\32xl\:-right-40 { - right: -10rem; + .\32xl\:-bottom-36 { + bottom: -9rem; } .\32xl\:-bottom-40 { bottom: -10rem; } - .\32xl\:-left-40 { - left: -10rem; + .\32xl\:-bottom-44 { + bottom: -11rem; } - .\32xl\:-top-44 { - top: -11rem; + .\32xl\:-bottom-48 { + bottom: -12rem; } - .\32xl\:-right-44 { - right: -11rem; + .\32xl\:-bottom-52 { + bottom: -13rem; } - .\32xl\:-bottom-44 { - bottom: -11rem; + .\32xl\:-bottom-56 { + bottom: -14rem; } - .\32xl\:-left-44 { - left: -11rem; + .\32xl\:-bottom-60 { + bottom: -15rem; } - .\32xl\:-top-48 { - top: -12rem; + .\32xl\:-bottom-64 { + bottom: -16rem; } - .\32xl\:-right-48 { - right: -12rem; + .\32xl\:-bottom-72 { + bottom: -18rem; } - .\32xl\:-bottom-48 { - bottom: -12rem; + .\32xl\:-bottom-80 { + bottom: -20rem; } - .\32xl\:-left-48 { - left: -12rem; + .\32xl\:-bottom-96 { + bottom: -24rem; } - .\32xl\:-top-52 { - top: -13rem; + .\32xl\:-bottom-px { + bottom: -1px; } - .\32xl\:-right-52 { - right: -13rem; + .\32xl\:-bottom-0\.5 { + bottom: -0.125rem; } - .\32xl\:-bottom-52 { - bottom: -13rem; + .\32xl\:-bottom-1\.5 { + bottom: -0.375rem; } - .\32xl\:-left-52 { - left: -13rem; + .\32xl\:-bottom-2\.5 { + bottom: -0.625rem; } - .\32xl\:-top-56 { - top: -14rem; + .\32xl\:-bottom-3\.5 { + bottom: -0.875rem; } - .\32xl\:-right-56 { - right: -14rem; + .\32xl\:bottom-1\/2 { + bottom: 50%; } - .\32xl\:-bottom-56 { - bottom: -14rem; + .\32xl\:bottom-1\/3 { + bottom: 33.333333%; } - .\32xl\:-left-56 { - left: -14rem; + .\32xl\:bottom-2\/3 { + bottom: 66.666667%; } - .\32xl\:-top-60 { - top: -15rem; + .\32xl\:bottom-1\/4 { + bottom: 25%; } - .\32xl\:-right-60 { - right: -15rem; + .\32xl\:bottom-2\/4 { + bottom: 50%; } - .\32xl\:-bottom-60 { - bottom: -15rem; + .\32xl\:bottom-3\/4 { + bottom: 75%; } - .\32xl\:-left-60 { - left: -15rem; + .\32xl\:bottom-full { + bottom: 100%; } - .\32xl\:-top-64 { - top: -16rem; + .\32xl\:-bottom-1\/2 { + bottom: -50%; } - .\32xl\:-right-64 { - right: -16rem; + .\32xl\:-bottom-1\/3 { + bottom: -33.333333%; } - .\32xl\:-bottom-64 { - bottom: -16rem; + .\32xl\:-bottom-2\/3 { + bottom: -66.666667%; } - .\32xl\:-left-64 { - left: -16rem; + .\32xl\:-bottom-1\/4 { + bottom: -25%; } - .\32xl\:-top-72 { - top: -18rem; + .\32xl\:-bottom-2\/4 { + bottom: -50%; } - .\32xl\:-right-72 { - right: -18rem; + .\32xl\:-bottom-3\/4 { + bottom: -75%; } - .\32xl\:-bottom-72 { - bottom: -18rem; + .\32xl\:-bottom-full { + bottom: -100%; } - .\32xl\:-left-72 { - left: -18rem; + .\32xl\:left-0 { + left: 0px; } - .\32xl\:-top-80 { - top: -20rem; + .\32xl\:left-1 { + left: 0.25rem; } - .\32xl\:-right-80 { - right: -20rem; + .\32xl\:left-2 { + left: 0.5rem; } - .\32xl\:-bottom-80 { - bottom: -20rem; + .\32xl\:left-3 { + left: 0.75rem; } - .\32xl\:-left-80 { - left: -20rem; + .\32xl\:left-4 { + left: 1rem; } - .\32xl\:-top-96 { - top: -24rem; + .\32xl\:left-5 { + left: 1.25rem; } - .\32xl\:-right-96 { - right: -24rem; + .\32xl\:left-6 { + left: 1.5rem; } - .\32xl\:-bottom-96 { - bottom: -24rem; + .\32xl\:left-7 { + left: 1.75rem; } - .\32xl\:-left-96 { - left: -24rem; + .\32xl\:left-8 { + left: 2rem; } - .\32xl\:-top-px { - top: -1px; + .\32xl\:left-9 { + left: 2.25rem; } - .\32xl\:-right-px { - right: -1px; + .\32xl\:left-10 { + left: 2.5rem; } - .\32xl\:-bottom-px { - bottom: -1px; + .\32xl\:left-11 { + left: 2.75rem; } - .\32xl\:-left-px { - left: -1px; + .\32xl\:left-12 { + left: 3rem; } - .\32xl\:-top-0\.5 { - top: -0.125rem; + .\32xl\:left-14 { + left: 3.5rem; } - .\32xl\:-right-0\.5 { - right: -0.125rem; + .\32xl\:left-16 { + left: 4rem; } - .\32xl\:-bottom-0\.5 { - bottom: -0.125rem; + .\32xl\:left-20 { + left: 5rem; } - .\32xl\:-left-0\.5 { - left: -0.125rem; + .\32xl\:left-24 { + left: 6rem; } - .\32xl\:-top-1\.5 { - top: -0.375rem; + .\32xl\:left-28 { + left: 7rem; } - .\32xl\:-right-1\.5 { - right: -0.375rem; + .\32xl\:left-32 { + left: 8rem; } - .\32xl\:-bottom-1\.5 { - bottom: -0.375rem; + .\32xl\:left-36 { + left: 9rem; } - .\32xl\:-left-1\.5 { - left: -0.375rem; + .\32xl\:left-40 { + left: 10rem; } - .\32xl\:-top-2\.5 { - top: -0.625rem; + .\32xl\:left-44 { + left: 11rem; } - .\32xl\:-right-2\.5 { - right: -0.625rem; + .\32xl\:left-48 { + left: 12rem; } - .\32xl\:-bottom-2\.5 { - bottom: -0.625rem; + .\32xl\:left-52 { + left: 13rem; } - .\32xl\:-left-2\.5 { - left: -0.625rem; + .\32xl\:left-56 { + left: 14rem; } - .\32xl\:-top-3\.5 { - top: -0.875rem; + .\32xl\:left-60 { + left: 15rem; } - .\32xl\:-right-3\.5 { - right: -0.875rem; + .\32xl\:left-64 { + left: 16rem; } - .\32xl\:-bottom-3\.5 { - bottom: -0.875rem; + .\32xl\:left-72 { + left: 18rem; } - .\32xl\:-left-3\.5 { - left: -0.875rem; + .\32xl\:left-80 { + left: 20rem; } - .\32xl\:top-1\/2 { - top: 50%; + .\32xl\:left-96 { + left: 24rem; } - .\32xl\:right-1\/2 { - right: 50%; + .\32xl\:left-auto { + left: auto; } - .\32xl\:bottom-1\/2 { - bottom: 50%; + .\32xl\:left-px { + left: 1px; } - .\32xl\:left-1\/2 { - left: 50%; + .\32xl\:left-0\.5 { + left: 0.125rem; } - .\32xl\:top-1\/3 { - top: 33.333333%; + .\32xl\:left-1\.5 { + left: 0.375rem; } - .\32xl\:right-1\/3 { - right: 33.333333%; + .\32xl\:left-2\.5 { + left: 0.625rem; } - .\32xl\:bottom-1\/3 { - bottom: 33.333333%; + .\32xl\:left-3\.5 { + left: 0.875rem; } - .\32xl\:left-1\/3 { - left: 33.333333%; + .\32xl\:-left-0 { + left: 0px; } - .\32xl\:top-2\/3 { - top: 66.666667%; + .\32xl\:-left-1 { + left: -0.25rem; } - .\32xl\:right-2\/3 { - right: 66.666667%; + .\32xl\:-left-2 { + left: -0.5rem; } - .\32xl\:bottom-2\/3 { - bottom: 66.666667%; + .\32xl\:-left-3 { + left: -0.75rem; } - .\32xl\:left-2\/3 { - left: 66.666667%; + .\32xl\:-left-4 { + left: -1rem; } - .\32xl\:top-1\/4 { - top: 25%; + .\32xl\:-left-5 { + left: -1.25rem; } - .\32xl\:right-1\/4 { - right: 25%; + .\32xl\:-left-6 { + left: -1.5rem; } - .\32xl\:bottom-1\/4 { - bottom: 25%; + .\32xl\:-left-7 { + left: -1.75rem; } - .\32xl\:left-1\/4 { - left: 25%; + .\32xl\:-left-8 { + left: -2rem; } - .\32xl\:top-2\/4 { - top: 50%; + .\32xl\:-left-9 { + left: -2.25rem; } - .\32xl\:right-2\/4 { - right: 50%; + .\32xl\:-left-10 { + left: -2.5rem; } - .\32xl\:bottom-2\/4 { - bottom: 50%; + .\32xl\:-left-11 { + left: -2.75rem; } - .\32xl\:left-2\/4 { - left: 50%; + .\32xl\:-left-12 { + left: -3rem; } - .\32xl\:top-3\/4 { - top: 75%; + .\32xl\:-left-14 { + left: -3.5rem; } - .\32xl\:right-3\/4 { - right: 75%; + .\32xl\:-left-16 { + left: -4rem; } - .\32xl\:bottom-3\/4 { - bottom: 75%; + .\32xl\:-left-20 { + left: -5rem; } - .\32xl\:left-3\/4 { - left: 75%; + .\32xl\:-left-24 { + left: -6rem; } - .\32xl\:top-full { - top: 100%; + .\32xl\:-left-28 { + left: -7rem; } - .\32xl\:right-full { - right: 100%; + .\32xl\:-left-32 { + left: -8rem; } - .\32xl\:bottom-full { - bottom: 100%; + .\32xl\:-left-36 { + left: -9rem; } - .\32xl\:left-full { - left: 100%; + .\32xl\:-left-40 { + left: -10rem; } - .\32xl\:-top-1\/2 { - top: -50%; + .\32xl\:-left-44 { + left: -11rem; } - .\32xl\:-right-1\/2 { - right: -50%; + .\32xl\:-left-48 { + left: -12rem; } - .\32xl\:-bottom-1\/2 { - bottom: -50%; + .\32xl\:-left-52 { + left: -13rem; } - .\32xl\:-left-1\/2 { - left: -50%; + .\32xl\:-left-56 { + left: -14rem; } - .\32xl\:-top-1\/3 { - top: -33.333333%; + .\32xl\:-left-60 { + left: -15rem; } - .\32xl\:-right-1\/3 { - right: -33.333333%; + .\32xl\:-left-64 { + left: -16rem; } - .\32xl\:-bottom-1\/3 { - bottom: -33.333333%; + .\32xl\:-left-72 { + left: -18rem; } - .\32xl\:-left-1\/3 { - left: -33.333333%; + .\32xl\:-left-80 { + left: -20rem; } - .\32xl\:-top-2\/3 { - top: -66.666667%; + .\32xl\:-left-96 { + left: -24rem; } - .\32xl\:-right-2\/3 { - right: -66.666667%; + .\32xl\:-left-px { + left: -1px; } - .\32xl\:-bottom-2\/3 { - bottom: -66.666667%; + .\32xl\:-left-0\.5 { + left: -0.125rem; } - .\32xl\:-left-2\/3 { - left: -66.666667%; + .\32xl\:-left-1\.5 { + left: -0.375rem; } - .\32xl\:-top-1\/4 { - top: -25%; + .\32xl\:-left-2\.5 { + left: -0.625rem; } - .\32xl\:-right-1\/4 { - right: -25%; + .\32xl\:-left-3\.5 { + left: -0.875rem; } - .\32xl\:-bottom-1\/4 { - bottom: -25%; + .\32xl\:left-1\/2 { + left: 50%; } - .\32xl\:-left-1\/4 { - left: -25%; + .\32xl\:left-1\/3 { + left: 33.333333%; } - .\32xl\:-top-2\/4 { - top: -50%; + .\32xl\:left-2\/3 { + left: 66.666667%; } - .\32xl\:-right-2\/4 { - right: -50%; + .\32xl\:left-1\/4 { + left: 25%; } - .\32xl\:-bottom-2\/4 { - bottom: -50%; + .\32xl\:left-2\/4 { + left: 50%; } - .\32xl\:-left-2\/4 { - left: -50%; + .\32xl\:left-3\/4 { + left: 75%; } - .\32xl\:-top-3\/4 { - top: -75%; + .\32xl\:left-full { + left: 100%; } - .\32xl\:-right-3\/4 { - right: -75%; + .\32xl\:-left-1\/2 { + left: -50%; } - .\32xl\:-bottom-3\/4 { - bottom: -75%; + .\32xl\:-left-1\/3 { + left: -33.333333%; } - .\32xl\:-left-3\/4 { - left: -75%; + .\32xl\:-left-2\/3 { + left: -66.666667%; } - .\32xl\:-top-full { - top: -100%; + .\32xl\:-left-1\/4 { + left: -25%; } - .\32xl\:-right-full { - right: -100%; + .\32xl\:-left-2\/4 { + left: -50%; } - .\32xl\:-bottom-full { - bottom: -100%; + .\32xl\:-left-3\/4 { + left: -75%; } .\32xl\:-left-full { @@ -155283,133 +155411,183 @@ video { --tw-scale-y: 1.5; } - .\32xl\:scale-x-0 { + .\32xl\:hover\:scale-0:hover { --tw-scale-x: 0; + --tw-scale-y: 0; } - .\32xl\:scale-x-50 { + .\32xl\:hover\:scale-50:hover { --tw-scale-x: .5; + --tw-scale-y: .5; } - .\32xl\:scale-x-75 { + .\32xl\:hover\:scale-75:hover { --tw-scale-x: .75; + --tw-scale-y: .75; } - .\32xl\:scale-x-90 { + .\32xl\:hover\:scale-90:hover { --tw-scale-x: .9; + --tw-scale-y: .9; } - .\32xl\:scale-x-95 { + .\32xl\:hover\:scale-95:hover { --tw-scale-x: .95; + --tw-scale-y: .95; } - .\32xl\:scale-x-100 { + .\32xl\:hover\:scale-100:hover { --tw-scale-x: 1; + --tw-scale-y: 1; } - .\32xl\:scale-x-105 { + .\32xl\:hover\:scale-105:hover { --tw-scale-x: 1.05; + --tw-scale-y: 1.05; } - .\32xl\:scale-x-110 { + .\32xl\:hover\:scale-110:hover { --tw-scale-x: 1.1; + --tw-scale-y: 1.1; } - .\32xl\:scale-x-125 { + .\32xl\:hover\:scale-125:hover { --tw-scale-x: 1.25; + --tw-scale-y: 1.25; } - .\32xl\:scale-x-150 { + .\32xl\:hover\:scale-150:hover { --tw-scale-x: 1.5; + --tw-scale-y: 1.5; } - .\32xl\:scale-y-0 { + .\32xl\:focus\:scale-0:focus { + --tw-scale-x: 0; --tw-scale-y: 0; } - .\32xl\:scale-y-50 { + .\32xl\:focus\:scale-50:focus { + --tw-scale-x: .5; --tw-scale-y: .5; } - .\32xl\:scale-y-75 { + .\32xl\:focus\:scale-75:focus { + --tw-scale-x: .75; --tw-scale-y: .75; } - .\32xl\:scale-y-90 { + .\32xl\:focus\:scale-90:focus { + --tw-scale-x: .9; --tw-scale-y: .9; } - .\32xl\:scale-y-95 { + .\32xl\:focus\:scale-95:focus { + --tw-scale-x: .95; --tw-scale-y: .95; } - .\32xl\:scale-y-100 { + .\32xl\:focus\:scale-100:focus { + --tw-scale-x: 1; --tw-scale-y: 1; } - .\32xl\:scale-y-105 { + .\32xl\:focus\:scale-105:focus { + --tw-scale-x: 1.05; --tw-scale-y: 1.05; } - .\32xl\:scale-y-110 { + .\32xl\:focus\:scale-110:focus { + --tw-scale-x: 1.1; --tw-scale-y: 1.1; } - .\32xl\:scale-y-125 { + .\32xl\:focus\:scale-125:focus { + --tw-scale-x: 1.25; --tw-scale-y: 1.25; } - .\32xl\:scale-y-150 { + .\32xl\:focus\:scale-150:focus { + --tw-scale-x: 1.5; --tw-scale-y: 1.5; } - .\32xl\:hover\:scale-0:hover { + .\32xl\:scale-x-0 { --tw-scale-x: 0; - --tw-scale-y: 0; } - .\32xl\:hover\:scale-50:hover { + .\32xl\:scale-x-50 { --tw-scale-x: .5; - --tw-scale-y: .5; } - .\32xl\:hover\:scale-75:hover { + .\32xl\:scale-x-75 { --tw-scale-x: .75; - --tw-scale-y: .75; } - .\32xl\:hover\:scale-90:hover { + .\32xl\:scale-x-90 { --tw-scale-x: .9; - --tw-scale-y: .9; } - .\32xl\:hover\:scale-95:hover { + .\32xl\:scale-x-95 { --tw-scale-x: .95; - --tw-scale-y: .95; } - .\32xl\:hover\:scale-100:hover { + .\32xl\:scale-x-100 { --tw-scale-x: 1; - --tw-scale-y: 1; } - .\32xl\:hover\:scale-105:hover { + .\32xl\:scale-x-105 { --tw-scale-x: 1.05; - --tw-scale-y: 1.05; } - .\32xl\:hover\:scale-110:hover { + .\32xl\:scale-x-110 { --tw-scale-x: 1.1; - --tw-scale-y: 1.1; } - .\32xl\:hover\:scale-125:hover { + .\32xl\:scale-x-125 { --tw-scale-x: 1.25; - --tw-scale-y: 1.25; } - .\32xl\:hover\:scale-150:hover { + .\32xl\:scale-x-150 { --tw-scale-x: 1.5; + } + + .\32xl\:scale-y-0 { + --tw-scale-y: 0; + } + + .\32xl\:scale-y-50 { + --tw-scale-y: .5; + } + + .\32xl\:scale-y-75 { + --tw-scale-y: .75; + } + + .\32xl\:scale-y-90 { + --tw-scale-y: .9; + } + + .\32xl\:scale-y-95 { + --tw-scale-y: .95; + } + + .\32xl\:scale-y-100 { + --tw-scale-y: 1; + } + + .\32xl\:scale-y-105 { + --tw-scale-y: 1.05; + } + + .\32xl\:scale-y-110 { + --tw-scale-y: 1.1; + } + + .\32xl\:scale-y-125 { + --tw-scale-y: 1.25; + } + + .\32xl\:scale-y-150 { --tw-scale-y: 1.5; } @@ -155493,56 +155671,6 @@ video { --tw-scale-y: 1.5; } - .\32xl\:focus\:scale-0:focus { - --tw-scale-x: 0; - --tw-scale-y: 0; - } - - .\32xl\:focus\:scale-50:focus { - --tw-scale-x: .5; - --tw-scale-y: .5; - } - - .\32xl\:focus\:scale-75:focus { - --tw-scale-x: .75; - --tw-scale-y: .75; - } - - .\32xl\:focus\:scale-90:focus { - --tw-scale-x: .9; - --tw-scale-y: .9; - } - - .\32xl\:focus\:scale-95:focus { - --tw-scale-x: .95; - --tw-scale-y: .95; - } - - .\32xl\:focus\:scale-100:focus { - --tw-scale-x: 1; - --tw-scale-y: 1; - } - - .\32xl\:focus\:scale-105:focus { - --tw-scale-x: 1.05; - --tw-scale-y: 1.05; - } - - .\32xl\:focus\:scale-110:focus { - --tw-scale-x: 1.1; - --tw-scale-y: 1.1; - } - - .\32xl\:focus\:scale-125:focus { - --tw-scale-x: 1.25; - --tw-scale-y: 1.25; - } - - .\32xl\:focus\:scale-150:focus { - --tw-scale-x: 1.5; - --tw-scale-y: 1.5; - } - .\32xl\:focus\:scale-x-0:focus { --tw-scale-x: 0; } @@ -156435,436 +156563,640 @@ video { row-gap: 0.875rem; } - .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0px * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0px * var(--tw-space-x-reverse)); margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-1 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.25rem * var(--tw-space-x-reverse)); margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.75rem * var(--tw-space-x-reverse)); margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1rem * var(--tw-space-x-reverse)); margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.25rem * var(--tw-space-x-reverse)); margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.5rem * var(--tw-space-x-reverse)); margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1.75rem * var(--tw-space-x-reverse)); margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2rem * var(--tw-space-x-reverse)); margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.25rem * var(--tw-space-x-reverse)); margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.5rem * var(--tw-space-x-reverse)); margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(2.75rem * var(--tw-space-x-reverse)); margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3rem * var(--tw-space-x-reverse)); margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(3.5rem * var(--tw-space-x-reverse)); margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(4rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(4rem * var(--tw-space-x-reverse)); margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(5rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(5rem * var(--tw-space-x-reverse)); margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(6rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(6rem * var(--tw-space-x-reverse)); margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(7rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(7rem * var(--tw-space-x-reverse)); margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(8rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(8rem * var(--tw-space-x-reverse)); margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(9rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(9rem * var(--tw-space-x-reverse)); margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(10rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(10rem * var(--tw-space-x-reverse)); margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(11rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(11rem * var(--tw-space-x-reverse)); margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(12rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(12rem * var(--tw-space-x-reverse)); margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(13rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(13rem * var(--tw-space-x-reverse)); margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(14rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(14rem * var(--tw-space-x-reverse)); margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(15rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(15rem * var(--tw-space-x-reverse)); margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(16rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(16rem * var(--tw-space-x-reverse)); margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(18rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(18rem * var(--tw-space-x-reverse)); margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(20rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(20rem * var(--tw-space-x-reverse)); margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(24rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(24rem * var(--tw-space-x-reverse)); margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(1px * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-px > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(1px * var(--tw-space-x-reverse)); margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.125rem * var(--tw-space-x-reverse)); margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.375rem * var(--tw-space-x-reverse)); margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.625rem * var(--tw-space-x-reverse)); margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); - } - .\32xl\:space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.875rem * var(--tw-space-x-reverse)); margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))); } - .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0px * var(--tw-space-x-reverse)); + margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1rem * var(--tw-space-x-reverse)); + margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2rem * var(--tw-space-x-reverse)); + margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); + margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3rem * var(--tw-space-x-reverse)); + margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); + margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-4rem * var(--tw-space-x-reverse)); + margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-5rem * var(--tw-space-x-reverse)); + margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-6rem * var(--tw-space-x-reverse)); + margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-7rem * var(--tw-space-x-reverse)); + margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-8rem * var(--tw-space-x-reverse)); + margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-9rem * var(--tw-space-x-reverse)); + margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-10rem * var(--tw-space-x-reverse)); + margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-11rem * var(--tw-space-x-reverse)); + margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-12rem * var(--tw-space-x-reverse)); + margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-13rem * var(--tw-space-x-reverse)); + margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-14rem * var(--tw-space-x-reverse)); + margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-15rem * var(--tw-space-x-reverse)); + margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-16rem * var(--tw-space-x-reverse)); + margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-18rem * var(--tw-space-x-reverse)); + margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-20rem * var(--tw-space-x-reverse)); + margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-24rem * var(--tw-space-x-reverse)); + margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-1px * var(--tw-space-x-reverse)); + margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); + margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); + } + + .\32xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(0px * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-0 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(0px * var(--tw-space-x-reverse)); - margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))); + .\32xl\:space-y-1 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-3 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-6 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-7 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-9 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-11 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-12 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-14 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-16 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(4rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-20 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(5rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-24 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(6rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-28 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(7rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-32 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(8rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-36 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(9rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-40 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(10rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-44 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(11rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-48 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(12rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-52 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(13rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-56 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(14rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-60 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(15rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-64 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(16rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-72 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(18rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-80 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(20rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-96 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(24rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-px > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(1px * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)); + } + + .\32xl\:space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)); + } + + .\32xl\:-space-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0px * var(--tw-space-y-reverse)); } .\32xl\:-space-y-1 > :not([hidden]) ~ :not([hidden]) { @@ -156873,408 +157205,204 @@ video { margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-2 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-3 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-3 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-4 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-4 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1rem * var(--tw-space-x-reverse)); - margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-6 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-6 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-7 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-7 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-8 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-8 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2rem * var(--tw-space-x-reverse)); - margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-9 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-9 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.25rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-10 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-10 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-11 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-11 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-2.75rem * var(--tw-space-x-reverse)); - margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-12 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-12 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3rem * var(--tw-space-x-reverse)); - margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-14 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-14 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-3.5rem * var(--tw-space-x-reverse)); - margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-16 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-4rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-16 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-4rem * var(--tw-space-x-reverse)); - margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-20 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-5rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-20 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-5rem * var(--tw-space-x-reverse)); - margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-24 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-6rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-24 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-6rem * var(--tw-space-x-reverse)); - margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-28 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-7rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-28 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-7rem * var(--tw-space-x-reverse)); - margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-32 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-8rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-32 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-8rem * var(--tw-space-x-reverse)); - margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-36 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-9rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-36 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-9rem * var(--tw-space-x-reverse)); - margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-40 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-10rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-40 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-10rem * var(--tw-space-x-reverse)); - margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-44 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-11rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-44 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-11rem * var(--tw-space-x-reverse)); - margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-48 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-12rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-48 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-12rem * var(--tw-space-x-reverse)); - margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-52 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-13rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-52 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-13rem * var(--tw-space-x-reverse)); - margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-56 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-14rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-56 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-14rem * var(--tw-space-x-reverse)); - margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-60 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-15rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-60 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-15rem * var(--tw-space-x-reverse)); - margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-64 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-16rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-64 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-16rem * var(--tw-space-x-reverse)); - margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-72 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-18rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-72 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-18rem * var(--tw-space-x-reverse)); - margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-80 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-20rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-80 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-20rem * var(--tw-space-x-reverse)); - margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-96 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-24rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-96 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-24rem * var(--tw-space-x-reverse)); - margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-px > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-1px * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-px > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-1px * var(--tw-space-x-reverse)); - margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-0\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.125rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-1\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.375rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-2\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-2\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.625rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:-space-y-3\.5 > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 0; margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))); margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)); } - .\32xl\:-space-x-3\.5 > :not([hidden]) ~ :not([hidden]) { - --tw-space-x-reverse: 0; - margin-right: calc(-0.875rem * var(--tw-space-x-reverse)); - margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))); - } - .\32xl\:space-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-space-y-reverse: 1; } @@ -157283,66 +157411,66 @@ video { --tw-space-x-reverse: 1; } - .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-0 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(0px * var(--tw-divide-x-reverse)); border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(2px * var(--tw-divide-x-reverse)); border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-4 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(4px * var(--tw-divide-x-reverse)); border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x-8 > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(8px * var(--tw-divide-x-reverse)); border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))); } - .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { - --tw-divide-y-reverse: 0; - border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); - border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); - } - .\32xl\:divide-x > :not([hidden]) ~ :not([hidden]) { --tw-divide-x-reverse: 0; border-right-width: calc(1px * var(--tw-divide-x-reverse)); border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))); } + .\32xl\:divide-y-0 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(0px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(2px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-4 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(4px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y-8 > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(8px * var(--tw-divide-y-reverse)); + } + + .\32xl\:divide-y > :not([hidden]) ~ :not([hidden]) { + --tw-divide-y-reverse: 0; + border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))); + border-bottom-width: calc(1px * var(--tw-divide-y-reverse)); + } + .\32xl\:divide-y-reverse > :not([hidden]) ~ :not([hidden]) { --tw-divide-y-reverse: 1; } @@ -163756,2188 +163884,1516 @@ video { --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:via-transparent { - --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .\32xl\:via-current { - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .\32xl\:via-black { - --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); - } - - .\32xl\:via-white { - --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); - } - - .\32xl\:via-gray-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); - } - - .\32xl\:via-gray-100 { - --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); - } - - .\32xl\:via-gray-200 { - --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); - } - - .\32xl\:via-gray-300 { - --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); - } - - .\32xl\:via-gray-400 { - --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); - } - - .\32xl\:via-gray-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); - } - - .\32xl\:via-gray-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); - } - - .\32xl\:via-gray-700 { - --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); - } - - .\32xl\:via-gray-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); - } - - .\32xl\:via-gray-900 { - --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); - } - - .\32xl\:via-red-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); - } - - .\32xl\:via-red-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); - } - - .\32xl\:via-red-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); - } - - .\32xl\:via-red-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); - } - - .\32xl\:via-red-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); - } - - .\32xl\:via-red-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); - } - - .\32xl\:via-red-600 { - --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); - } - - .\32xl\:via-red-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); - } - - .\32xl\:via-red-800 { - --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); - } - - .\32xl\:via-red-900 { - --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); - } - - .\32xl\:via-yellow-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); - } - - .\32xl\:via-yellow-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); - } - - .\32xl\:via-yellow-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); - } - - .\32xl\:via-yellow-300 { - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); - } - - .\32xl\:via-yellow-400 { - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); - } - - .\32xl\:via-yellow-500 { - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); - } - - .\32xl\:via-yellow-600 { - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); - } - - .\32xl\:via-yellow-700 { - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); - } - - .\32xl\:via-yellow-800 { - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); - } - - .\32xl\:via-yellow-900 { - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); - } - - .\32xl\:via-green-50 { - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); - } - - .\32xl\:via-green-100 { - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); - } - - .\32xl\:via-green-200 { - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); - } - - .\32xl\:via-green-300 { - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); - } - - .\32xl\:via-green-400 { - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); - } - - .\32xl\:via-green-500 { - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); - } - - .\32xl\:via-green-600 { - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); - } - - .\32xl\:via-green-700 { - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); - } - - .\32xl\:via-green-800 { - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); - } - - .\32xl\:via-green-900 { - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); - } - - .\32xl\:via-blue-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); - } - - .\32xl\:via-blue-100 { - --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); - } - - .\32xl\:via-blue-200 { - --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); - } - - .\32xl\:via-blue-300 { - --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); - } - - .\32xl\:via-blue-400 { - --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); - } - - .\32xl\:via-blue-500 { - --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); - } - - .\32xl\:via-blue-600 { - --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); - } - - .\32xl\:via-blue-700 { - --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); - } - - .\32xl\:via-blue-800 { - --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); - } - - .\32xl\:via-blue-900 { - --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); - } - - .\32xl\:via-indigo-50 { - --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); - } - - .\32xl\:via-indigo-100 { - --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); - } - - .\32xl\:via-indigo-200 { - --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); - } - - .\32xl\:via-indigo-300 { - --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); - } - - .\32xl\:via-indigo-400 { - --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); - } - - .\32xl\:via-indigo-500 { - --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); - } - - .\32xl\:via-indigo-600 { - --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); - } - - .\32xl\:via-indigo-700 { - --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); - } - - .\32xl\:via-indigo-800 { - --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); - } - - .\32xl\:via-indigo-900 { - --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); - } - - .\32xl\:via-purple-50 { - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); - } - - .\32xl\:via-purple-100 { - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); - } - - .\32xl\:via-purple-200 { - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); - } - - .\32xl\:via-purple-300 { - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); - } - - .\32xl\:via-purple-400 { - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); - } - - .\32xl\:via-purple-500 { - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); - } - - .\32xl\:via-purple-600 { - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); - } - - .\32xl\:via-purple-700 { - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); - } - - .\32xl\:via-purple-800 { - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); - } - - .\32xl\:via-purple-900 { - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); - } - - .\32xl\:via-pink-50 { - --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); - } - - .\32xl\:via-pink-100 { - --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); - } - - .\32xl\:via-pink-200 { - --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); - } - - .\32xl\:via-pink-300 { - --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); - } - - .\32xl\:via-pink-400 { - --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); - } - - .\32xl\:via-pink-500 { - --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); - } - - .\32xl\:via-pink-600 { - --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); - } - - .\32xl\:via-pink-700 { - --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); - } - - .\32xl\:via-pink-800 { - --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); - } - - .\32xl\:via-pink-900 { - --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); - } - - .\32xl\:to-transparent { - --tw-gradient-to: transparent; + .\32xl\:hover\:from-transparent:hover { + --tw-gradient-from: transparent; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:to-current { - --tw-gradient-to: currentColor; + .\32xl\:hover\:from-current:hover { + --tw-gradient-from: currentColor; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:to-black { - --tw-gradient-to: #000; + .\32xl\:hover\:from-black:hover { + --tw-gradient-from: #000; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:to-white { - --tw-gradient-to: #fff; + .\32xl\:hover\:from-white:hover { + --tw-gradient-from: #fff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:to-gray-50 { - --tw-gradient-to: #f9fafb; + .\32xl\:hover\:from-gray-50:hover { + --tw-gradient-from: #f9fafb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:to-gray-100 { - --tw-gradient-to: #f3f4f6; + .\32xl\:hover\:from-gray-100:hover { + --tw-gradient-from: #f3f4f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:to-gray-200 { - --tw-gradient-to: #e5e7eb; + .\32xl\:hover\:from-gray-200:hover { + --tw-gradient-from: #e5e7eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:to-gray-300 { - --tw-gradient-to: #d1d5db; + .\32xl\:hover\:from-gray-300:hover { + --tw-gradient-from: #d1d5db; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:to-gray-400 { - --tw-gradient-to: #9ca3af; + .\32xl\:hover\:from-gray-400:hover { + --tw-gradient-from: #9ca3af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:to-gray-500 { - --tw-gradient-to: #6b7280; + .\32xl\:hover\:from-gray-500:hover { + --tw-gradient-from: #6b7280; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:to-gray-600 { - --tw-gradient-to: #4b5563; + .\32xl\:hover\:from-gray-600:hover { + --tw-gradient-from: #4b5563; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:to-gray-700 { - --tw-gradient-to: #374151; + .\32xl\:hover\:from-gray-700:hover { + --tw-gradient-from: #374151; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:to-gray-800 { - --tw-gradient-to: #1f2937; + .\32xl\:hover\:from-gray-800:hover { + --tw-gradient-from: #1f2937; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:to-gray-900 { - --tw-gradient-to: #111827; + .\32xl\:hover\:from-gray-900:hover { + --tw-gradient-from: #111827; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:to-red-50 { - --tw-gradient-to: #fef2f2; + .\32xl\:hover\:from-red-50:hover { + --tw-gradient-from: #fef2f2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:to-red-100 { - --tw-gradient-to: #fee2e2; + .\32xl\:hover\:from-red-100:hover { + --tw-gradient-from: #fee2e2; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:to-red-200 { - --tw-gradient-to: #fecaca; + .\32xl\:hover\:from-red-200:hover { + --tw-gradient-from: #fecaca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:to-red-300 { - --tw-gradient-to: #fca5a5; + .\32xl\:hover\:from-red-300:hover { + --tw-gradient-from: #fca5a5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:to-red-400 { - --tw-gradient-to: #f87171; + .\32xl\:hover\:from-red-400:hover { + --tw-gradient-from: #f87171; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:to-red-500 { - --tw-gradient-to: #ef4444; + .\32xl\:hover\:from-red-500:hover { + --tw-gradient-from: #ef4444; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:to-red-600 { - --tw-gradient-to: #dc2626; + .\32xl\:hover\:from-red-600:hover { + --tw-gradient-from: #dc2626; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:to-red-700 { - --tw-gradient-to: #b91c1c; + .\32xl\:hover\:from-red-700:hover { + --tw-gradient-from: #b91c1c; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:to-red-800 { - --tw-gradient-to: #991b1b; + .\32xl\:hover\:from-red-800:hover { + --tw-gradient-from: #991b1b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:to-red-900 { - --tw-gradient-to: #7f1d1d; + .\32xl\:hover\:from-red-900:hover { + --tw-gradient-from: #7f1d1d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:to-yellow-50 { - --tw-gradient-to: #fffbeb; + .\32xl\:hover\:from-yellow-50:hover { + --tw-gradient-from: #fffbeb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:to-yellow-100 { - --tw-gradient-to: #fef3c7; + .\32xl\:hover\:from-yellow-100:hover { + --tw-gradient-from: #fef3c7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:to-yellow-200 { - --tw-gradient-to: #fde68a; + .\32xl\:hover\:from-yellow-200:hover { + --tw-gradient-from: #fde68a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:to-yellow-300 { - --tw-gradient-to: #fcd34d; + .\32xl\:hover\:from-yellow-300:hover { + --tw-gradient-from: #fcd34d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:to-yellow-400 { - --tw-gradient-to: #fbbf24; + .\32xl\:hover\:from-yellow-400:hover { + --tw-gradient-from: #fbbf24; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:to-yellow-500 { - --tw-gradient-to: #f59e0b; + .\32xl\:hover\:from-yellow-500:hover { + --tw-gradient-from: #f59e0b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:to-yellow-600 { - --tw-gradient-to: #d97706; + .\32xl\:hover\:from-yellow-600:hover { + --tw-gradient-from: #d97706; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:to-yellow-700 { - --tw-gradient-to: #b45309; + .\32xl\:hover\:from-yellow-700:hover { + --tw-gradient-from: #b45309; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:to-yellow-800 { - --tw-gradient-to: #92400e; + .\32xl\:hover\:from-yellow-800:hover { + --tw-gradient-from: #92400e; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:to-yellow-900 { - --tw-gradient-to: #78350f; + .\32xl\:hover\:from-yellow-900:hover { + --tw-gradient-from: #78350f; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:to-green-50 { - --tw-gradient-to: #ecfdf5; + .\32xl\:hover\:from-green-50:hover { + --tw-gradient-from: #ecfdf5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:to-green-100 { - --tw-gradient-to: #d1fae5; + .\32xl\:hover\:from-green-100:hover { + --tw-gradient-from: #d1fae5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:to-green-200 { - --tw-gradient-to: #a7f3d0; + .\32xl\:hover\:from-green-200:hover { + --tw-gradient-from: #a7f3d0; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:to-green-300 { - --tw-gradient-to: #6ee7b7; + .\32xl\:hover\:from-green-300:hover { + --tw-gradient-from: #6ee7b7; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:to-green-400 { - --tw-gradient-to: #34d399; + .\32xl\:hover\:from-green-400:hover { + --tw-gradient-from: #34d399; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:to-green-500 { - --tw-gradient-to: #10b981; + .\32xl\:hover\:from-green-500:hover { + --tw-gradient-from: #10b981; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:to-green-600 { - --tw-gradient-to: #059669; + .\32xl\:hover\:from-green-600:hover { + --tw-gradient-from: #059669; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:to-green-700 { - --tw-gradient-to: #047857; + .\32xl\:hover\:from-green-700:hover { + --tw-gradient-from: #047857; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:to-green-800 { - --tw-gradient-to: #065f46; + .\32xl\:hover\:from-green-800:hover { + --tw-gradient-from: #065f46; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:to-green-900 { - --tw-gradient-to: #064e3b; + .\32xl\:hover\:from-green-900:hover { + --tw-gradient-from: #064e3b; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:to-blue-50 { - --tw-gradient-to: #eff6ff; + .\32xl\:hover\:from-blue-50:hover { + --tw-gradient-from: #eff6ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:to-blue-100 { - --tw-gradient-to: #dbeafe; + .\32xl\:hover\:from-blue-100:hover { + --tw-gradient-from: #dbeafe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:to-blue-200 { - --tw-gradient-to: #bfdbfe; + .\32xl\:hover\:from-blue-200:hover { + --tw-gradient-from: #bfdbfe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:to-blue-300 { - --tw-gradient-to: #93c5fd; + .\32xl\:hover\:from-blue-300:hover { + --tw-gradient-from: #93c5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:to-blue-400 { - --tw-gradient-to: #60a5fa; + .\32xl\:hover\:from-blue-400:hover { + --tw-gradient-from: #60a5fa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:to-blue-500 { - --tw-gradient-to: #3b82f6; + .\32xl\:hover\:from-blue-500:hover { + --tw-gradient-from: #3b82f6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:to-blue-600 { - --tw-gradient-to: #2563eb; + .\32xl\:hover\:from-blue-600:hover { + --tw-gradient-from: #2563eb; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:to-blue-700 { - --tw-gradient-to: #1d4ed8; + .\32xl\:hover\:from-blue-700:hover { + --tw-gradient-from: #1d4ed8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:to-blue-800 { - --tw-gradient-to: #1e40af; + .\32xl\:hover\:from-blue-800:hover { + --tw-gradient-from: #1e40af; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:to-blue-900 { - --tw-gradient-to: #1e3a8a; + .\32xl\:hover\:from-blue-900:hover { + --tw-gradient-from: #1e3a8a; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:to-indigo-50 { - --tw-gradient-to: #eef2ff; + .\32xl\:hover\:from-indigo-50:hover { + --tw-gradient-from: #eef2ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:to-indigo-100 { - --tw-gradient-to: #e0e7ff; + .\32xl\:hover\:from-indigo-100:hover { + --tw-gradient-from: #e0e7ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:to-indigo-200 { - --tw-gradient-to: #c7d2fe; + .\32xl\:hover\:from-indigo-200:hover { + --tw-gradient-from: #c7d2fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:to-indigo-300 { - --tw-gradient-to: #a5b4fc; + .\32xl\:hover\:from-indigo-300:hover { + --tw-gradient-from: #a5b4fc; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:to-indigo-400 { - --tw-gradient-to: #818cf8; + .\32xl\:hover\:from-indigo-400:hover { + --tw-gradient-from: #818cf8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:to-indigo-500 { - --tw-gradient-to: #6366f1; + .\32xl\:hover\:from-indigo-500:hover { + --tw-gradient-from: #6366f1; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:to-indigo-600 { - --tw-gradient-to: #4f46e5; + .\32xl\:hover\:from-indigo-600:hover { + --tw-gradient-from: #4f46e5; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:to-indigo-700 { - --tw-gradient-to: #4338ca; + .\32xl\:hover\:from-indigo-700:hover { + --tw-gradient-from: #4338ca; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:to-indigo-800 { - --tw-gradient-to: #3730a3; + .\32xl\:hover\:from-indigo-800:hover { + --tw-gradient-from: #3730a3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:to-indigo-900 { - --tw-gradient-to: #312e81; + .\32xl\:hover\:from-indigo-900:hover { + --tw-gradient-from: #312e81; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:to-purple-50 { - --tw-gradient-to: #f5f3ff; + .\32xl\:hover\:from-purple-50:hover { + --tw-gradient-from: #f5f3ff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:to-purple-100 { - --tw-gradient-to: #ede9fe; + .\32xl\:hover\:from-purple-100:hover { + --tw-gradient-from: #ede9fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:to-purple-200 { - --tw-gradient-to: #ddd6fe; + .\32xl\:hover\:from-purple-200:hover { + --tw-gradient-from: #ddd6fe; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:to-purple-300 { - --tw-gradient-to: #c4b5fd; + .\32xl\:hover\:from-purple-300:hover { + --tw-gradient-from: #c4b5fd; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:to-purple-400 { - --tw-gradient-to: #a78bfa; + .\32xl\:hover\:from-purple-400:hover { + --tw-gradient-from: #a78bfa; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:to-purple-500 { - --tw-gradient-to: #8b5cf6; + .\32xl\:hover\:from-purple-500:hover { + --tw-gradient-from: #8b5cf6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:to-purple-600 { - --tw-gradient-to: #7c3aed; + .\32xl\:hover\:from-purple-600:hover { + --tw-gradient-from: #7c3aed; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:to-purple-700 { - --tw-gradient-to: #6d28d9; + .\32xl\:hover\:from-purple-700:hover { + --tw-gradient-from: #6d28d9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:to-purple-800 { - --tw-gradient-to: #5b21b6; + .\32xl\:hover\:from-purple-800:hover { + --tw-gradient-from: #5b21b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:to-purple-900 { - --tw-gradient-to: #4c1d95; + .\32xl\:hover\:from-purple-900:hover { + --tw-gradient-from: #4c1d95; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:to-pink-50 { - --tw-gradient-to: #fdf2f8; + .\32xl\:hover\:from-pink-50:hover { + --tw-gradient-from: #fdf2f8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:to-pink-100 { - --tw-gradient-to: #fce7f3; + .\32xl\:hover\:from-pink-100:hover { + --tw-gradient-from: #fce7f3; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:to-pink-200 { - --tw-gradient-to: #fbcfe8; + .\32xl\:hover\:from-pink-200:hover { + --tw-gradient-from: #fbcfe8; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:to-pink-300 { - --tw-gradient-to: #f9a8d4; + .\32xl\:hover\:from-pink-300:hover { + --tw-gradient-from: #f9a8d4; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:to-pink-400 { - --tw-gradient-to: #f472b6; + .\32xl\:hover\:from-pink-400:hover { + --tw-gradient-from: #f472b6; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:to-pink-500 { - --tw-gradient-to: #ec4899; + .\32xl\:hover\:from-pink-500:hover { + --tw-gradient-from: #ec4899; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:to-pink-600 { - --tw-gradient-to: #db2777; + .\32xl\:hover\:from-pink-600:hover { + --tw-gradient-from: #db2777; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:to-pink-700 { - --tw-gradient-to: #be185d; + .\32xl\:hover\:from-pink-700:hover { + --tw-gradient-from: #be185d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:to-pink-800 { - --tw-gradient-to: #9d174d; + .\32xl\:hover\:from-pink-800:hover { + --tw-gradient-from: #9d174d; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:to-pink-900 { - --tw-gradient-to: #831843; + .\32xl\:hover\:from-pink-900:hover { + --tw-gradient-from: #831843; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:hover\:from-transparent:hover { + .\32xl\:focus\:from-transparent:focus { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:from-current:hover { + .\32xl\:focus\:from-current:focus { --tw-gradient-from: currentColor; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:from-black:hover { + .\32xl\:focus\:from-black:focus { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:from-white:hover { + .\32xl\:focus\:from-white:focus { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:from-gray-50:hover { + .\32xl\:focus\:from-gray-50:focus { --tw-gradient-from: #f9fafb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:hover\:from-gray-100:hover { + .\32xl\:focus\:from-gray-100:focus { --tw-gradient-from: #f3f4f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:hover\:from-gray-200:hover { + .\32xl\:focus\:from-gray-200:focus { --tw-gradient-from: #e5e7eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:hover\:from-gray-300:hover { + .\32xl\:focus\:from-gray-300:focus { --tw-gradient-from: #d1d5db; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:hover\:from-gray-400:hover { + .\32xl\:focus\:from-gray-400:focus { --tw-gradient-from: #9ca3af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:hover\:from-gray-500:hover { + .\32xl\:focus\:from-gray-500:focus { --tw-gradient-from: #6b7280; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:hover\:from-gray-600:hover { + .\32xl\:focus\:from-gray-600:focus { --tw-gradient-from: #4b5563; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:hover\:from-gray-700:hover { + .\32xl\:focus\:from-gray-700:focus { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:hover\:from-gray-800:hover { + .\32xl\:focus\:from-gray-800:focus { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:hover\:from-gray-900:hover { + .\32xl\:focus\:from-gray-900:focus { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:hover\:from-red-50:hover { + .\32xl\:focus\:from-red-50:focus { --tw-gradient-from: #fef2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:hover\:from-red-100:hover { + .\32xl\:focus\:from-red-100:focus { --tw-gradient-from: #fee2e2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:hover\:from-red-200:hover { + .\32xl\:focus\:from-red-200:focus { --tw-gradient-from: #fecaca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:hover\:from-red-300:hover { + .\32xl\:focus\:from-red-300:focus { --tw-gradient-from: #fca5a5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:hover\:from-red-400:hover { + .\32xl\:focus\:from-red-400:focus { --tw-gradient-from: #f87171; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:hover\:from-red-500:hover { + .\32xl\:focus\:from-red-500:focus { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:hover\:from-red-600:hover { + .\32xl\:focus\:from-red-600:focus { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:hover\:from-red-700:hover { + .\32xl\:focus\:from-red-700:focus { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:hover\:from-red-800:hover { + .\32xl\:focus\:from-red-800:focus { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:hover\:from-red-900:hover { + .\32xl\:focus\:from-red-900:focus { --tw-gradient-from: #7f1d1d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:hover\:from-yellow-50:hover { + .\32xl\:focus\:from-yellow-50:focus { --tw-gradient-from: #fffbeb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:hover\:from-yellow-100:hover { + .\32xl\:focus\:from-yellow-100:focus { --tw-gradient-from: #fef3c7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:hover\:from-yellow-200:hover { + .\32xl\:focus\:from-yellow-200:focus { --tw-gradient-from: #fde68a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:hover\:from-yellow-300:hover { + .\32xl\:focus\:from-yellow-300:focus { --tw-gradient-from: #fcd34d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:hover\:from-yellow-400:hover { + .\32xl\:focus\:from-yellow-400:focus { --tw-gradient-from: #fbbf24; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:hover\:from-yellow-500:hover { + .\32xl\:focus\:from-yellow-500:focus { --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:hover\:from-yellow-600:hover { + .\32xl\:focus\:from-yellow-600:focus { --tw-gradient-from: #d97706; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:hover\:from-yellow-700:hover { + .\32xl\:focus\:from-yellow-700:focus { --tw-gradient-from: #b45309; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:hover\:from-yellow-800:hover { + .\32xl\:focus\:from-yellow-800:focus { --tw-gradient-from: #92400e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:hover\:from-yellow-900:hover { + .\32xl\:focus\:from-yellow-900:focus { --tw-gradient-from: #78350f; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:hover\:from-green-50:hover { + .\32xl\:focus\:from-green-50:focus { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:hover\:from-green-100:hover { + .\32xl\:focus\:from-green-100:focus { --tw-gradient-from: #d1fae5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:hover\:from-green-200:hover { + .\32xl\:focus\:from-green-200:focus { --tw-gradient-from: #a7f3d0; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:hover\:from-green-300:hover { + .\32xl\:focus\:from-green-300:focus { --tw-gradient-from: #6ee7b7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:hover\:from-green-400:hover { + .\32xl\:focus\:from-green-400:focus { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:hover\:from-green-500:hover { + .\32xl\:focus\:from-green-500:focus { --tw-gradient-from: #10b981; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:hover\:from-green-600:hover { + .\32xl\:focus\:from-green-600:focus { --tw-gradient-from: #059669; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:hover\:from-green-700:hover { + .\32xl\:focus\:from-green-700:focus { --tw-gradient-from: #047857; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:hover\:from-green-800:hover { + .\32xl\:focus\:from-green-800:focus { --tw-gradient-from: #065f46; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:hover\:from-green-900:hover { + .\32xl\:focus\:from-green-900:focus { --tw-gradient-from: #064e3b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:hover\:from-blue-50:hover { + .\32xl\:focus\:from-blue-50:focus { --tw-gradient-from: #eff6ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:hover\:from-blue-100:hover { + .\32xl\:focus\:from-blue-100:focus { --tw-gradient-from: #dbeafe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:hover\:from-blue-200:hover { + .\32xl\:focus\:from-blue-200:focus { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:hover\:from-blue-300:hover { + .\32xl\:focus\:from-blue-300:focus { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:hover\:from-blue-400:hover { + .\32xl\:focus\:from-blue-400:focus { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:hover\:from-blue-500:hover { + .\32xl\:focus\:from-blue-500:focus { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:hover\:from-blue-600:hover { + .\32xl\:focus\:from-blue-600:focus { --tw-gradient-from: #2563eb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:hover\:from-blue-700:hover { + .\32xl\:focus\:from-blue-700:focus { --tw-gradient-from: #1d4ed8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:hover\:from-blue-800:hover { + .\32xl\:focus\:from-blue-800:focus { --tw-gradient-from: #1e40af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:hover\:from-blue-900:hover { + .\32xl\:focus\:from-blue-900:focus { --tw-gradient-from: #1e3a8a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:hover\:from-indigo-50:hover { + .\32xl\:focus\:from-indigo-50:focus { --tw-gradient-from: #eef2ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:hover\:from-indigo-100:hover { + .\32xl\:focus\:from-indigo-100:focus { --tw-gradient-from: #e0e7ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:hover\:from-indigo-200:hover { + .\32xl\:focus\:from-indigo-200:focus { --tw-gradient-from: #c7d2fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:hover\:from-indigo-300:hover { + .\32xl\:focus\:from-indigo-300:focus { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:hover\:from-indigo-400:hover { + .\32xl\:focus\:from-indigo-400:focus { --tw-gradient-from: #818cf8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:hover\:from-indigo-500:hover { + .\32xl\:focus\:from-indigo-500:focus { --tw-gradient-from: #6366f1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:hover\:from-indigo-600:hover { + .\32xl\:focus\:from-indigo-600:focus { --tw-gradient-from: #4f46e5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:hover\:from-indigo-700:hover { + .\32xl\:focus\:from-indigo-700:focus { --tw-gradient-from: #4338ca; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:hover\:from-indigo-800:hover { + .\32xl\:focus\:from-indigo-800:focus { --tw-gradient-from: #3730a3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:hover\:from-indigo-900:hover { + .\32xl\:focus\:from-indigo-900:focus { --tw-gradient-from: #312e81; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:hover\:from-purple-50:hover { + .\32xl\:focus\:from-purple-50:focus { --tw-gradient-from: #f5f3ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:hover\:from-purple-100:hover { + .\32xl\:focus\:from-purple-100:focus { --tw-gradient-from: #ede9fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:hover\:from-purple-200:hover { + .\32xl\:focus\:from-purple-200:focus { --tw-gradient-from: #ddd6fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:hover\:from-purple-300:hover { + .\32xl\:focus\:from-purple-300:focus { --tw-gradient-from: #c4b5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:hover\:from-purple-400:hover { + .\32xl\:focus\:from-purple-400:focus { --tw-gradient-from: #a78bfa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:hover\:from-purple-500:hover { + .\32xl\:focus\:from-purple-500:focus { --tw-gradient-from: #8b5cf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:hover\:from-purple-600:hover { + .\32xl\:focus\:from-purple-600:focus { --tw-gradient-from: #7c3aed; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:hover\:from-purple-700:hover { + .\32xl\:focus\:from-purple-700:focus { --tw-gradient-from: #6d28d9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:hover\:from-purple-800:hover { + .\32xl\:focus\:from-purple-800:focus { --tw-gradient-from: #5b21b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:hover\:from-purple-900:hover { + .\32xl\:focus\:from-purple-900:focus { --tw-gradient-from: #4c1d95; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:hover\:from-pink-50:hover { + .\32xl\:focus\:from-pink-50:focus { --tw-gradient-from: #fdf2f8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:hover\:from-pink-100:hover { + .\32xl\:focus\:from-pink-100:focus { --tw-gradient-from: #fce7f3; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:hover\:from-pink-200:hover { + .\32xl\:focus\:from-pink-200:focus { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:hover\:from-pink-300:hover { + .\32xl\:focus\:from-pink-300:focus { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:hover\:from-pink-400:hover { + .\32xl\:focus\:from-pink-400:focus { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:hover\:from-pink-500:hover { + .\32xl\:focus\:from-pink-500:focus { --tw-gradient-from: #ec4899; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:hover\:from-pink-600:hover { + .\32xl\:focus\:from-pink-600:focus { --tw-gradient-from: #db2777; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:hover\:from-pink-700:hover { + .\32xl\:focus\:from-pink-700:focus { --tw-gradient-from: #be185d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:hover\:from-pink-800:hover { + .\32xl\:focus\:from-pink-800:focus { --tw-gradient-from: #9d174d; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:hover\:from-pink-900:hover { + .\32xl\:focus\:from-pink-900:focus { --tw-gradient-from: #831843; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:hover\:via-transparent:hover { + .\32xl\:via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:via-current:hover { + .\32xl\:via-current { --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:via-black:hover { + .\32xl\:via-black { --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:hover\:via-white:hover { + .\32xl\:via-white { --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:hover\:via-gray-50:hover { + .\32xl\:via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:hover\:via-gray-100:hover { + .\32xl\:via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:hover\:via-gray-200:hover { + .\32xl\:via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:hover\:via-gray-300:hover { + .\32xl\:via-gray-300 { --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:hover\:via-gray-400:hover { + .\32xl\:via-gray-400 { --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:hover\:via-gray-500:hover { + .\32xl\:via-gray-500 { --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:hover\:via-gray-600:hover { + .\32xl\:via-gray-600 { --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:hover\:via-gray-700:hover { + .\32xl\:via-gray-700 { --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:hover\:via-gray-800:hover { + .\32xl\:via-gray-800 { --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:hover\:via-gray-900:hover { + .\32xl\:via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:hover\:via-red-50:hover { + .\32xl\:via-red-50 { --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:hover\:via-red-100:hover { + .\32xl\:via-red-100 { --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:hover\:via-red-200:hover { + .\32xl\:via-red-200 { --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:hover\:via-red-300:hover { + .\32xl\:via-red-300 { --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:hover\:via-red-400:hover { + .\32xl\:via-red-400 { --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:hover\:via-red-500:hover { + .\32xl\:via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:hover\:via-red-600:hover { + .\32xl\:via-red-600 { --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:hover\:via-red-700:hover { + .\32xl\:via-red-700 { --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:hover\:via-red-800:hover { + .\32xl\:via-red-800 { --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:hover\:via-red-900:hover { + .\32xl\:via-red-900 { --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:hover\:via-yellow-50:hover { + .\32xl\:via-yellow-50 { --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:hover\:via-yellow-100:hover { + .\32xl\:via-yellow-100 { --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:hover\:via-yellow-200:hover { + .\32xl\:via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:hover\:via-yellow-300:hover { + .\32xl\:via-yellow-300 { --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:hover\:via-yellow-400:hover { + .\32xl\:via-yellow-400 { --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:hover\:via-yellow-500:hover { + .\32xl\:via-yellow-500 { --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:hover\:via-yellow-600:hover { + .\32xl\:via-yellow-600 { --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:hover\:via-yellow-700:hover { + .\32xl\:via-yellow-700 { --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:hover\:via-yellow-800:hover { + .\32xl\:via-yellow-800 { --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:hover\:via-yellow-900:hover { + .\32xl\:via-yellow-900 { --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:hover\:via-green-50:hover { + .\32xl\:via-green-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:hover\:via-green-100:hover { + .\32xl\:via-green-100 { --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:hover\:via-green-200:hover { + .\32xl\:via-green-200 { --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:hover\:via-green-300:hover { + .\32xl\:via-green-300 { --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:hover\:via-green-400:hover { + .\32xl\:via-green-400 { --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:hover\:via-green-500:hover { + .\32xl\:via-green-500 { --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:hover\:via-green-600:hover { + .\32xl\:via-green-600 { --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:hover\:via-green-700:hover { + .\32xl\:via-green-700 { --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:hover\:via-green-800:hover { + .\32xl\:via-green-800 { --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:hover\:via-green-900:hover { + .\32xl\:via-green-900 { --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:hover\:via-blue-50:hover { + .\32xl\:via-blue-50 { --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:hover\:via-blue-100:hover { + .\32xl\:via-blue-100 { --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:hover\:via-blue-200:hover { + .\32xl\:via-blue-200 { --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:hover\:via-blue-300:hover { + .\32xl\:via-blue-300 { --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:hover\:via-blue-400:hover { + .\32xl\:via-blue-400 { --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:hover\:via-blue-500:hover { + .\32xl\:via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:hover\:via-blue-600:hover { + .\32xl\:via-blue-600 { --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:hover\:via-blue-700:hover { + .\32xl\:via-blue-700 { --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:hover\:via-blue-800:hover { + .\32xl\:via-blue-800 { --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:hover\:via-blue-900:hover { + .\32xl\:via-blue-900 { --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:hover\:via-indigo-50:hover { + .\32xl\:via-indigo-50 { --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:hover\:via-indigo-100:hover { + .\32xl\:via-indigo-100 { --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:hover\:via-indigo-200:hover { + .\32xl\:via-indigo-200 { --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:hover\:via-indigo-300:hover { + .\32xl\:via-indigo-300 { --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:hover\:via-indigo-400:hover { + .\32xl\:via-indigo-400 { --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:hover\:via-indigo-500:hover { + .\32xl\:via-indigo-500 { --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:hover\:via-indigo-600:hover { + .\32xl\:via-indigo-600 { --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:hover\:via-indigo-700:hover { + .\32xl\:via-indigo-700 { --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:hover\:via-indigo-800:hover { + .\32xl\:via-indigo-800 { --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:hover\:via-indigo-900:hover { + .\32xl\:via-indigo-900 { --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:hover\:via-purple-50:hover { + .\32xl\:via-purple-50 { --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:hover\:via-purple-100:hover { + .\32xl\:via-purple-100 { --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:hover\:via-purple-200:hover { + .\32xl\:via-purple-200 { --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:hover\:via-purple-300:hover { + .\32xl\:via-purple-300 { --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:hover\:via-purple-400:hover { + .\32xl\:via-purple-400 { --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:hover\:via-purple-500:hover { + .\32xl\:via-purple-500 { --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:hover\:via-purple-600:hover { + .\32xl\:via-purple-600 { --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:hover\:via-purple-700:hover { + .\32xl\:via-purple-700 { --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:hover\:via-purple-800:hover { + .\32xl\:via-purple-800 { --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:hover\:via-purple-900:hover { + .\32xl\:via-purple-900 { --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:hover\:via-pink-50:hover { + .\32xl\:via-pink-50 { --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:hover\:via-pink-100:hover { + .\32xl\:via-pink-100 { --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:hover\:via-pink-200:hover { + .\32xl\:via-pink-200 { --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:hover\:via-pink-300:hover { + .\32xl\:via-pink-300 { --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:hover\:via-pink-400:hover { + .\32xl\:via-pink-400 { --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:hover\:via-pink-500:hover { + .\32xl\:via-pink-500 { --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:hover\:via-pink-600:hover { + .\32xl\:via-pink-600 { --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:hover\:via-pink-700:hover { + .\32xl\:via-pink-700 { --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:hover\:via-pink-800:hover { + .\32xl\:via-pink-800 { --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:hover\:via-pink-900:hover { + .\32xl\:via-pink-900 { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } - .\32xl\:hover\:to-transparent:hover { - --tw-gradient-to: transparent; - } - - .\32xl\:hover\:to-current:hover { - --tw-gradient-to: currentColor; - } - - .\32xl\:hover\:to-black:hover { - --tw-gradient-to: #000; - } - - .\32xl\:hover\:to-white:hover { - --tw-gradient-to: #fff; - } - - .\32xl\:hover\:to-gray-50:hover { - --tw-gradient-to: #f9fafb; - } - - .\32xl\:hover\:to-gray-100:hover { - --tw-gradient-to: #f3f4f6; - } - - .\32xl\:hover\:to-gray-200:hover { - --tw-gradient-to: #e5e7eb; - } - - .\32xl\:hover\:to-gray-300:hover { - --tw-gradient-to: #d1d5db; - } - - .\32xl\:hover\:to-gray-400:hover { - --tw-gradient-to: #9ca3af; - } - - .\32xl\:hover\:to-gray-500:hover { - --tw-gradient-to: #6b7280; - } - - .\32xl\:hover\:to-gray-600:hover { - --tw-gradient-to: #4b5563; - } - - .\32xl\:hover\:to-gray-700:hover { - --tw-gradient-to: #374151; - } - - .\32xl\:hover\:to-gray-800:hover { - --tw-gradient-to: #1f2937; - } - - .\32xl\:hover\:to-gray-900:hover { - --tw-gradient-to: #111827; - } - - .\32xl\:hover\:to-red-50:hover { - --tw-gradient-to: #fef2f2; - } - - .\32xl\:hover\:to-red-100:hover { - --tw-gradient-to: #fee2e2; - } - - .\32xl\:hover\:to-red-200:hover { - --tw-gradient-to: #fecaca; - } - - .\32xl\:hover\:to-red-300:hover { - --tw-gradient-to: #fca5a5; - } - - .\32xl\:hover\:to-red-400:hover { - --tw-gradient-to: #f87171; - } - - .\32xl\:hover\:to-red-500:hover { - --tw-gradient-to: #ef4444; - } - - .\32xl\:hover\:to-red-600:hover { - --tw-gradient-to: #dc2626; - } - - .\32xl\:hover\:to-red-700:hover { - --tw-gradient-to: #b91c1c; - } - - .\32xl\:hover\:to-red-800:hover { - --tw-gradient-to: #991b1b; - } - - .\32xl\:hover\:to-red-900:hover { - --tw-gradient-to: #7f1d1d; - } - - .\32xl\:hover\:to-yellow-50:hover { - --tw-gradient-to: #fffbeb; - } - - .\32xl\:hover\:to-yellow-100:hover { - --tw-gradient-to: #fef3c7; - } - - .\32xl\:hover\:to-yellow-200:hover { - --tw-gradient-to: #fde68a; - } - - .\32xl\:hover\:to-yellow-300:hover { - --tw-gradient-to: #fcd34d; - } - - .\32xl\:hover\:to-yellow-400:hover { - --tw-gradient-to: #fbbf24; - } - - .\32xl\:hover\:to-yellow-500:hover { - --tw-gradient-to: #f59e0b; - } - - .\32xl\:hover\:to-yellow-600:hover { - --tw-gradient-to: #d97706; - } - - .\32xl\:hover\:to-yellow-700:hover { - --tw-gradient-to: #b45309; - } - - .\32xl\:hover\:to-yellow-800:hover { - --tw-gradient-to: #92400e; - } - - .\32xl\:hover\:to-yellow-900:hover { - --tw-gradient-to: #78350f; - } - - .\32xl\:hover\:to-green-50:hover { - --tw-gradient-to: #ecfdf5; - } - - .\32xl\:hover\:to-green-100:hover { - --tw-gradient-to: #d1fae5; - } - - .\32xl\:hover\:to-green-200:hover { - --tw-gradient-to: #a7f3d0; - } - - .\32xl\:hover\:to-green-300:hover { - --tw-gradient-to: #6ee7b7; - } - - .\32xl\:hover\:to-green-400:hover { - --tw-gradient-to: #34d399; - } - - .\32xl\:hover\:to-green-500:hover { - --tw-gradient-to: #10b981; - } - - .\32xl\:hover\:to-green-600:hover { - --tw-gradient-to: #059669; - } - - .\32xl\:hover\:to-green-700:hover { - --tw-gradient-to: #047857; - } - - .\32xl\:hover\:to-green-800:hover { - --tw-gradient-to: #065f46; - } - - .\32xl\:hover\:to-green-900:hover { - --tw-gradient-to: #064e3b; - } - - .\32xl\:hover\:to-blue-50:hover { - --tw-gradient-to: #eff6ff; - } - - .\32xl\:hover\:to-blue-100:hover { - --tw-gradient-to: #dbeafe; - } - - .\32xl\:hover\:to-blue-200:hover { - --tw-gradient-to: #bfdbfe; - } - - .\32xl\:hover\:to-blue-300:hover { - --tw-gradient-to: #93c5fd; - } - - .\32xl\:hover\:to-blue-400:hover { - --tw-gradient-to: #60a5fa; - } - - .\32xl\:hover\:to-blue-500:hover { - --tw-gradient-to: #3b82f6; - } - - .\32xl\:hover\:to-blue-600:hover { - --tw-gradient-to: #2563eb; - } - - .\32xl\:hover\:to-blue-700:hover { - --tw-gradient-to: #1d4ed8; - } - - .\32xl\:hover\:to-blue-800:hover { - --tw-gradient-to: #1e40af; - } - - .\32xl\:hover\:to-blue-900:hover { - --tw-gradient-to: #1e3a8a; - } - - .\32xl\:hover\:to-indigo-50:hover { - --tw-gradient-to: #eef2ff; - } - - .\32xl\:hover\:to-indigo-100:hover { - --tw-gradient-to: #e0e7ff; - } - - .\32xl\:hover\:to-indigo-200:hover { - --tw-gradient-to: #c7d2fe; - } - - .\32xl\:hover\:to-indigo-300:hover { - --tw-gradient-to: #a5b4fc; - } - - .\32xl\:hover\:to-indigo-400:hover { - --tw-gradient-to: #818cf8; - } - - .\32xl\:hover\:to-indigo-500:hover { - --tw-gradient-to: #6366f1; - } - - .\32xl\:hover\:to-indigo-600:hover { - --tw-gradient-to: #4f46e5; - } - - .\32xl\:hover\:to-indigo-700:hover { - --tw-gradient-to: #4338ca; - } - - .\32xl\:hover\:to-indigo-800:hover { - --tw-gradient-to: #3730a3; - } - - .\32xl\:hover\:to-indigo-900:hover { - --tw-gradient-to: #312e81; - } - - .\32xl\:hover\:to-purple-50:hover { - --tw-gradient-to: #f5f3ff; - } - - .\32xl\:hover\:to-purple-100:hover { - --tw-gradient-to: #ede9fe; - } - - .\32xl\:hover\:to-purple-200:hover { - --tw-gradient-to: #ddd6fe; - } - - .\32xl\:hover\:to-purple-300:hover { - --tw-gradient-to: #c4b5fd; - } - - .\32xl\:hover\:to-purple-400:hover { - --tw-gradient-to: #a78bfa; - } - - .\32xl\:hover\:to-purple-500:hover { - --tw-gradient-to: #8b5cf6; - } - - .\32xl\:hover\:to-purple-600:hover { - --tw-gradient-to: #7c3aed; - } - - .\32xl\:hover\:to-purple-700:hover { - --tw-gradient-to: #6d28d9; - } - - .\32xl\:hover\:to-purple-800:hover { - --tw-gradient-to: #5b21b6; - } - - .\32xl\:hover\:to-purple-900:hover { - --tw-gradient-to: #4c1d95; - } - - .\32xl\:hover\:to-pink-50:hover { - --tw-gradient-to: #fdf2f8; - } - - .\32xl\:hover\:to-pink-100:hover { - --tw-gradient-to: #fce7f3; - } - - .\32xl\:hover\:to-pink-200:hover { - --tw-gradient-to: #fbcfe8; - } - - .\32xl\:hover\:to-pink-300:hover { - --tw-gradient-to: #f9a8d4; - } - - .\32xl\:hover\:to-pink-400:hover { - --tw-gradient-to: #f472b6; - } - - .\32xl\:hover\:to-pink-500:hover { - --tw-gradient-to: #ec4899; - } - - .\32xl\:hover\:to-pink-600:hover { - --tw-gradient-to: #db2777; - } - - .\32xl\:hover\:to-pink-700:hover { - --tw-gradient-to: #be185d; - } - - .\32xl\:hover\:to-pink-800:hover { - --tw-gradient-to: #9d174d; - } - - .\32xl\:hover\:to-pink-900:hover { - --tw-gradient-to: #831843; - } - - .\32xl\:focus\:from-transparent:focus { - --tw-gradient-from: transparent; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:hover\:via-transparent:hover { + --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus\:from-current:focus { - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:hover\:via-current:hover { + --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus\:from-black:focus { - --tw-gradient-from: #000; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); + .\32xl\:hover\:via-black:hover { + --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)); } - .\32xl\:focus\:from-white:focus { - --tw-gradient-from: #fff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); + .\32xl\:hover\:via-white:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); } - .\32xl\:focus\:from-gray-50:focus { - --tw-gradient-from: #f9fafb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0)); + .\32xl\:hover\:via-gray-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); } - .\32xl\:focus\:from-gray-100:focus { - --tw-gradient-from: #f3f4f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(243, 244, 246, 0)); + .\32xl\:hover\:via-gray-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); } - .\32xl\:focus\:from-gray-200:focus { - --tw-gradient-from: #e5e7eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(229, 231, 235, 0)); + .\32xl\:hover\:via-gray-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); } - .\32xl\:focus\:from-gray-300:focus { - --tw-gradient-from: #d1d5db; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 213, 219, 0)); + .\32xl\:hover\:via-gray-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1d5db, var(--tw-gradient-to, rgba(209, 213, 219, 0)); } - .\32xl\:focus\:from-gray-400:focus { - --tw-gradient-from: #9ca3af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(156, 163, 175, 0)); + .\32xl\:hover\:via-gray-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9ca3af, var(--tw-gradient-to, rgba(156, 163, 175, 0)); } - .\32xl\:focus\:from-gray-500:focus { - --tw-gradient-from: #6b7280; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 114, 128, 0)); + .\32xl\:hover\:via-gray-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6b7280, var(--tw-gradient-to, rgba(107, 114, 128, 0)); } - .\32xl\:focus\:from-gray-600:focus { - --tw-gradient-from: #4b5563; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(75, 85, 99, 0)); + .\32xl\:hover\:via-gray-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4b5563, var(--tw-gradient-to, rgba(75, 85, 99, 0)); } - .\32xl\:focus\:from-gray-700:focus { - --tw-gradient-from: #374151; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); + .\32xl\:hover\:via-gray-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #374151, var(--tw-gradient-to, rgba(55, 65, 81, 0)); } - .\32xl\:focus\:from-gray-800:focus { - --tw-gradient-from: #1f2937; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); + .\32xl\:hover\:via-gray-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1f2937, var(--tw-gradient-to, rgba(31, 41, 55, 0)); } - .\32xl\:focus\:from-gray-900:focus { - --tw-gradient-from: #111827; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); + .\32xl\:hover\:via-gray-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); } - .\32xl\:focus\:from-red-50:focus { - --tw-gradient-from: #fef2f2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 242, 242, 0)); + .\32xl\:hover\:via-red-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef2f2, var(--tw-gradient-to, rgba(254, 242, 242, 0)); } - .\32xl\:focus\:from-red-100:focus { - --tw-gradient-from: #fee2e2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 226, 226, 0)); + .\32xl\:hover\:via-red-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fee2e2, var(--tw-gradient-to, rgba(254, 226, 226, 0)); } - .\32xl\:focus\:from-red-200:focus { - --tw-gradient-from: #fecaca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 202, 202, 0)); + .\32xl\:hover\:via-red-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fecaca, var(--tw-gradient-to, rgba(254, 202, 202, 0)); } - .\32xl\:focus\:from-red-300:focus { - --tw-gradient-from: #fca5a5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 165, 165, 0)); + .\32xl\:hover\:via-red-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fca5a5, var(--tw-gradient-to, rgba(252, 165, 165, 0)); } - .\32xl\:focus\:from-red-400:focus { - --tw-gradient-from: #f87171; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 113, 113, 0)); + .\32xl\:hover\:via-red-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f87171, var(--tw-gradient-to, rgba(248, 113, 113, 0)); } - .\32xl\:focus\:from-red-500:focus { - --tw-gradient-from: #ef4444; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); + .\32xl\:hover\:via-red-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); } - .\32xl\:focus\:from-red-600:focus { - --tw-gradient-from: #dc2626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); + .\32xl\:hover\:via-red-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dc2626, var(--tw-gradient-to, rgba(220, 38, 38, 0)); } - .\32xl\:focus\:from-red-700:focus { - --tw-gradient-from: #b91c1c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); + .\32xl\:hover\:via-red-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b91c1c, var(--tw-gradient-to, rgba(185, 28, 28, 0)); } - .\32xl\:focus\:from-red-800:focus { - --tw-gradient-from: #991b1b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); + .\32xl\:hover\:via-red-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #991b1b, var(--tw-gradient-to, rgba(153, 27, 27, 0)); } - .\32xl\:focus\:from-red-900:focus { - --tw-gradient-from: #7f1d1d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(127, 29, 29, 0)); + .\32xl\:hover\:via-red-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7f1d1d, var(--tw-gradient-to, rgba(127, 29, 29, 0)); } - .\32xl\:focus\:from-yellow-50:focus { - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 251, 235, 0)); + .\32xl\:hover\:via-yellow-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgba(255, 251, 235, 0)); } - .\32xl\:focus\:from-yellow-100:focus { - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(254, 243, 199, 0)); + .\32xl\:hover\:via-yellow-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgba(254, 243, 199, 0)); } - .\32xl\:focus\:from-yellow-200:focus { - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 230, 138, 0)); + .\32xl\:hover\:via-yellow-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgba(253, 230, 138, 0)); } - .\32xl\:focus\:from-yellow-300:focus { - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 211, 77, 0)); + .\32xl\:hover\:via-yellow-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgba(252, 211, 77, 0)); } - .\32xl\:focus\:from-yellow-400:focus { - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 191, 36, 0)); + .\32xl\:hover\:via-yellow-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgba(251, 191, 36, 0)); } - .\32xl\:focus\:from-yellow-500:focus { - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 158, 11, 0)); + .\32xl\:hover\:via-yellow-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgba(245, 158, 11, 0)); } - .\32xl\:focus\:from-yellow-600:focus { - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 119, 6, 0)); + .\32xl\:hover\:via-yellow-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgba(217, 119, 6, 0)); } - .\32xl\:focus\:from-yellow-700:focus { - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(180, 83, 9, 0)); + .\32xl\:hover\:via-yellow-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgba(180, 83, 9, 0)); } - .\32xl\:focus\:from-yellow-800:focus { - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(146, 64, 14, 0)); + .\32xl\:hover\:via-yellow-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgba(146, 64, 14, 0)); } - .\32xl\:focus\:from-yellow-900:focus { - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(120, 53, 15, 0)); + .\32xl\:hover\:via-yellow-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgba(120, 53, 15, 0)); } - .\32xl\:focus\:from-green-50:focus { - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 253, 245, 0)); + .\32xl\:hover\:via-green-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgba(236, 253, 245, 0)); } - .\32xl\:focus\:from-green-100:focus { - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(209, 250, 229, 0)); + .\32xl\:hover\:via-green-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgba(209, 250, 229, 0)); } - .\32xl\:focus\:from-green-200:focus { - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 243, 208, 0)); + .\32xl\:hover\:via-green-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgba(167, 243, 208, 0)); } - .\32xl\:focus\:from-green-300:focus { - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 231, 183, 0)); + .\32xl\:hover\:via-green-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgba(110, 231, 183, 0)); } - .\32xl\:focus\:from-green-400:focus { - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); + .\32xl\:hover\:via-green-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgba(52, 211, 153, 0)); } - .\32xl\:focus\:from-green-500:focus { - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(16, 185, 129, 0)); + .\32xl\:hover\:via-green-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgba(16, 185, 129, 0)); } - .\32xl\:focus\:from-green-600:focus { - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(5, 150, 105, 0)); + .\32xl\:hover\:via-green-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgba(5, 150, 105, 0)); } - .\32xl\:focus\:from-green-700:focus { - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(4, 120, 87, 0)); + .\32xl\:hover\:via-green-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgba(4, 120, 87, 0)); } - .\32xl\:focus\:from-green-800:focus { - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 95, 70, 0)); + .\32xl\:hover\:via-green-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgba(6, 95, 70, 0)); } - .\32xl\:focus\:from-green-900:focus { - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 78, 59, 0)); + .\32xl\:hover\:via-green-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgba(6, 78, 59, 0)); } - .\32xl\:focus\:from-blue-50:focus { - --tw-gradient-from: #eff6ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0)); + .\32xl\:hover\:via-blue-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eff6ff, var(--tw-gradient-to, rgba(239, 246, 255, 0)); } - .\32xl\:focus\:from-blue-100:focus { - --tw-gradient-from: #dbeafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 234, 254, 0)); + .\32xl\:hover\:via-blue-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #dbeafe, var(--tw-gradient-to, rgba(219, 234, 254, 0)); } - .\32xl\:focus\:from-blue-200:focus { - --tw-gradient-from: #bfdbfe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); + .\32xl\:hover\:via-blue-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #bfdbfe, var(--tw-gradient-to, rgba(191, 219, 254, 0)); } - .\32xl\:focus\:from-blue-300:focus { - --tw-gradient-from: #93c5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); + .\32xl\:hover\:via-blue-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #93c5fd, var(--tw-gradient-to, rgba(147, 197, 253, 0)); } - .\32xl\:focus\:from-blue-400:focus { - --tw-gradient-from: #60a5fa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); + .\32xl\:hover\:via-blue-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #60a5fa, var(--tw-gradient-to, rgba(96, 165, 250, 0)); } - .\32xl\:focus\:from-blue-500:focus { - --tw-gradient-from: #3b82f6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); + .\32xl\:hover\:via-blue-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); } - .\32xl\:focus\:from-blue-600:focus { - --tw-gradient-from: #2563eb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0)); + .\32xl\:hover\:via-blue-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #2563eb, var(--tw-gradient-to, rgba(37, 99, 235, 0)); } - .\32xl\:focus\:from-blue-700:focus { - --tw-gradient-from: #1d4ed8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(29, 78, 216, 0)); + .\32xl\:hover\:via-blue-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1d4ed8, var(--tw-gradient-to, rgba(29, 78, 216, 0)); } - .\32xl\:focus\:from-blue-800:focus { - --tw-gradient-from: #1e40af; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 64, 175, 0)); + .\32xl\:hover\:via-blue-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgba(30, 64, 175, 0)); } - .\32xl\:focus\:from-blue-900:focus { - --tw-gradient-from: #1e3a8a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0)); + .\32xl\:hover\:via-blue-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #1e3a8a, var(--tw-gradient-to, rgba(30, 58, 138, 0)); } - .\32xl\:focus\:from-indigo-50:focus { - --tw-gradient-from: #eef2ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(238, 242, 255, 0)); + .\32xl\:hover\:via-indigo-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #eef2ff, var(--tw-gradient-to, rgba(238, 242, 255, 0)); } - .\32xl\:focus\:from-indigo-100:focus { - --tw-gradient-from: #e0e7ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(224, 231, 255, 0)); + .\32xl\:hover\:via-indigo-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #e0e7ff, var(--tw-gradient-to, rgba(224, 231, 255, 0)); } - .\32xl\:focus\:from-indigo-200:focus { - --tw-gradient-from: #c7d2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(199, 210, 254, 0)); + .\32xl\:hover\:via-indigo-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c7d2fe, var(--tw-gradient-to, rgba(199, 210, 254, 0)); } - .\32xl\:focus\:from-indigo-300:focus { - --tw-gradient-from: #a5b4fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); + .\32xl\:hover\:via-indigo-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a5b4fc, var(--tw-gradient-to, rgba(165, 180, 252, 0)); } - .\32xl\:focus\:from-indigo-400:focus { - --tw-gradient-from: #818cf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 140, 248, 0)); + .\32xl\:hover\:via-indigo-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #818cf8, var(--tw-gradient-to, rgba(129, 140, 248, 0)); } - .\32xl\:focus\:from-indigo-500:focus { - --tw-gradient-from: #6366f1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(99, 102, 241, 0)); + .\32xl\:hover\:via-indigo-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6366f1, var(--tw-gradient-to, rgba(99, 102, 241, 0)); } - .\32xl\:focus\:from-indigo-600:focus { - --tw-gradient-from: #4f46e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(79, 70, 229, 0)); + .\32xl\:hover\:via-indigo-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4f46e5, var(--tw-gradient-to, rgba(79, 70, 229, 0)); } - .\32xl\:focus\:from-indigo-700:focus { - --tw-gradient-from: #4338ca; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(67, 56, 202, 0)); + .\32xl\:hover\:via-indigo-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4338ca, var(--tw-gradient-to, rgba(67, 56, 202, 0)); } - .\32xl\:focus\:from-indigo-800:focus { - --tw-gradient-from: #3730a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 48, 163, 0)); + .\32xl\:hover\:via-indigo-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #3730a3, var(--tw-gradient-to, rgba(55, 48, 163, 0)); } - .\32xl\:focus\:from-indigo-900:focus { - --tw-gradient-from: #312e81; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 46, 129, 0)); + .\32xl\:hover\:via-indigo-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #312e81, var(--tw-gradient-to, rgba(49, 46, 129, 0)); } - .\32xl\:focus\:from-purple-50:focus { - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 243, 255, 0)); + .\32xl\:hover\:via-purple-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgba(245, 243, 255, 0)); } - .\32xl\:focus\:from-purple-100:focus { - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(237, 233, 254, 0)); + .\32xl\:hover\:via-purple-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgba(237, 233, 254, 0)); } - .\32xl\:focus\:from-purple-200:focus { - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(221, 214, 254, 0)); + .\32xl\:hover\:via-purple-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgba(221, 214, 254, 0)); } - .\32xl\:focus\:from-purple-300:focus { - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 181, 253, 0)); + .\32xl\:hover\:via-purple-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgba(196, 181, 253, 0)); } - .\32xl\:focus\:from-purple-400:focus { - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(167, 139, 250, 0)); + .\32xl\:hover\:via-purple-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgba(167, 139, 250, 0)); } - .\32xl\:focus\:from-purple-500:focus { - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0)); + .\32xl\:hover\:via-purple-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgba(139, 92, 246, 0)); } - .\32xl\:focus\:from-purple-600:focus { - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(124, 58, 237, 0)); + .\32xl\:hover\:via-purple-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgba(124, 58, 237, 0)); } - .\32xl\:focus\:from-purple-700:focus { - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(109, 40, 217, 0)); + .\32xl\:hover\:via-purple-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgba(109, 40, 217, 0)); } - .\32xl\:focus\:from-purple-800:focus { - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(91, 33, 182, 0)); + .\32xl\:hover\:via-purple-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgba(91, 33, 182, 0)); } - .\32xl\:focus\:from-purple-900:focus { - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(76, 29, 149, 0)); + .\32xl\:hover\:via-purple-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgba(76, 29, 149, 0)); } - .\32xl\:focus\:from-pink-50:focus { - --tw-gradient-from: #fdf2f8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 242, 248, 0)); + .\32xl\:hover\:via-pink-50:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fdf2f8, var(--tw-gradient-to, rgba(253, 242, 248, 0)); } - .\32xl\:focus\:from-pink-100:focus { - --tw-gradient-from: #fce7f3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 231, 243, 0)); + .\32xl\:hover\:via-pink-100:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fce7f3, var(--tw-gradient-to, rgba(252, 231, 243, 0)); } - .\32xl\:focus\:from-pink-200:focus { - --tw-gradient-from: #fbcfe8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); + .\32xl\:hover\:via-pink-200:hover { + --tw-gradient-stops: var(--tw-gradient-from), #fbcfe8, var(--tw-gradient-to, rgba(251, 207, 232, 0)); } - .\32xl\:focus\:from-pink-300:focus { - --tw-gradient-from: #f9a8d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); + .\32xl\:hover\:via-pink-300:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f9a8d4, var(--tw-gradient-to, rgba(249, 168, 212, 0)); } - .\32xl\:focus\:from-pink-400:focus { - --tw-gradient-from: #f472b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); + .\32xl\:hover\:via-pink-400:hover { + --tw-gradient-stops: var(--tw-gradient-from), #f472b6, var(--tw-gradient-to, rgba(244, 114, 182, 0)); } - .\32xl\:focus\:from-pink-500:focus { - --tw-gradient-from: #ec4899; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(236, 72, 153, 0)); + .\32xl\:hover\:via-pink-500:hover { + --tw-gradient-stops: var(--tw-gradient-from), #ec4899, var(--tw-gradient-to, rgba(236, 72, 153, 0)); } - .\32xl\:focus\:from-pink-600:focus { - --tw-gradient-from: #db2777; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219, 39, 119, 0)); + .\32xl\:hover\:via-pink-600:hover { + --tw-gradient-stops: var(--tw-gradient-from), #db2777, var(--tw-gradient-to, rgba(219, 39, 119, 0)); } - .\32xl\:focus\:from-pink-700:focus { - --tw-gradient-from: #be185d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 24, 93, 0)); + .\32xl\:hover\:via-pink-700:hover { + --tw-gradient-stops: var(--tw-gradient-from), #be185d, var(--tw-gradient-to, rgba(190, 24, 93, 0)); } - .\32xl\:focus\:from-pink-800:focus { - --tw-gradient-from: #9d174d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(157, 23, 77, 0)); + .\32xl\:hover\:via-pink-800:hover { + --tw-gradient-stops: var(--tw-gradient-from), #9d174d, var(--tw-gradient-to, rgba(157, 23, 77, 0)); } - .\32xl\:focus\:from-pink-900:focus { - --tw-gradient-from: #831843; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 24, 67, 0)); + .\32xl\:hover\:via-pink-900:hover { + --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } .\32xl\:focus\:via-transparent:focus { @@ -166276,6 +165732,678 @@ video { --tw-gradient-stops: var(--tw-gradient-from), #831843, var(--tw-gradient-to, rgba(131, 24, 67, 0)); } + .\32xl\:to-transparent { + --tw-gradient-to: transparent; + } + + .\32xl\:to-current { + --tw-gradient-to: currentColor; + } + + .\32xl\:to-black { + --tw-gradient-to: #000; + } + + .\32xl\:to-white { + --tw-gradient-to: #fff; + } + + .\32xl\:to-gray-50 { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:to-gray-100 { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:to-gray-200 { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:to-gray-300 { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:to-gray-400 { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:to-gray-500 { + --tw-gradient-to: #6b7280; + } + + .\32xl\:to-gray-600 { + --tw-gradient-to: #4b5563; + } + + .\32xl\:to-gray-700 { + --tw-gradient-to: #374151; + } + + .\32xl\:to-gray-800 { + --tw-gradient-to: #1f2937; + } + + .\32xl\:to-gray-900 { + --tw-gradient-to: #111827; + } + + .\32xl\:to-red-50 { + --tw-gradient-to: #fef2f2; + } + + .\32xl\:to-red-100 { + --tw-gradient-to: #fee2e2; + } + + .\32xl\:to-red-200 { + --tw-gradient-to: #fecaca; + } + + .\32xl\:to-red-300 { + --tw-gradient-to: #fca5a5; + } + + .\32xl\:to-red-400 { + --tw-gradient-to: #f87171; + } + + .\32xl\:to-red-500 { + --tw-gradient-to: #ef4444; + } + + .\32xl\:to-red-600 { + --tw-gradient-to: #dc2626; + } + + .\32xl\:to-red-700 { + --tw-gradient-to: #b91c1c; + } + + .\32xl\:to-red-800 { + --tw-gradient-to: #991b1b; + } + + .\32xl\:to-red-900 { + --tw-gradient-to: #7f1d1d; + } + + .\32xl\:to-yellow-50 { + --tw-gradient-to: #fffbeb; + } + + .\32xl\:to-yellow-100 { + --tw-gradient-to: #fef3c7; + } + + .\32xl\:to-yellow-200 { + --tw-gradient-to: #fde68a; + } + + .\32xl\:to-yellow-300 { + --tw-gradient-to: #fcd34d; + } + + .\32xl\:to-yellow-400 { + --tw-gradient-to: #fbbf24; + } + + .\32xl\:to-yellow-500 { + --tw-gradient-to: #f59e0b; + } + + .\32xl\:to-yellow-600 { + --tw-gradient-to: #d97706; + } + + .\32xl\:to-yellow-700 { + --tw-gradient-to: #b45309; + } + + .\32xl\:to-yellow-800 { + --tw-gradient-to: #92400e; + } + + .\32xl\:to-yellow-900 { + --tw-gradient-to: #78350f; + } + + .\32xl\:to-green-50 { + --tw-gradient-to: #ecfdf5; + } + + .\32xl\:to-green-100 { + --tw-gradient-to: #d1fae5; + } + + .\32xl\:to-green-200 { + --tw-gradient-to: #a7f3d0; + } + + .\32xl\:to-green-300 { + --tw-gradient-to: #6ee7b7; + } + + .\32xl\:to-green-400 { + --tw-gradient-to: #34d399; + } + + .\32xl\:to-green-500 { + --tw-gradient-to: #10b981; + } + + .\32xl\:to-green-600 { + --tw-gradient-to: #059669; + } + + .\32xl\:to-green-700 { + --tw-gradient-to: #047857; + } + + .\32xl\:to-green-800 { + --tw-gradient-to: #065f46; + } + + .\32xl\:to-green-900 { + --tw-gradient-to: #064e3b; + } + + .\32xl\:to-blue-50 { + --tw-gradient-to: #eff6ff; + } + + .\32xl\:to-blue-100 { + --tw-gradient-to: #dbeafe; + } + + .\32xl\:to-blue-200 { + --tw-gradient-to: #bfdbfe; + } + + .\32xl\:to-blue-300 { + --tw-gradient-to: #93c5fd; + } + + .\32xl\:to-blue-400 { + --tw-gradient-to: #60a5fa; + } + + .\32xl\:to-blue-500 { + --tw-gradient-to: #3b82f6; + } + + .\32xl\:to-blue-600 { + --tw-gradient-to: #2563eb; + } + + .\32xl\:to-blue-700 { + --tw-gradient-to: #1d4ed8; + } + + .\32xl\:to-blue-800 { + --tw-gradient-to: #1e40af; + } + + .\32xl\:to-blue-900 { + --tw-gradient-to: #1e3a8a; + } + + .\32xl\:to-indigo-50 { + --tw-gradient-to: #eef2ff; + } + + .\32xl\:to-indigo-100 { + --tw-gradient-to: #e0e7ff; + } + + .\32xl\:to-indigo-200 { + --tw-gradient-to: #c7d2fe; + } + + .\32xl\:to-indigo-300 { + --tw-gradient-to: #a5b4fc; + } + + .\32xl\:to-indigo-400 { + --tw-gradient-to: #818cf8; + } + + .\32xl\:to-indigo-500 { + --tw-gradient-to: #6366f1; + } + + .\32xl\:to-indigo-600 { + --tw-gradient-to: #4f46e5; + } + + .\32xl\:to-indigo-700 { + --tw-gradient-to: #4338ca; + } + + .\32xl\:to-indigo-800 { + --tw-gradient-to: #3730a3; + } + + .\32xl\:to-indigo-900 { + --tw-gradient-to: #312e81; + } + + .\32xl\:to-purple-50 { + --tw-gradient-to: #f5f3ff; + } + + .\32xl\:to-purple-100 { + --tw-gradient-to: #ede9fe; + } + + .\32xl\:to-purple-200 { + --tw-gradient-to: #ddd6fe; + } + + .\32xl\:to-purple-300 { + --tw-gradient-to: #c4b5fd; + } + + .\32xl\:to-purple-400 { + --tw-gradient-to: #a78bfa; + } + + .\32xl\:to-purple-500 { + --tw-gradient-to: #8b5cf6; + } + + .\32xl\:to-purple-600 { + --tw-gradient-to: #7c3aed; + } + + .\32xl\:to-purple-700 { + --tw-gradient-to: #6d28d9; + } + + .\32xl\:to-purple-800 { + --tw-gradient-to: #5b21b6; + } + + .\32xl\:to-purple-900 { + --tw-gradient-to: #4c1d95; + } + + .\32xl\:to-pink-50 { + --tw-gradient-to: #fdf2f8; + } + + .\32xl\:to-pink-100 { + --tw-gradient-to: #fce7f3; + } + + .\32xl\:to-pink-200 { + --tw-gradient-to: #fbcfe8; + } + + .\32xl\:to-pink-300 { + --tw-gradient-to: #f9a8d4; + } + + .\32xl\:to-pink-400 { + --tw-gradient-to: #f472b6; + } + + .\32xl\:to-pink-500 { + --tw-gradient-to: #ec4899; + } + + .\32xl\:to-pink-600 { + --tw-gradient-to: #db2777; + } + + .\32xl\:to-pink-700 { + --tw-gradient-to: #be185d; + } + + .\32xl\:to-pink-800 { + --tw-gradient-to: #9d174d; + } + + .\32xl\:to-pink-900 { + --tw-gradient-to: #831843; + } + + .\32xl\:hover\:to-transparent:hover { + --tw-gradient-to: transparent; + } + + .\32xl\:hover\:to-current:hover { + --tw-gradient-to: currentColor; + } + + .\32xl\:hover\:to-black:hover { + --tw-gradient-to: #000; + } + + .\32xl\:hover\:to-white:hover { + --tw-gradient-to: #fff; + } + + .\32xl\:hover\:to-gray-50:hover { + --tw-gradient-to: #f9fafb; + } + + .\32xl\:hover\:to-gray-100:hover { + --tw-gradient-to: #f3f4f6; + } + + .\32xl\:hover\:to-gray-200:hover { + --tw-gradient-to: #e5e7eb; + } + + .\32xl\:hover\:to-gray-300:hover { + --tw-gradient-to: #d1d5db; + } + + .\32xl\:hover\:to-gray-400:hover { + --tw-gradient-to: #9ca3af; + } + + .\32xl\:hover\:to-gray-500:hover { + --tw-gradient-to: #6b7280; + } + + .\32xl\:hover\:to-gray-600:hover { + --tw-gradient-to: #4b5563; + } + + .\32xl\:hover\:to-gray-700:hover { + --tw-gradient-to: #374151; + } + + .\32xl\:hover\:to-gray-800:hover { + --tw-gradient-to: #1f2937; + } + + .\32xl\:hover\:to-gray-900:hover { + --tw-gradient-to: #111827; + } + + .\32xl\:hover\:to-red-50:hover { + --tw-gradient-to: #fef2f2; + } + + .\32xl\:hover\:to-red-100:hover { + --tw-gradient-to: #fee2e2; + } + + .\32xl\:hover\:to-red-200:hover { + --tw-gradient-to: #fecaca; + } + + .\32xl\:hover\:to-red-300:hover { + --tw-gradient-to: #fca5a5; + } + + .\32xl\:hover\:to-red-400:hover { + --tw-gradient-to: #f87171; + } + + .\32xl\:hover\:to-red-500:hover { + --tw-gradient-to: #ef4444; + } + + .\32xl\:hover\:to-red-600:hover { + --tw-gradient-to: #dc2626; + } + + .\32xl\:hover\:to-red-700:hover { + --tw-gradient-to: #b91c1c; + } + + .\32xl\:hover\:to-red-800:hover { + --tw-gradient-to: #991b1b; + } + + .\32xl\:hover\:to-red-900:hover { + --tw-gradient-to: #7f1d1d; + } + + .\32xl\:hover\:to-yellow-50:hover { + --tw-gradient-to: #fffbeb; + } + + .\32xl\:hover\:to-yellow-100:hover { + --tw-gradient-to: #fef3c7; + } + + .\32xl\:hover\:to-yellow-200:hover { + --tw-gradient-to: #fde68a; + } + + .\32xl\:hover\:to-yellow-300:hover { + --tw-gradient-to: #fcd34d; + } + + .\32xl\:hover\:to-yellow-400:hover { + --tw-gradient-to: #fbbf24; + } + + .\32xl\:hover\:to-yellow-500:hover { + --tw-gradient-to: #f59e0b; + } + + .\32xl\:hover\:to-yellow-600:hover { + --tw-gradient-to: #d97706; + } + + .\32xl\:hover\:to-yellow-700:hover { + --tw-gradient-to: #b45309; + } + + .\32xl\:hover\:to-yellow-800:hover { + --tw-gradient-to: #92400e; + } + + .\32xl\:hover\:to-yellow-900:hover { + --tw-gradient-to: #78350f; + } + + .\32xl\:hover\:to-green-50:hover { + --tw-gradient-to: #ecfdf5; + } + + .\32xl\:hover\:to-green-100:hover { + --tw-gradient-to: #d1fae5; + } + + .\32xl\:hover\:to-green-200:hover { + --tw-gradient-to: #a7f3d0; + } + + .\32xl\:hover\:to-green-300:hover { + --tw-gradient-to: #6ee7b7; + } + + .\32xl\:hover\:to-green-400:hover { + --tw-gradient-to: #34d399; + } + + .\32xl\:hover\:to-green-500:hover { + --tw-gradient-to: #10b981; + } + + .\32xl\:hover\:to-green-600:hover { + --tw-gradient-to: #059669; + } + + .\32xl\:hover\:to-green-700:hover { + --tw-gradient-to: #047857; + } + + .\32xl\:hover\:to-green-800:hover { + --tw-gradient-to: #065f46; + } + + .\32xl\:hover\:to-green-900:hover { + --tw-gradient-to: #064e3b; + } + + .\32xl\:hover\:to-blue-50:hover { + --tw-gradient-to: #eff6ff; + } + + .\32xl\:hover\:to-blue-100:hover { + --tw-gradient-to: #dbeafe; + } + + .\32xl\:hover\:to-blue-200:hover { + --tw-gradient-to: #bfdbfe; + } + + .\32xl\:hover\:to-blue-300:hover { + --tw-gradient-to: #93c5fd; + } + + .\32xl\:hover\:to-blue-400:hover { + --tw-gradient-to: #60a5fa; + } + + .\32xl\:hover\:to-blue-500:hover { + --tw-gradient-to: #3b82f6; + } + + .\32xl\:hover\:to-blue-600:hover { + --tw-gradient-to: #2563eb; + } + + .\32xl\:hover\:to-blue-700:hover { + --tw-gradient-to: #1d4ed8; + } + + .\32xl\:hover\:to-blue-800:hover { + --tw-gradient-to: #1e40af; + } + + .\32xl\:hover\:to-blue-900:hover { + --tw-gradient-to: #1e3a8a; + } + + .\32xl\:hover\:to-indigo-50:hover { + --tw-gradient-to: #eef2ff; + } + + .\32xl\:hover\:to-indigo-100:hover { + --tw-gradient-to: #e0e7ff; + } + + .\32xl\:hover\:to-indigo-200:hover { + --tw-gradient-to: #c7d2fe; + } + + .\32xl\:hover\:to-indigo-300:hover { + --tw-gradient-to: #a5b4fc; + } + + .\32xl\:hover\:to-indigo-400:hover { + --tw-gradient-to: #818cf8; + } + + .\32xl\:hover\:to-indigo-500:hover { + --tw-gradient-to: #6366f1; + } + + .\32xl\:hover\:to-indigo-600:hover { + --tw-gradient-to: #4f46e5; + } + + .\32xl\:hover\:to-indigo-700:hover { + --tw-gradient-to: #4338ca; + } + + .\32xl\:hover\:to-indigo-800:hover { + --tw-gradient-to: #3730a3; + } + + .\32xl\:hover\:to-indigo-900:hover { + --tw-gradient-to: #312e81; + } + + .\32xl\:hover\:to-purple-50:hover { + --tw-gradient-to: #f5f3ff; + } + + .\32xl\:hover\:to-purple-100:hover { + --tw-gradient-to: #ede9fe; + } + + .\32xl\:hover\:to-purple-200:hover { + --tw-gradient-to: #ddd6fe; + } + + .\32xl\:hover\:to-purple-300:hover { + --tw-gradient-to: #c4b5fd; + } + + .\32xl\:hover\:to-purple-400:hover { + --tw-gradient-to: #a78bfa; + } + + .\32xl\:hover\:to-purple-500:hover { + --tw-gradient-to: #8b5cf6; + } + + .\32xl\:hover\:to-purple-600:hover { + --tw-gradient-to: #7c3aed; + } + + .\32xl\:hover\:to-purple-700:hover { + --tw-gradient-to: #6d28d9; + } + + .\32xl\:hover\:to-purple-800:hover { + --tw-gradient-to: #5b21b6; + } + + .\32xl\:hover\:to-purple-900:hover { + --tw-gradient-to: #4c1d95; + } + + .\32xl\:hover\:to-pink-50:hover { + --tw-gradient-to: #fdf2f8; + } + + .\32xl\:hover\:to-pink-100:hover { + --tw-gradient-to: #fce7f3; + } + + .\32xl\:hover\:to-pink-200:hover { + --tw-gradient-to: #fbcfe8; + } + + .\32xl\:hover\:to-pink-300:hover { + --tw-gradient-to: #f9a8d4; + } + + .\32xl\:hover\:to-pink-400:hover { + --tw-gradient-to: #f472b6; + } + + .\32xl\:hover\:to-pink-500:hover { + --tw-gradient-to: #ec4899; + } + + .\32xl\:hover\:to-pink-600:hover { + --tw-gradient-to: #db2777; + } + + .\32xl\:hover\:to-pink-700:hover { + --tw-gradient-to: #be185d; + } + + .\32xl\:hover\:to-pink-800:hover { + --tw-gradient-to: #9d174d; + } + + .\32xl\:hover\:to-pink-900:hover { + --tw-gradient-to: #831843; + } + .\32xl\:focus\:to-transparent:focus { --tw-gradient-to: transparent; } @@ -172285,10 +172413,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:ring-inset { - --tw-ring-inset: inset; - } - .\32xl\:focus-within\:ring-0:focus-within { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -172325,10 +172449,6 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } - .\32xl\:focus-within\:ring-inset:focus-within { - --tw-ring-inset: inset; - } - .\32xl\:focus\:ring-0:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color); @@ -172365,6 +172485,14 @@ video { box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); } + .\32xl\:ring-inset { + --tw-ring-inset: inset; + } + + .\32xl\:focus-within\:ring-inset:focus-within { + --tw-ring-inset: inset; + } + .\32xl\:focus\:ring-inset:focus { --tw-ring-inset: inset; } @@ -175125,6 +175253,38 @@ video { backdrop-filter: none; } + .\32xl\:backdrop-blur-0 { + --tw-backdrop-blur: blur(0); + } + + .\32xl\:backdrop-blur-sm { + --tw-backdrop-blur: blur(4px); + } + + .\32xl\:backdrop-blur { + --tw-backdrop-blur: blur(8px); + } + + .\32xl\:backdrop-blur-md { + --tw-backdrop-blur: blur(12px); + } + + .\32xl\:backdrop-blur-lg { + --tw-backdrop-blur: blur(16px); + } + + .\32xl\:backdrop-blur-xl { + --tw-backdrop-blur: blur(24px); + } + + .\32xl\:backdrop-blur-2xl { + --tw-backdrop-blur: blur(40px); + } + + .\32xl\:backdrop-blur-3xl { + --tw-backdrop-blur: blur(64px); + } + .\32xl\:backdrop-brightness-0 { --tw-backdrop-brightness: brightness(0); } diff --git a/tests/jit/arbitrary-values.test.css b/tests/jit/arbitrary-values.test.css index 1bd64a6a531c..cec88fb5384f 100644 --- a/tests/jit/arbitrary-values.test.css +++ b/tests/jit/arbitrary-values.test.css @@ -120,6 +120,15 @@ .max-w-\[var\(--width\)\] { max-width: var(--width); } +.flex-\[var\(--flex\)\] { + flex: var(--flex); +} +.flex-shrink-\[var\(--shrink\)\] { + flex-shrink: var(--shrink); +} +.flex-grow-\[var\(--grow\)\] { + flex-grow: var(--grow); +} .rotate-\[23deg\] { --tw-rotate: 23deg; } diff --git a/tests/jit/arbitrary-values.test.html b/tests/jit/arbitrary-values.test.html index 4c7478f7f9f5..0f89ce245b3a 100644 --- a/tests/jit/arbitrary-values.test.html +++ b/tests/jit/arbitrary-values.test.html @@ -44,6 +44,9 @@
+
+
+
diff --git a/tests/jit/prefix.test.css b/tests/jit/prefix.test.css index edb2c478c834..704acd839d6d 100644 --- a/tests/jit/prefix.test.css +++ b/tests/jit/prefix.test.css @@ -50,6 +50,17 @@ .tw--ml-4 { margin-left: -1rem; } +.tw-animate-ping { + animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; +} +@keyframes tw-spin { + to { + transform: rotate(360deg); + } +} +.tw-animate-spin { + animation: tw-spin 1s linear infinite; +} .tw-font-bold { font-weight: 700; } @@ -62,7 +73,7 @@ .tw-group:hover .group-hover\:focus-within\:tw-text-left:focus-within { text-align: left; } -[dir='rtl'] .rtl\:active\:tw-text-center:active { +[dir="rtl"] .rtl\:active\:tw-text-center:active { text-align: center; } @media (prefers-reduced-motion: no-preference) { diff --git a/tests/jit/prefix.test.html b/tests/jit/prefix.test.html index 51ed71d4da94..69be55f076dd 100644 --- a/tests/jit/prefix.test.html +++ b/tests/jit/prefix.test.html @@ -15,3 +15,5 @@
+
+
diff --git a/tests/jit/prefix.test.js b/tests/jit/prefix.test.js index a88e783c9748..553a1ce7be1b 100644 --- a/tests/jit/prefix.test.js +++ b/tests/jit/prefix.test.js @@ -16,7 +16,15 @@ test('prefix', () => { mode: 'jit', purge: [path.resolve(__dirname, './prefix.test.html')], corePlugins: { preflight: false }, - theme: {}, + theme: { + animation: { + spin: 'spin 1s linear infinite', + ping: 'ping 1s cubic-bezier(0, 0, 0.2, 1) infinite', + }, + keyframes: { + spin: { to: { transform: 'rotate(360deg)' } }, + }, + }, plugins: [ function ({ addComponents, addUtilities }) { addComponents({ diff --git a/tests/plugins/animation.test.js b/tests/plugins/animation.test.js index 80a6f59ed87b..be6d733760cd 100644 --- a/tests/plugins/animation.test.js +++ b/tests/plugins/animation.test.js @@ -32,19 +32,24 @@ test('defining animation and keyframes', () => { @keyframes spin { to { transform: rotate(360deg); } } + } + } + + @layer utilities { + @variants { @keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } } } } - + @layer utilities { @variants { .animate-none { animation: none; } .animate-spin { animation: spin 1s linear infinite; } .animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; } } - } + } `) }) @@ -75,6 +80,11 @@ test('defining animation and keyframes with prefix', () => { @keyframes tw-spin { to { transform: rotate(360deg); } } + } + } + + @layer utilities { + @variants { @keyframes tw-ping { 75%, 100% { transform: scale(2); opacity: 0; } } diff --git a/tests/plugins/backgroundColor.test.js b/tests/plugins/backgroundColor.test.js deleted file mode 100644 index 2b8fb4373939..000000000000 --- a/tests/plugins/backgroundColor.test.js +++ /dev/null @@ -1,28 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/backgroundColor' - -test('defining color as a function', () => { - const config = { - theme: { - backgroundColor: { - black: ({ opacityVariable: _ }) => 'black', - }, - }, - variants: { - backgroundColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.bg-black': { - 'background-color': 'black', - }, - }, - [], - ], - ]) -}) diff --git a/tests/plugins/borderColor.test.js b/tests/plugins/borderColor.test.js deleted file mode 100644 index a21bbe0a33fb..000000000000 --- a/tests/plugins/borderColor.test.js +++ /dev/null @@ -1,28 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/borderColor' - -test('defining color as a function', () => { - const config = { - theme: { - borderColor: { - black: ({ opacityVariable: _ }) => 'black', - }, - }, - variants: { - borderColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.border-black': { - 'border-color': 'black', - }, - }, - [], - ], - ]) -}) diff --git a/tests/plugins/boxShadow.test.js b/tests/plugins/boxShadow.test.js deleted file mode 100644 index 6d4f7fec850d..000000000000 --- a/tests/plugins/boxShadow.test.js +++ /dev/null @@ -1,79 +0,0 @@ -import _ from 'lodash' -import escapeClassName from '../../src/util/escapeClassName' -import plugin from '../../src/plugins/boxShadow' - -test('box shadow can use DEFAULT keyword and negative prefix syntax', () => { - const addedUtilities = [] - - const config = { - theme: { - boxShadow: { - DEFAULT: '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)', - md: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)', - '-': 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)', - '-md': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)', - }, - }, - variants: { - boxShadow: ['responsive'], - }, - } - - const getConfigValue = (path, defaultValue) => _.get(config, path, defaultValue) - const pluginApi = { - config: getConfigValue, - e: escapeClassName, - theme: (path, defaultValue) => getConfigValue(`theme.${path}`, defaultValue), - variants: (path, defaultValue) => { - if (_.isArray(config.variants)) { - return config.variants - } - - return getConfigValue(`variants.${path}`, defaultValue) - }, - addUtilities(utilities, options) { - addedUtilities.push({ - utilities, - options, - }) - }, - } - - plugin()(pluginApi) - - expect(addedUtilities).toEqual([ - { - utilities: { - '*': { - '--tw-shadow': '0 0 #0000', - }, - }, - options: { respectImportant: false }, - }, - { - utilities: { - '.shadow': { - '--tw-shadow': '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)', - 'box-shadow': - 'var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)', - }, - '.shadow-md': { - '--tw-shadow': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)', - 'box-shadow': - 'var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)', - }, - '.-shadow': { - '--tw-shadow': 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)', - 'box-shadow': - 'var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)', - }, - '.-shadow-md': { - '--tw-shadow': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)', - 'box-shadow': - 'var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)', - }, - }, - options: ['responsive'], - }, - ]) -}) diff --git a/tests/plugins/divideColor.test.js b/tests/plugins/divideColor.test.js deleted file mode 100644 index c17ebf708ae8..000000000000 --- a/tests/plugins/divideColor.test.js +++ /dev/null @@ -1,28 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/divideColor' - -test('defining color as a function', () => { - const config = { - theme: { - divideColor: { - black: ({ opacityVariable: _ }) => 'black', - }, - }, - variants: { - divideColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.divide-black > :not([hidden]) ~ :not([hidden])': { - 'border-color': 'black', - }, - }, - [], - ], - ]) -}) diff --git a/tests/plugins/divideWidth.test.js b/tests/plugins/divideWidth.test.js deleted file mode 100644 index b3239e768196..000000000000 --- a/tests/plugins/divideWidth.test.js +++ /dev/null @@ -1,74 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/divideWidth' - -test('generating divide width utilities', () => { - const config = { - theme: { - divideWidth: { - DEFAULT: '1px', - 0: '0', - 2: '2px', - 4: '4px', - }, - }, - variants: { - divideWidth: ['responsive'], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.divide-y > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-y-reverse': '0', - 'border-top-width': 'calc(1px * calc(1 - var(--tw-divide-y-reverse)))', - 'border-bottom-width': 'calc(1px * var(--tw-divide-y-reverse))', - }, - '.divide-x > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-x-reverse': '0', - 'border-right-width': 'calc(1px * var(--tw-divide-x-reverse))', - 'border-left-width': 'calc(1px * calc(1 - var(--tw-divide-x-reverse)))', - }, - '.divide-y-0 > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-y-reverse': '0', - 'border-top-width': 'calc(0px * calc(1 - var(--tw-divide-y-reverse)))', - 'border-bottom-width': 'calc(0px * var(--tw-divide-y-reverse))', - }, - '.divide-x-0 > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-x-reverse': '0', - 'border-right-width': 'calc(0px * var(--tw-divide-x-reverse))', - 'border-left-width': 'calc(0px * calc(1 - var(--tw-divide-x-reverse)))', - }, - '.divide-y-2 > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-y-reverse': '0', - 'border-top-width': 'calc(2px * calc(1 - var(--tw-divide-y-reverse)))', - 'border-bottom-width': 'calc(2px * var(--tw-divide-y-reverse))', - }, - '.divide-x-2 > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-x-reverse': '0', - 'border-right-width': 'calc(2px * var(--tw-divide-x-reverse))', - 'border-left-width': 'calc(2px * calc(1 - var(--tw-divide-x-reverse)))', - }, - '.divide-y-4 > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-y-reverse': '0', - 'border-top-width': 'calc(4px * calc(1 - var(--tw-divide-y-reverse)))', - 'border-bottom-width': 'calc(4px * var(--tw-divide-y-reverse))', - }, - '.divide-x-4 > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-x-reverse': '0', - 'border-right-width': 'calc(4px * var(--tw-divide-x-reverse))', - 'border-left-width': 'calc(4px * calc(1 - var(--tw-divide-x-reverse)))', - }, - '.divide-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-y-reverse': '1', - }, - '.divide-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-divide-x-reverse': '1', - }, - }, - ['responsive'], - ], - ]) -}) diff --git a/tests/plugins/fill.test.js b/tests/plugins/fill.test.js deleted file mode 100644 index 0b066eae4cf3..000000000000 --- a/tests/plugins/fill.test.js +++ /dev/null @@ -1,28 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/fill' - -test('defining color as a function', () => { - const config = { - theme: { - fill: { - black: ({ opacityVariable: _ }) => 'black', - }, - }, - variants: { - fill: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.fill-black': { - fill: 'black', - }, - }, - [], - ], - ]) -}) diff --git a/tests/plugins/fontSize.test.js b/tests/plugins/fontSize.test.js index 5ffa31f7b003..1c2b04774e71 100644 --- a/tests/plugins/fontSize.test.js +++ b/tests/plugins/fontSize.test.js @@ -1,5 +1,12 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/fontSize' +import postcss from 'postcss' +import path from 'path' +import tailwind from '../../src/index.js' + +function run(input, config = {}) { + return postcss(tailwind(config)).process(input, { + from: path.resolve(__filename), + }) +} test('font-size utilities can include a default line-height', () => { const config = { @@ -10,23 +17,19 @@ test('font-size utilities can include a default line-height', () => { lg: ['20px', '28px'], }, }, + corePlugins: ['fontSize'], variants: { - fontSize: ['responsive'], + fontSize: [], }, } - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.text-sm': { 'font-size': '12px' }, - '.text-md': { 'font-size': '16px', 'line-height': '24px' }, - '.text-lg': { 'font-size': '20px', 'line-height': '28px' }, - }, - ['responsive'], - ], - ]) + return run('@tailwind utilities', config).then((result) => { + expect(result.css).toMatchCss(` + .text-sm { font-size: 12px } + .text-md { font-size: 16px; line-height: 24px } + .text-lg { font-size: 20px; line-height: 28px } + `) + }) }) test('font-size utilities can include a default letter-spacing', () => { @@ -38,23 +41,19 @@ test('font-size utilities can include a default letter-spacing', () => { lg: ['20px', { letterSpacing: '-0.02em' }], }, }, + corePlugins: ['fontSize'], variants: { - fontSize: ['responsive'], + fontSize: [], }, } - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.text-sm': { 'font-size': '12px' }, - '.text-md': { 'font-size': '16px', 'letter-spacing': '-0.01em' }, - '.text-lg': { 'font-size': '20px', 'letter-spacing': '-0.02em' }, - }, - ['responsive'], - ], - ]) + return run('@tailwind utilities', config).then((result) => { + expect(result.css).toMatchCss(` + .text-sm { font-size: 12px } + .text-md { font-size: 16px; letter-spacing: -0.01em } + .text-lg { font-size: 20px; letter-spacing: -0.02em } + `) + }) }) test('font-size utilities can include a default line-height and letter-spacing', () => { @@ -66,21 +65,17 @@ test('font-size utilities can include a default line-height and letter-spacing', lg: ['20px', { lineHeight: '28px', letterSpacing: '-0.02em' }], }, }, + corePlugins: ['fontSize'], variants: { - fontSize: ['responsive'], + fontSize: [], }, } - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.text-sm': { 'font-size': '12px' }, - '.text-md': { 'font-size': '16px', 'line-height': '24px', 'letter-spacing': '-0.01em' }, - '.text-lg': { 'font-size': '20px', 'line-height': '28px', 'letter-spacing': '-0.02em' }, - }, - ['responsive'], - ], - ]) + return run('@tailwind utilities', config).then((result) => { + expect(result.css).toMatchCss(` + .text-sm { font-size: 12px } + .text-md { font-size: 16px; line-height: 24px; letter-spacing: -0.01em } + .text-lg { font-size: 20px; line-height: 28px; letter-spacing: -0.02em } + `) + }) }) diff --git a/tests/plugins/letterSpacing.test.js b/tests/plugins/letterSpacing.test.js deleted file mode 100644 index c8f1ad483a2b..000000000000 --- a/tests/plugins/letterSpacing.test.js +++ /dev/null @@ -1,53 +0,0 @@ -import _ from 'lodash' -import escapeClassName from '../../src/util/escapeClassName' -import plugin from '../../src/plugins/letterSpacing' - -test('letter spacing can use negative prefix syntax', () => { - const addedUtilities = [] - - const config = { - theme: { - letterSpacing: { - '-1': '-0.025em', - 1: '0.025em', - }, - }, - variants: { - letterSpacing: ['responsive'], - }, - } - - const getConfigValue = (path, defaultValue) => _.get(config, path, defaultValue) - const pluginApi = { - config: getConfigValue, - e: escapeClassName, - theme: (path, defaultValue) => getConfigValue(`theme.${path}`, defaultValue), - variants: (path, defaultValue) => { - if (_.isArray(config.variants)) { - return config.variants - } - - return getConfigValue(`variants.${path}`, defaultValue) - }, - addUtilities(utilities, variants) { - addedUtilities.push({ - utilities, - variants, - }) - }, - } - - plugin()(pluginApi) - - expect(addedUtilities).toEqual([ - { - utilities: [ - { - '.-tracking-1': { letterSpacing: '-0.025em' }, - '.tracking-1': { letterSpacing: '0.025em' }, - }, - ], - variants: ['responsive'], - }, - ]) -}) diff --git a/tests/plugins/placeholderColor.test.js b/tests/plugins/placeholderColor.test.js deleted file mode 100644 index 0161fee61527..000000000000 --- a/tests/plugins/placeholderColor.test.js +++ /dev/null @@ -1,28 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/placeholderColor' - -test('defining color as a function', () => { - const config = { - theme: { - placeholderColor: { - black: ({ opacityVariable: _ }) => 'black', - }, - }, - variants: { - placeholderColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.placeholder-black::placeholder': { - color: 'black', - }, - }, - [], - ], - ]) -}) diff --git a/tests/plugins/ringColor.test.js b/tests/plugins/ringColor.test.js deleted file mode 100644 index 413fb86bca81..000000000000 --- a/tests/plugins/ringColor.test.js +++ /dev/null @@ -1,29 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/ringColor' - -test('defining color as a function', () => { - const config = { - theme: { - ringColor: { - black: ({ opacityVariable: _ }) => 'black', - }, - }, - variants: { - ringColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.ring-black': { - '--tw-ring-opacity': '1', - '--tw-ring-color': 'black', - }, - }, - [], - ], - ]) -}) diff --git a/tests/plugins/ringOffsetColor.test.js b/tests/plugins/ringOffsetColor.test.js deleted file mode 100644 index 662739f971cb..000000000000 --- a/tests/plugins/ringOffsetColor.test.js +++ /dev/null @@ -1,28 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/ringOffsetColor' - -test('defining color as a function', () => { - const config = { - theme: { - ringOffsetColor: { - black: ({ opacityVariable: _ }) => 'black', - }, - }, - variants: { - ringOffsetColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.ring-offset-black': { - '--tw-ring-offset-color': 'black', - }, - }, - [], - ], - ]) -}) diff --git a/tests/plugins/ringWidth.test.js b/tests/plugins/ringWidth.test.js deleted file mode 100644 index 2a167de3462e..000000000000 --- a/tests/plugins/ringWidth.test.js +++ /dev/null @@ -1,149 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/ringWidth' - -test('ring widths', () => { - const config = { - theme: { - ringWidth: { - 4: '4px', - }, - ringOffsetWidth: { - 4: '4px', - }, - ringColor: { - black: '#000', - }, - ringOffsetColor: { - white: '#fff', - }, - ringOpacity: { - 50: '.5', - }, - }, - variants: { - ringColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - expect(utilities).toEqual([ - [ - { - '*': { - '--tw-ring-color': 'rgba(147, 197, 253, 0.5)', - '--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-ring-offset-color': '#fff', - '--tw-ring-offset-shadow': '0 0 #0000', - '--tw-ring-offset-width': '0px', - '--tw-ring-shadow': '0 0 #0000', - }, - }, - { - respectImportant: false, - }, - ], - [ - { - '.ring-4': { - '--tw-ring-offset-shadow': - 'var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)', - '--tw-ring-shadow': - 'var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color)', - 'box-shadow': - 'var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)', - }, - '.ring-inset': { - '--tw-ring-inset': 'inset', - }, - }, - undefined, - ], - ]) -}) - -test('ring widths with defaults and hsl value for ringColor', () => { - const config = { - theme: { - ringWidth: {}, - ringOffsetWidth: { - DEFAULT: '2px', - }, - ringOffsetColor: { - DEFAULT: 'pink', - }, - ringColor: { - DEFAULT: 'hsl(10, 50%, 50%)', - }, - }, - variants: { - ringColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - expect(utilities).toEqual([ - [ - { - '*': { - '--tw-ring-color': 'hsla(10, 50%, 50%, 0.5)', - '--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-ring-offset-color': 'pink', - '--tw-ring-offset-shadow': '0 0 #0000', - '--tw-ring-offset-width': '2px', - '--tw-ring-shadow': '0 0 #0000', - }, - }, - { respectImportant: false }, - ], - [ - { - '.ring-inset': { - '--tw-ring-inset': 'inset', - }, - }, - undefined, - ], - ]) -}) - -test('ring widths with defaults', () => { - const config = { - theme: { - ringWidth: {}, - ringOffsetWidth: { - DEFAULT: '2px', - }, - ringOffsetColor: { - DEFAULT: 'pink', - }, - }, - variants: { - ringColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - expect(utilities).toEqual([ - [ - { - '*': { - '--tw-ring-color': 'rgba(147, 197, 253, 0.5)', - '--tw-ring-inset': 'var(--tw-empty,/*!*/ /*!*/)', - '--tw-ring-offset-color': 'pink', - '--tw-ring-offset-shadow': '0 0 #0000', - '--tw-ring-offset-width': '2px', - '--tw-ring-shadow': '0 0 #0000', - }, - }, - { respectImportant: false }, - ], - [ - { - '.ring-inset': { - '--tw-ring-inset': 'inset', - }, - }, - undefined, - ], - ]) -}) diff --git a/tests/plugins/space.test.js b/tests/plugins/space.test.js deleted file mode 100644 index fc3f3cf96e11..000000000000 --- a/tests/plugins/space.test.js +++ /dev/null @@ -1,96 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/space' - -test('generating space utilities', () => { - const config = { - theme: { - space: { - 0: '0', - 1: '1px', - 2: '2px', - 4: '4px', - '-2': '-2px', - '-1': '-1px', - }, - }, - variants: { - space: ['responsive'], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.space-y-0 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '0', - 'margin-top': 'calc(0px * calc(1 - var(--tw-space-y-reverse)))', - 'margin-bottom': 'calc(0px * var(--tw-space-y-reverse))', - }, - '.space-x-0 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '0', - 'margin-right': 'calc(0px * var(--tw-space-x-reverse))', - 'margin-left': 'calc(0px * calc(1 - var(--tw-space-x-reverse)))', - }, - '.space-y-1 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '0', - 'margin-top': 'calc(1px * calc(1 - var(--tw-space-y-reverse)))', - 'margin-bottom': 'calc(1px * var(--tw-space-y-reverse))', - }, - '.space-x-1 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '0', - 'margin-right': 'calc(1px * var(--tw-space-x-reverse))', - 'margin-left': 'calc(1px * calc(1 - var(--tw-space-x-reverse)))', - }, - '.space-y-2 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '0', - 'margin-top': 'calc(2px * calc(1 - var(--tw-space-y-reverse)))', - 'margin-bottom': 'calc(2px * var(--tw-space-y-reverse))', - }, - '.space-x-2 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '0', - 'margin-right': 'calc(2px * var(--tw-space-x-reverse))', - 'margin-left': 'calc(2px * calc(1 - var(--tw-space-x-reverse)))', - }, - '.space-y-4 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '0', - 'margin-top': 'calc(4px * calc(1 - var(--tw-space-y-reverse)))', - 'margin-bottom': 'calc(4px * var(--tw-space-y-reverse))', - }, - '.space-x-4 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '0', - 'margin-right': 'calc(4px * var(--tw-space-x-reverse))', - 'margin-left': 'calc(4px * calc(1 - var(--tw-space-x-reverse)))', - }, - '.-space-y-2 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '0', - 'margin-top': 'calc(-2px * calc(1 - var(--tw-space-y-reverse)))', - 'margin-bottom': 'calc(-2px * var(--tw-space-y-reverse))', - }, - '.-space-x-2 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '0', - 'margin-right': 'calc(-2px * var(--tw-space-x-reverse))', - 'margin-left': 'calc(-2px * calc(1 - var(--tw-space-x-reverse)))', - }, - '.-space-y-1 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '0', - 'margin-top': 'calc(-1px * calc(1 - var(--tw-space-y-reverse)))', - 'margin-bottom': 'calc(-1px * var(--tw-space-y-reverse))', - }, - '.-space-x-1 > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '0', - 'margin-right': 'calc(-1px * var(--tw-space-x-reverse))', - 'margin-left': 'calc(-1px * calc(1 - var(--tw-space-x-reverse)))', - }, - '.space-y-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-y-reverse': '1', - }, - '.space-x-reverse > :not([hidden]) ~ :not([hidden])': { - '--tw-space-x-reverse': '1', - }, - }, - ['responsive'], - ], - ]) -}) diff --git a/tests/plugins/stroke.test.js b/tests/plugins/stroke.test.js deleted file mode 100644 index dcc3b27e9692..000000000000 --- a/tests/plugins/stroke.test.js +++ /dev/null @@ -1,28 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/stroke' - -test('defining color as a function', () => { - const config = { - theme: { - stroke: { - black: ({ opacityVariable: _ }) => 'black', - }, - }, - variants: { - stroke: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.stroke-black': { - stroke: 'black', - }, - }, - [], - ], - ]) -}) diff --git a/tests/plugins/textColor.test.js b/tests/plugins/textColor.test.js deleted file mode 100644 index d6e9fef22d74..000000000000 --- a/tests/plugins/textColor.test.js +++ /dev/null @@ -1,28 +0,0 @@ -import invokePlugin from '../util/invokePlugin' -import plugin from '../../src/plugins/textColor' - -test('defining color as a function', () => { - const config = { - theme: { - textColor: { - black: ({ opacityVariable: _ }) => 'black', - }, - }, - variants: { - textColor: [], - }, - } - - const { utilities } = invokePlugin(plugin(), config) - - expect(utilities).toEqual([ - [ - { - '.text-black': { - color: 'black', - }, - }, - [], - ], - ]) -}) diff --git a/tests/plugins/zIndex.test.js b/tests/plugins/zIndex.test.js deleted file mode 100644 index 7a5de5abcdf8..000000000000 --- a/tests/plugins/zIndex.test.js +++ /dev/null @@ -1,57 +0,0 @@ -import _ from 'lodash' -import escapeClassName from '../../src/util/escapeClassName' -import plugin from '../../src/plugins/zIndex' - -test('z index can use negative prefix syntax', () => { - const addedUtilities = [] - - const config = { - theme: { - zIndex: { - '-20': '-20', - '-10': '-10', - 10: '10', - 20: '20', - }, - }, - variants: { - zIndex: ['responsive'], - }, - } - - const getConfigValue = (path, defaultValue) => _.get(config, path, defaultValue) - const pluginApi = { - config: getConfigValue, - e: escapeClassName, - theme: (path, defaultValue) => getConfigValue(`theme.${path}`, defaultValue), - variants: (path, defaultValue) => { - if (_.isArray(config.variants)) { - return config.variants - } - - return getConfigValue(`variants.${path}`, defaultValue) - }, - addUtilities(utilities, variants) { - addedUtilities.push({ - utilities, - variants, - }) - }, - } - - plugin()(pluginApi) - - expect(addedUtilities).toEqual([ - { - utilities: [ - { - '.-z-20': { zIndex: '-20' }, - '.-z-10': { zIndex: '-10' }, - '.z-10': { zIndex: '10' }, - '.z-20': { zIndex: '20' }, - }, - ], - variants: ['responsive'], - }, - ]) -}) diff --git a/tests/processPlugins.test.js b/tests/processPlugins.test.js index 87f48d8d8c63..9896c06a1fc1 100644 --- a/tests/processPlugins.test.js +++ b/tests/processPlugins.test.js @@ -2490,20 +2490,8 @@ test('plugins can add utilities using matchUtilities in AOT mode', () => { function ({ matchUtilities, theme, variants }) { matchUtilities( { - 'flex-grow': (modifier, { value }) => { - return { - [`.flex-grow-${modifier}`]: { - 'flex-grow': value, - }, - } - }, - 'flex-shrink': (modifier, { value }) => { - return { - [`.flex-shrink-${modifier}`]: { - 'flex-shrink': value, - }, - } - }, + 'flex-grow': (value) => ({ 'flex-grow': value }), + 'flex-shrink': (value) => ({ 'flex-shrink': value }), }, { values: theme('flexyPants'),